• 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.

Shutdown Win2K with a double click

AndyHui

Administrator Emeritus<br>Elite Member<br>AT FAQ M
Create a text file called shutdown.vbs

Put the following as the contents of the file:

set WshShell = CreateObject(&quot;WScript.Shell&quot😉
WshShell.SendKeys &quot;^{ESC}uls{ENTER}&quot;


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

You can also restart Win2K, with a similar file, using the following:

set WshShell = CreateObject(&quot;WScript.Shell&quot😉
WshShell.SendKeys &quot;^{ESC}ur{ENTER}&quot;

 
Back
Top