Is there any way to start the browser (IE) through powershell script???

If there is any way to do that please tell me in details bcoz I dont have any idea how to do that.

link|improve this question
feedback

2 Answers

Have you tried the regular start iexplore? It is not a specific PowerShell command.

PowerShell specific commands to start a program would be:

[Diagnostics.Process]::Start('<PATHTOPROGRAM>',"ARGUMENTS")
[Diagnostics.Process]::Start('C:\Program Files\Internet Explorer\iexplore.exe',"")
link|improve this answer
feedback

You can use Start-Process and give it your url (it will open in the default browser)

Start-Process http://google.com

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.