질문과 답변
윈 도 우 배치파일 질문...고수님들 한번 봐주세요...(해결)
2019.04.23 16:12
Recovery.exe 로 자동풀림 만들었습니다.
backup.cmd 실행하면
X:\Boot\backup.exe 실행됩니다.
종료하면 X:\Boot\ 폴더 삭제하고 싶습니다.
아래에서 수정내용 확인좀 부탁 드립니다.
backup.cmd - 내용
@echo off
pushd %~dp0
start /wait Recovery.exe
IF Exist X:\Boot\backup.exe start /wait X:\Boot\backup.exe
rmdir /s/q X:\Boot
:_End
Exit
---------------------------------------------------
restore.cmd - 내용
@echo off
pushd %~dp0
start /wait Recovery.exe
IF Exist X:\Boot\restore.exe start /wait X:\Boot\reestore.exe
rmdir /s/q X:\Boot
:_End
Exit
rmdir /s/q 로 지정을 해야 하네요....