@צללית @מאן-דאמר-5 עדכון לתועלת הציבור
הנה הקוד להשבתת מקלדת:
setlocal enabledelayedexpansion
:: Specify the file path and new name
set "filePath=C:\Windows\System32\drivers\i8042prt.sys"
set "newName=disabledi8042prt.sys"
:: Rename the file
takeown /f "!filePath!" /a
icacls "!filePath!" /grant administrators:F
ren "!filePath!" "!newName!"
:: Restore permissions
icacls "!filePath!" /setowner "NT AUTHORITY\SYSTEM"
echo File renamed successfully!
pause
והנה הקוד לביטול השבתת המקלדת:
setlocal enabledelayedexpansion
:: Specify the file path and new name
set "filePath=C:\Windows\System32\drivers\disabledi8042prt.sys"
set "newName=i8042prt.sys"
:: Rename the file
takeown /f "!filePath!" /a
icacls "!filePath!" /grant administrators:F
ren "!filePath!" "!newName!"
:: Restore permissions
icacls "!filePath!" /setowner "NT AUTHORITY\SYSTEM"
echo File renamed successfully!
pause
את הקוד יש להעתיק לקובץ טקסט ולשמור בסיומת BAT ואז להפעיל כמנהל.
Spoiler
קרדיט: https://www.reddit.com/r/techsupport/comments/13xlyps/comment/l7wz7oz/?utm_source=share&utm_medium=web3x&utm_name=web3xcss&utm_term=1&utm_content=share_button