使用Powershell自动生成以PAUSE结尾的bat文件

发布于 2024-09-13 10:42:20 字数 168 浏览 3 评论 0原文

我有一个无法更改的批处理文件,但我想使用 Powershell 2.0 实现自动化。它以 PAUSE 命令结束,该命令显示:

按任意键继续...

有没有办法从 powershell 脚本调用此批处理文件,但让它退出不需要用户按什么东西?

I have a batch file that I can't change, but I want to automate with Powershell 2.0. It ends with a PAUSE command, which displays:

Press any key to continue...

Is there an way to call this batch file from a powershell script, but have it exit without needing a user to press something?

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

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

发布评论

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

评论(1

薄凉少年不暖心 2024-09-20 10:42:20

您可以将任何内容通过管道传输到 cmd 进程中:

'' | cmd /c foo.cmd

该进程将被 cmd 视为输入,这足以让 pause 停止暂停。

示例代码此处

You can pipe anything into the cmd process:

'' | cmd /c foo.cmd

which will be treated as input by cmd and that's enough for pause to stop pausing.

Sample code here.

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