如何在 CYGWIN 会话中使用 URL 启动 IE

发布于 2024-07-26 14:56:09 字数 412 浏览 5 评论 0原文

我有一台 Windows XP 机器,使用 Cygwin 设置运行 ssh 服务,在该机器上我有一个 bat 脚本,使用以下命令“C:\Program Files\Internet Explorer\iexplore.exe”“http://windowsxpbox:3000/flex/flexUnitTests?debug=true#automated=true ”。

当我在 xp 机器上本地调用该脚本时,该脚本运行良好,我试图从另一台机器远程调用相同的 bat 脚本并获得相同的结果,但在远程机器上打开 IE 时,我的问题是当 bat 脚本被远程调用,远程机器上没有任何反应。

I have a windows xp machine set up with Cygwin running the ssh service, on that machine I have a bat script that opens up IE using the following command "C:\Program Files\Internet Explorer\iexplore.exe" "http://windowsxpbox:3000/flex/flexUnitTests?debug=true#automated=true".

The script runs fine when I'm calling it locally on that xp machine, I am trying to call that same bat script remotely from another machine and achieve the same result but with IE opened on the remote machine, my problem is when the bat script is called remotely nothing happens on the remote machine.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

情感失落者 2024-08-02 14:56:09

只是:

cygstart "http://www.google.com"

其中 google.com 是您想要的网址。

cygstart 启动路径的默认 Windows 程序。 这样你就可以获得用户首选的网络浏览器......

Just:

cygstart "http://www.google.com"

where google.com is your desired URL.

cygstart launches the default windows program for a path. So this way you get the user’s preferred web browser...

倚栏听风 2024-08-02 14:56:09

cygstart /cygdrive/c/Programme/Internet\ Explorer/iexplore.exe "www.google.at"

路径可能会根据您的安装而改变

cygstart /cygdrive/c/Programme/Internet\ Explorer/iexplore.exe "www.google.at"

path may change according to your installation

ぃ弥猫深巷。 2024-08-02 14:56:09

Cygwin 的 shell 不知道如何执行批处理脚本。 使用 cygwin 启动 cmd.exe,并让它运行批处理文件。 EG

/cygdrive/c/Windows/System32/cmd.exe /c "c:\myscript.bat"

编辑:如果您宁愿直接运行资源管理器而不是依赖批处理文件,则以下内容适合我:

$ "/cygdrive/c/Program Files/Internet Explorer/iexplore.exe" "http://windowsxpbox:3000/flex/flexUnitTests?debug=true#automated=true"

Cygwin's shell doesn't know how to execute a batch script. Use cygwin to start cmd.exe, and let that run the batch file. E.G.

/cygdrive/c/Windows/System32/cmd.exe /c "c:\myscript.bat"

Edit: if you'd rather run explorer directly rather than relying on a batch file, the following works properly for me:

$ "/cygdrive/c/Program Files/Internet Explorer/iexplore.exe" "http://windowsxpbox:3000/flex/flexUnitTests?debug=true#automated=true"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文