我正在使用 Windows Server 2008 R2 HyperV 角色。我想通过 PowerShell 脚本开始浏览互联网。

我正在使用 Windows Server 2008 R2 HyperV 角色。我想通过 PowerShell 脚本开始浏览互联网。

有没有办法通过 PowerShell 脚本启动浏览器(IE)?

如果有任何方法可以做到这一点,请详细告诉我,因为我不知道该怎么做。

答案1

您尝试过常规的 吗start iexplore?它不是特定的 PowerShell 命令。

PowerShell 启动程序的特定命令是:

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

答案2

您可以使用 Start-Process 并为其提供您的 URL(它将在默认浏览器中打开)

开始进程http://google.com

相关内容