• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Quick Win2k question...

WTT0001

Golden Member
When I was using win98 I was able to create a shortcut on the desktop that shut-down the computer (can't quite remember but it was something like "rundll.exe user,exitwindows" or something like that), Is there any way to do this in 2k??? My mom doesn't like to shut it down properly other wise.
 
Yes.

I use shutdown.exe. Don't know where it came from, though. Probably a resource kit utility. You might (should) be able to write a little VBS script to do the same thing.
 
Create a text file called shutdown.vbs

Put the following as the contents of the file:

set WshShell = CreateObject("WScript.Shell")
WshShell.SendKeys "^{ESC}uls{ENTER}"


Save the file and place it on the desktop or in the Quicklaunch or whatever. It should shutdown Win2K when you double click it.
 
Back
Top