Modified README.md

This commit is contained in:
Hane 2024-01-10 17:55:42 +01:00
commit c6b81ae72e
2 changed files with 9 additions and 3 deletions

View file

@ -57,10 +57,14 @@ Collection of useful scripts for keyboard remappings and mouse operation without
```
Ahk2Exe.exe /in mausuHoldo.ahk /out MouseOnKeyboard.exe
```
## False positive
Windows Defender flags this script as malicious on some devices. Dealing with that would require submitting a single, compile executable for MicroSoft to manually review and approve, and I'm not interested in dealing with all that.
# Use on administrator-owned windows
These scripts, as they stand, require elevated privileges to work within privileged windows when UAC is active due to system restrictions. Adding and testing the code required to circumvent this limitation not only would make the scripts even more unwieldy, but also woulnd't overcome all the restrictions imposed by UAC. As such, it is recommended to run these scripts as adminsitrator. A batch file is included alongside releases to facilitate this, and can be added to a programmed task so that it is done automatically on log in.
These scripts, as they stand, require elevated privileges to work within privileged windows when UAC is active due to system restrictions. Adding and testing the code required to circumvent this limitation not only would make the scripts even more unwieldy, but also woulnd't overcome all the restrictions imposed by UAC. As such, it is recommended to run these scripts as adminsitrator. A batch file is included alongside releases to facilitate this, which can be added to a scheduled task so that it is done automatically on log in.
# Bonus

View file

@ -1,2 +1,4 @@
START /B /D "." MouseOnKeyboard.exe
START /B "." KeyboardRemappings.exe
@pushd %~dp0
START /B MouseOnKeyboard.exe
START /B KeyboardRemappings.exe
@popd