作用


又一次启动一个单独窗体。在新窗体中运行命令


格式

start [/w] FileName

demo

bat:

@echo off
echo 在新窗体中打开txt文件。并等待新窗体正常退出(exit)再往下运行
start /wait type hello.txt
pause

hello.txt

hello world!!!

结果: