본문 바로가기
ITC/Windows

[BAT] 지정 경로의 하위 폴더 모두 삭제

by Un光 2018. 6. 1.
728x90
반응형

Exempt 변수에는 삭제하지 않을 폴더 지정이 가능
모든 폴더를 다 삭제하므로 사용 시 주의할 것!!

@echo off
pushd “C:\Temp\1”

set Exempt=*Administrator* *All Users* *Default User* *LocalService* *NetworkService*
for /d %%a in (*.*) do echo %Exempt% | find /i “*%%a8” > nul || rmdir /s /q “%%a”
popd

반응형

'ITC > Windows' 카테고리의 다른 글

Intel AMT/vPro  (0) 2018.11.18
Sysprep 가이드  (0) 2018.10.31
[BAT]Lookup Hostname  (0) 2018.10.18
Windows 관리 콘솔 단축실행  (0) 2018.08.30
Batch 줄바꿈 없이 Echo 출력  (0) 2018.08.01
[Util] WinDirStat  (0) 2018.05.29
How to fix errors found in the CheckSUR.log  (0) 2018.05.17
Windows 10 가상화 구동 시 블루스크린 발생  (0) 2018.04.12
XCOPY를 이용한 복사  (0) 2018.03.01
[BAT] 대역 Ping  (0) 2018.02.16