PowerShell v3 Function Get IEStartPage

A simple variation of the Scripting Guys post,
Hey, Scripting Guy! How Can I Change My Internet Explorer Home Page?
allows me to check the IEStartPage property of the HKCU key.
function Get-IEStartPage
{
       (Get-ItemProperty -Path HKCU:SoftwareMicrosoftInternet ExplorerMain -Name Start Page).Start Page
}

Related Posts by Categories

0 comments:

Post a Comment