Skip to content

Instantly share code, notes, and snippets.

@keejelo
Last active November 25, 2021 16:09
Show Gist options
  • Select an option

  • Save keejelo/3e5d14448dc434a0a251192ab73c00d6 to your computer and use it in GitHub Desktop.

Select an option

Save keejelo/3e5d14448dc434a0a251192ab73c00d6 to your computer and use it in GitHub Desktop.
Run Windows taskmanager (taskmgr.exe) minimized (at startup)
' 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