When I boot any of my computers, the Windows built-in Task Manager automatically starts sorted by CPU usage. I like to see every process that is using resources across CPU, GPU, Disk and Network at a glance and prefer to monitor things until the initial boot up housekeeping is finished.
However, the Task Manager does not have to a built-in setting option to autorun when Windows starts. Initially I tried various registry autorun entries but nothing worked. My simple solution was a 3 line old school BAT file placed here:
C:\Users\Trader\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup
While the BAT file works very well, but I’m certain there is a simpler way to start the Task Manager when Windows starts.
Suggestions?
Contents of BAT file:
echo off
cd C:WindowsSystem32
start Taskmgr.exe
- This topic was modified 2 years, 10 months ago by .
- This topic was modified 2 years, 10 months ago by . Reason: Correct path of BAT file