Monday, May 17, 2010

Reset IE Start Page

Here's a PowerShell snippet that will reset the home page in Internet Explorer; useful if you work somewhere where they always reset your home page to their own corporate one:
Set-ItemProperty
-path "HKCU:\Software\Microsoft\Internet Explorer\Main"
-name "Start Page"
-value "http://www.google.co.uk"

No comments: