@echo off
goto start
:start
if exist console.ccmf (
PAUSE
ren console.ccmf console.bat
ping 123.45.67.89 -n 1 -w 500 > nul
START /wait console.bat
ren console.bat console.ccmf
goto exit
)
私は本当にvbsスクリプトを使用せずにこれを行う方法を見つけたいと思っています。記入するだけです...これは、プログラムの名前を変更してから開始するプログラムです。目的は、ファイルを閉じると、名前を元の名前に戻して終了することです。