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

