Is there a way to make it start up on boot of windows ??
There are several ways how to autorun elevated programs in Windows posted on the internet. I myself made it like this.
- Create a text file named
run_elevated.vbs beside the program exe with the following contents
Set WshShell = CreateObject("WScript.Shell")
WshShell.Run "MousePuff.exe", 1
Set WshShell = Nothing
- Place shortcut to
run_elevated.vbs into startup folder (press Win+R and input shell:startup)