Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 Cscript 将多色文本发送到控制台。
WScript.Echo('\033[31m' + 'Some Text' + '\033[0m');
此解决方案不起作用。有什么方法可以将多色文本发送到控制台?
不支持更改文本颜色/前景。
您可以更改背景颜色。
te.SetRGBEntry(9, 16711680);
将其更改为浅蓝色。