本文介绍了批量弹出消息cmd的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
echo msgbox "Hey! Here is a message!" > %tmp%\tmp.vbs
cscript /nologo %tmp%\tmp.vbs
del %tmp%\tmp.vbs
或
echo msgbox "Hey! Here is a message!" > %tmp%\tmp.vbs
wscript %tmp%\tmp.vbs
del %tmp%\tmp.vbs
我在其他线程中找到了这些,但是如何在文本上多行显示呢?
I found these in other thread, however how to I make it multiple lines on the text?
推荐答案
像这样:
echo msgbox Replace("Hey!\nHere is a message!", "\n", vbLf) > %tmp%\tmp.vbs
cscript /nologo %tmp%\tmp.vbs
del %tmp%\tmp.vbs
这篇关于批量弹出消息cmd的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!