使用 PsExec 启动 Internet Explorer,然后导航到特定 URL

发布于 2024-08-30 07:32:22 字数 227 浏览 5 评论 0原文

我希望能够使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

栀梦 2024-09-06 07:32:22

我通常会运行这样的命令:

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...

束缚m 2024-09-06 07:32:22

我不确定你为什么要使用 PsExec,但它会是这样的:

psexec "C:\program files\Internet Explorer\iexplore.exe" "http://www.yahoo.com/"

I'm not sure why you'd want to use PsExec, but it would be like this:

psexec "C:\program files\Internet Explorer\iexplore.exe" "http://www.yahoo.com/"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文