Last active
November 25, 2021 16:09
-
-
Save keejelo/3e5d14448dc434a0a251192ab73c00d6 to your computer and use it in GitHub Desktop.
Run Windows taskmanager (taskmgr.exe) minimized (at startup)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ' How to run taskmanager minimized/hidden window: | |
| ' 1. Open Task Manager and click "More details" to activate the top menu. | |
| ' 2. Go to "Options" menu and toggle "Hide when minimized" checked (on) | |
| ' 3. Then copy this file (taskman.vbs) in your startup directory ( Win+R and type: shell:startup ), | |
| ' or run it some other way when you startup or log in to your computer. | |
| ' The command below runs taskmanager minimized and hidden: | |
| CreateObject("Wscript.Shell").Run "taskmgr.exe", 0, False | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment