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.
|
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. | ||||
|
feedback
|
|
Have you tried the regular PowerShell specific commands to start a program would be:
| |||
|
feedback
|
|
You can use Start-Process and give it your url (it will open in the default browser) Start-Process http://google.com | |||
|
feedback
|