Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Task Manager in Startup?

Status
Not open for further replies.

LCannon

IS-IT--Management
Oct 15, 2001
85
US
Isn't there a way to make the task manager start minimize when the user logs in?
 
1. Navigate to %SystemRoot%\System32\Taskmgr.exe.

2. Right click and create a shortcut.

3. Move it to your Startup folder.

4. Right click the shortcut and choose Properties.

5. Set it to start Minimized.




pbxman
Systems Administrator

Please let Tek-Tips members know their posts were helpful.
 
I can get that far, but how do I set the setting of the task manager to hide when it's minimized and isn't always on top? Without having to go to each computer?
 
i dont know of a registry setting that can do this. If you enable this option and tell people to select "hide when minimized" once, it will keep that setting and startup how you want.

Also - if you want this for all users and not just the current, you could create a regfile that creates a new reg_sz value in HKLM\software\microsoft\windows\current version\run called "TaskManager". For the properties, enter:
"c:\winnt\system32\cmd.exe" /c "start" /min c:\winnt\system32\taskmgr.exe


..this also works on XP if you just change the word winnt in the path to windows instead. After thinking about it - this is the better way to do it in my opinion. If i find how to hide when minimized in the registry - i'll let you know, but i really dont think it's possible.

pbxman
Systems Administrator

Please let Tek-Tips members know their posts were helpful.
 
Minimized as described by pbxman is not a smaller window, it means that it starts on the Task Bar rather than the desktop.

Add to the logon script for all users:

start /Min taskmgr.exe
 
as i said - you must manually select the "hide when minimized" option from within task manager the first time it starts up. From then on - it will act as you want whether you start it with a shortcut, registry, login script, etc.

pbxman
Systems Administrator

Please let Tek-Tips members know their posts were helpful.
 
pbxman,
We were posting at the same time. I did not have the benefit of your modified advice at the time I posted.
It would have helped if your original advice was as thoughtful as your latter advice.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top