我正在尝试批量制作 Windows 疑难解答,为什么不行呢?
当我进入主菜单脚本时,应用程序不会进一步执行,并关闭。我尝试使用 CALL 函数调用应用程序主菜单,并将代码放在单独的程序中,但它也不会执行……有人知道如何修复这个问题吗?代码附在下面。
第一个脚本
@echo off
color a
title Windows Toubleshooter
cd C:\windows
cls
echo Loading files. Please wait... {LOADING MECHANISM HERE!!}
echo Loading complete echo Press a key to continue...
pause >nul
call main.bat
主程序
cls
color 7c
echo Welcome to the Windows Troubleshooter. To continue, please chose one of the options below.
echo 1) Check for errors
echo 2) Repair errors
echo 3) Exit
echo Please chose an option:
choice /c asdw/n /m "Chose with W A S D"
IF %errorlevel%==1 goto errorcheck
IF %errorlevel%==2 goto repair
IF %errorlevel%==3 goto exit