PowerShell

set Internet Explorer Home Page using Powershell.

Hi, Sometime in scripts or or in login scripts we want to set a users Internet Explorer home page to our Intranet site or to some other specific URL. This became very handy and useful some times. the code is below.   $myURL = “http://microsoft.com” set-ItemProperty -Path ‘HKCU:\Software\Microsoft\Internet Explorer\main’ -Name “Start Page” -Value $myURL In… Continue reading set Internet Explorer Home Page using Powershell.

PowerShell

Reset “Internet Explorer” Settings to default using PowerShell script.

  Hi, Few days back we deployed an internal software, that software is Web based application, and users just need to open it on their browsers and start working on them. Few of the users facing some problem and when we talked to our software development team they told us that they all need to… Continue reading Reset “Internet Explorer” Settings to default using PowerShell script.