@echo off
echo Processing...
echo.
echo Virus detected!
echo.
echo Open Defender.exe(Y/N)
set INPUT=
set /P INPUT= %=%
If %INPUT%=="Y" CALL a.bat
@echo off
a.bat没有开始。什么是错误,任何人都可以帮忙吗?
答案 0 :(得分:0)
尝试:
If /i "%INPUT%"=="Y" CALL a.bat
引号也会在if条件下处理。