Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- This AutoIT script will open Task Manager and switch to the Performance tab. Compile the script so you get a .exe and add it to the Task Scheduler like this:
- >Run with highest privileges
- >Triggers: At log on of any user
- >Action: Start a program: "C:\Program Files\runmaxtskmgr.aui.exe"
- ---------------------------------------------
- #RequireAdmin
- Run("C:\Windows\System32\taskmgr.exe")
- Local $hWnd = WinWait("Task Manager", "", 10)
- WinSetState($hWnd, "", @SW_MAXIMIZE)
- Send("^{TAB}")
- ---------------------------------------------
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement