Last active
July 23, 2017 07:15
-
-
Save Windos/f5ea4dcfeb8e41ddd4bceb4c208a97c9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$path = 'HKCU:\Software\Microsoft\Internet Explorer\Main\' | |
#First page | |
$name = 'start page' | |
$value = 'https://www.google.com/?gws_rd=ssl' | |
Set-Itemproperty -Path $path -Name $name -Value $value | |
#Additional pages | |
$name = 'Secondary Start Pages' | |
$value = @('https://secondpage.com/', 'https://thirdpage.co.nz') | |
Set-Itemproperty -Path $path -Name $name -Value $value -Type -Type MultiString |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment