In order to use an online application that my company makes it is necessary to do a few “tweaks” to IE settings. Here is what needs to be done:
In Tools > Internet Options > Security Tab
Add two addresses to Trusted Sites
In the custom level settings for trusted sites enable some of the settings that IE has disabled by default
In Tools > Internet Options > Privacy Tab
Add a site to the allowed sites for pop ups
Any ideas on how I could write this? What scripting language to use? Any help would be appreciated.
No script needed, but it requires you to add these manually at least once. I should point out that it requires access to the registry, which may or may not be an issue:
1.) Add the required sites to the correct places by hand.
2.) Start Menu -> Run -> Regedit (or on Vista just type it into the bar)
3.) Navigate to
5.) Now any time you need to readd these entries simply execute these two files, if you want to be fancy you could add a batch file (.bat) to your Startup folder that simply has the path of the two files written in it, but that’s rather unnecessary.
Oops, I think I misread your question. I thought your computer cleared your settings on logoff (some people do that) or something and just needed a way to reset YOUR settings every time. If this is for a generic user disregard that.
Edit: Adding it will be the same principle though, you’ll just need a small script in whatever language you’re comfortable with to add things to the correct keys.
If you want it done for the machine instead of the logged on user change all HKEY_CURRENT_USER to HKEY_LOCAL_MACHINE and the value of the constant to
&H80000002.
From Microsoft, they may have your other solutions there too but I haven’t found them, you can look if you want.
Wow. Cool. I don’t think I stated my intended usage for this. Any new computer that has never run our software needs these done just one time (or after any updates to IE that wipes out old settings)
We get so many clients that are so computer illiterate or so paranoid about changing a setting that something that takes 1-2 minutes for me takes them forever or is just impossible.
So I want something to send these clients they can put on their desktop, execute, then delete off their machine.
Thanks for your input! If I can pull this off I’ll be a hero at work.