|
Hey everyone, brand new to the forums.
Have a few specific keys that we are trying to setup/create upon login that (alone) don't seem to work (while the rest of the script is perfect).
The only "common thread" I could find is that these registry keys don't exist at all. These logins are new, and have never logged into the network or locally on those machines previously - most will take place on XP machines.
The three registry keys (or commands, I should say) we have trouble with are:
WriteValue("HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main", "RunOnceHasShown", 1, "REG_DWORD") WriteValue("HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main", "RunOnceComplete", 1, "REG_DWORD") WriteValue("HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\PhishingFilter", "Enabled", 2, "REG_DWORD")
This is trying to circumvent and streamline the usage of IE once they login.
Just a heads up: I did actually try searching using writevalue, runonce, and phishingfilter but didn't get any results back on the BB, so I figured I'd start a new topic in case someone else is trying these specific registry modifications and is also having trouble.
(in comparison, start page works fine): WriteValue("HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main", "Start Page", "http://*************.com", "REG_SZ")
That one has no trouble at all. So, the only difference I could determine was the registry keys don't exist prior to opening IE for the first time. Very strange, since I know WriteValue is designed to write a registry key to start with, if it doesn't see it present at the time.
Any suggestions?
|