0
我創建了一個簡單的批處理文件來重新組織一組文件/文件夾。它的工作原理應該如此,但我需要將結果打印到日誌文件中,現在,我無法阻止它,請幫助我。如何停止或退出批處理文件
@echo off
cls
del/f c:\SWSETUP\info.txt
systeminfo.exe >>c:\SWSETUP\info.txt
find /i "System Model:" c:\SWSETUP\info.txt
find /i "OS Version" c:\SWSETUP\info.txt
del/f c:\SWSETUP\log.txt
netsh mbn show interfaces >> c:\SWSETUP\log.txt
find /i "Model" c:\SWSETUP\log.txt
find /i "Firmware Version" c:\SWSETUP\log.txt
test.bat >> result.txt
@GOTO :EOF
謝謝!這是我想要的答案。 –