Skip to content

Instantly share code, notes, and snippets.

@iraSenthil
Created January 26, 2014 17:21
Show Gist options
  • Save iraSenthil/8636093 to your computer and use it in GitHub Desktop.
Save iraSenthil/8636093 to your computer and use it in GitHub Desktop.
Start-Process "firefox.exe" "www.google.com"
Start-Process "iexplore.exe" "www.google.com"
Start-Process "chrome.exe" "www.google.com"
#Or Use .Net API to open application
[System.Diagnostics.Process]::Start("firefox.exe","www.google.com")
[System.Diagnostics.Process]::Start("iexplore.exe","www.google.com")
[System.Diagnostics.Process]::Start("chrome.exe","www.google.com")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment