使用 PsExec 启动 Internet Explorer,然后导航到特定 URL
我希望能够使用 PsExec 启动 Internet Explorer,然后在浏览器中加载特定网站。我知道如何启动 IE,只是无法发出进入特定网页的命令。这就是我到目前为止所拥有的:
psexec "C:\program files\Internet Explorer\iexplore.exe"
我只是无法弄清楚加载默认起始页以外的任何内容的语法
谢谢!
I want to be able to use PsExec to start Internet Explorer, then load a particular website in the browser. I know how to start IE, just can't make a command that goes to a particular webpage. This is what I have so far:
psexec "C:\program files\Internet Explorer\iexplore.exe"
I just can't figure the syntax for loading anything other than the default start page
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我通常会运行这样的命令:
PsExec.exe \\HOSTNAME -u Administrator -p ******** -i -d -e EXPLORER "http://www.google.com"
-i
- 使其具有交互性;这样远程用户就可以在他们的控制台会话上看到它。-d
- 使 psexec 不等待程序终止。-e
- 导致远程计算机不加载我们用于登录的帐户的配置文件。将 URL 传递给 EXPLORER 几乎肯定总是有效,甚至会打开在用户的默认浏览器中。 Chrome、Opera、火狐、IE...
I'll usually run something like this:
PsExec.exe \\HOSTNAME -u Administrator -p ******** -i -d -e EXPLORER "http://www.google.com"
-i
- makes it interactive; so the remote user can see it on their console session.-d
- makes psexec not wait for the program to terminate.-e
- causes the remote machine to not load the profile of the account we're using to log in with.Passing the URL to EXPLORER will almost assuredly always work, and it will even open up in the user's default browser. Chrome, Opera, Firefox, IE...
我不确定你为什么要使用 PsExec,但它会是这样的:
I'm not sure why you'd want to use PsExec, but it would be like this: