Skip to content

Instantly share code, notes, and snippets.

@litodam
Created May 30, 2012 22:26
Show Gist options
  • Save litodam/2839325 to your computer and use it in GitHub Desktop.
Save litodam/2839325 to your computer and use it in GitHub Desktop.
Launching IE with PowerShell
$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