Created
May 30, 2012 22:26
-
-
Save litodam/2839325 to your computer and use it in GitHub Desktop.
Launching IE with PowerShell
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
$navOpenInBackgroundTab = 0x1000; | |
$ie = new-object -com InternetExplorer.Application | |
$ie.Navigate2("http://www.microsoft.com"); | |
$ie.Navigate2("http://www.google.com", $navOpenInBackgroundTab); | |
$ie.Visible = $true; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment