Kasım 26, 2012
XP Classic Start Menu Disable Script
The following VBscript forces the use of the Classic start menu for the logged on user.
If you would like to also enforce the classic start menu for all users on the machine, you could apply this change on the “HKEY_LOCAL_MACHINE” entry .
Requires log-off and logon to take effect.
‘————————-
Dim objShell, RegLocate Set objShell = WScript.CreateObject(“WScr
On Error Resume Next RegLocate = “HKEY_CURRENT_USER\Softwar
objShell.RegWrite RegLocate,”1″,”REG_DWORD”
WScript.Quit