Skip to content

Instantly share code, notes, and snippets.

@Windos
Last active July 23, 2017 07:15
Show Gist options
  • Save Windos/f5ea4dcfeb8e41ddd4bceb4c208a97c9 to your computer and use it in GitHub Desktop.
Save Windos/f5ea4dcfeb8e41ddd4bceb4c208a97c9 to your computer and use it in GitHub Desktop.
$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