System32 Folder. This script will fix the System32 folder from opening on boot up. (VBScript)

On Error Resume Next

Set WshShell = WScript.CreateObject("WScript.Shell")
X = WshShell.RegRead("HKCU\Software\Microsoft\Windows\CurrentVersion\Run\SB Audigy 2 Startup Menu")
If X <> "" Then
WshShell.RegWrite "HKCU\Software\Microsoft\Windows\CurrentVersion\Run\SB Audigy 2 Startup Menu", "/L:ENG"
X = MsgBox("Done! The System32 folder should not open on boot up.", vbOKOnly, "Problem Fixed!")
Else
MsgBox "The Registry Key was not found.", 16, "Nothing was Done!"
End If

Download


Back to Line 13