Reset Custom settings from Command line

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

In IE6, under Internet Options, Security tab, Custom Level, there is a 'Reset
custom settings' section with a 'Reset' button, which ranges from Low to High.
Is there a DOS, or command line, equivalent of this 'Reset' button?
 
Hi Jazzcat,

No. A programmer could make you a wrapper application to do that for you or
you could use a registry script to restore your security settings on the
fly, but they would not be refreshed in IE until you have restarted IE.

Regards.
 
OK, thanks Rob.
--
SRFerrier


Rob ^_^ said:
Hi Jazzcat,

No. A programmer could make you a wrapper application to do that for you or
you could use a registry script to restore your security settings on the
fly, but they would not be refreshed in IE until you have restarted IE.

Regards.
 
jazzcat said:
In IE6, under Internet Options, Security tab, Custom Level, there is a 'Reset
custom settings' section with a 'Reset' button, which ranges from Low to High.
Is there a DOS, or command line, equivalent of this 'Reset' button?


Who knows? You would have to do an API trace to find out if there
was a possibility of setting up a rundll32.exe command operand.
You can at least get as far as displaying the button with this:

rundll32 inetcpl.cpl,LaunchSecurityDialog

Hmm... If you can display that with a script, perhaps all you need
to do to automate it further would be to make WSH SendKeys issue
the equivalent keyboard accelerator of whatever button(s) you want pressed?


Good luck

Robert Aldwinckle
---
 
Back
Top