如何获得没有任何启动文本的Windows控制台


0

当一个批处理脚本使用从另一个控制台实例启动的另一个脚本的输出时,我遇到了问题。我无法改变剧本。

但我知道为什么我有错误。这是因为每个新的控制台实例都会输出启动文本

Microsoft Windows [Version 6.1.7601]
Copyright (c) 2009 Microsoft Corporation.  All rights reserved.
Active code page: 1251

好吧,我必须避免出现这种情况。谁知道怎么做?

这条线Active code page: 1251是已知的,因为我在自动运行字符串键中在注册表中设置了自定义代码页。至少我希望这是沉默的。

感谢大伙们。


你是如何设法从另一个脚本输出脚本以最终得到cmd介绍文本的方式?你可以添加一个示例脚本吗?
保罗

Answers:


2

想一想,你需要改变你的“自动运行”值,就像这样

chcp 1251 > nul

此外,当您启动cmd时,可以删除版本打印 cmd.exe /k

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.