G
Gordon Cashmore
I don't care if the user is prompted to click OK or some other intervention,
I need it automated that
when a web page is opened, the action is to immediately either edit the
registry, or prompt the user
to select "ok" in some message box so that the action can be performed. If
that message box is linked to
launch a .vbs script or bat file that is OK!
I want the below code to run.....
Thanks
Gordon Cashmore
const HKEY_LOCAL_MACHINE = &H80000002
strComputer = "."
Set StdOut = WScript.StdOut
Set oReg=GetObject("winmgmts:{impersonationLevel=impersonate}!\\" &_
strComputer & "\root\default:StdRegProv")
'Writes the registry Entry to add the flag which removes the checkmark from
Browse in Same Window
strKeyPath = "SOFTWARE\classes\excel.sheet.8"
strValueName = "BrowserFlags"
dwValue = 8
oReg.SetDWORDValue HKEY_LOCAL_MACHINE,strKeyPath,strValueName,dwValue
I need it automated that
when a web page is opened, the action is to immediately either edit the
registry, or prompt the user
to select "ok" in some message box so that the action can be performed. If
that message box is linked to
launch a .vbs script or bat file that is OK!
I want the below code to run.....
Thanks
Gordon Cashmore
const HKEY_LOCAL_MACHINE = &H80000002
strComputer = "."
Set StdOut = WScript.StdOut
Set oReg=GetObject("winmgmts:{impersonationLevel=impersonate}!\\" &_
strComputer & "\root\default:StdRegProv")
'Writes the registry Entry to add the flag which removes the checkmark from
Browse in Same Window
strKeyPath = "SOFTWARE\classes\excel.sheet.8"
strValueName = "BrowserFlags"
dwValue = 8
oReg.SetDWORDValue HKEY_LOCAL_MACHINE,strKeyPath,strValueName,dwValue