Windows 10批处理文件:如何摆脱闪烁的输入标记?


1

我一直在制作一个带批量的“加载”程序(在底部显示),当我测试它时,有一个恼人的小闪烁标记,指示在哪里键入 cmd。但是,你不能输入任何东西,所以它是无用的。它真的带走了它,这是我所能看到的。

有没有办法阻止输入标记闪烁?
或者,更好的是,完全停止它?

我的代码是:

@echo off
title Loading...
:start
@echo .
PING localhost -n 2 >NUL
cls
@echo ..
PING localhost -n 2 >NUL
cls
@echo ...
PING localhost -n 2 >NUL
cls
@echo
cls
goto start

Answers:


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.