显示从 Jscript 运行的 shell 命令的输出

发布于 2024-11-14 16:41:48 字数 474 浏览 2 评论 0原文

我想在 Windows 计算机上从 IE 中的 jscript 运行 shell 命令。

我有以下 jscript 函数:

function execCommand( command ){
    var myShell =  new ActiveXObject("WScript.Shell");
    myShell.Exec( "cmd /c " + command );
}

在 Windows 下,打开一个新的提示窗口,执行命令,然后关闭窗口。然而,提示符永远不会显示该命令的任何输出。该命令运行时会出现一个空白提示窗口。

如何强制程序的输出显示在提示窗口中?

我搜索了其他问题,但我只找到了在 Windows Scripting Host 中运行的脚本或在 Mozilla 中运行的 jscript javascript 的解决方案。

我很感激任何提示。

I want to run a shell command from jscript from IE on a Windows machine.

I have the following jscript function:

function execCommand( command ){
    var myShell =  new ActiveXObject("WScript.Shell");
    myShell.Exec( "cmd /c " + command );
}

Under Windows, a new prompt window opens, the command is executed, and the window closes. Nevertheless, the prompt never shows any of the output from the command. While the command is running there is a blank prompt window.

How can I force the output of the program to show in the prompt window?

I have searched other questions, but I only found solutions for scripts running inside Windows Scripting Host, or for jscript javascript running in Mozilla.

I appreciate any hints.

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

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

发布评论

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

评论(1

柠北森屋 2024-11-21 16:41:48

您可以使用此处描述的方法。

通过 exec,您必须回显stdout 到新消息中,通过运行,您可以使用 cmd 或 %comspec% 和 /K 来防止窗口关闭。

您也应该尝试暂停命令,也许它有帮助......

You can use the methods described here.

By exec you have to echo the stdout into a new message, by run you can use cmd or %comspec% with /K to prevent the window closing.

You should try the pause command too, maybe it helps...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文