我在CMD文件中找到了这些,它做了什么?
@echo off
if not "%~1"=="p" start /min cmd.exe /c %0 p&exit
start "" "GTAVLauncher.exe"
start "" "Launcher.exe"
timeout /t 120 /nobreak >nul
taskkill /f /im GTAVLauncher.exe
答案 0 :(得分:0)
你可以自己阅读和学习:
echo
,if
,start
,cmd
,exit
,timeout
,taskkill
位于An A-Z Index of the Windows CMD command line
在Command Line arguments (Parameters) 中%~1
,%0
在Redirection &
,>