윈 도 우 SetupComplete.cmd 실행에러....
2021.03.23 19:36
고수님들...
제가 알고 있는 윈도우 봉인후 실행해봐는데... 잘 안될서... 조언좀 부탁드려요~~~
1.SetupComplete.cmd 파일 내용
@echo off
color 1f
cls
echo.
:ReservedStorage
for /f "tokens=3 delims=.]" %%a in ('ver') do set build=%%a
if %build% GEQ 18362 (reg add HKLM\Software\Microsoft\Windows\CurrentVersion\ReserveManager /v ShippedWithReserves /t reg_dword /d 0 /f)
GOTO CheckOS
:CheckOS
IF EXIST "%PROGRAMFILES(X86)%" (GOTO ContextMx64) ELSE (GOTO ContextMx86)
:ContextMx64
cd %WINDIR%\Setup\Scripts
regedit /s win10x64.reg
GOTO clr
:ContextMx86
cd %WINDIR%\Setup\Scripts
regedit /s win10x86.reg
GOTO clr
:clr
cd %WINDIR%\Setup\Scripts
clr.cmd
GOTO END
:END
exit
clr 파일내용
del %SystemRoot%\inf\dtecthal.inf
del /f c:\windows\LoadDll.dll
RD /S /Q C:\Windows\Panther\Unattend
RD /S /Q %Systemdrive%\KTemp
RD /S /Q %Systemdrive%\Intel
RD /S /Q %Windir%\OEMDRV
RD /S /Q C:\K-Driver
RD /S /Q C:\K-Driver3
RD /S /Q C:\WanDrv6
RD /S /Q C:\WanDrv7
RD /S /Q C:\SamDrivers
RD /S /Q C:\Driver
RD /S /Q C:\Drivers
RD /S /Q C:\WKS
RD /S /Q C:\Temp
RD /S /Q C:\Windows\Scripts
RD /S /Q C:\Windows\Temp 이상입니다.
댓글 [3]
-
집앞의_큰나무 2021.03.23 21:18
-
사이버해결사 2021.03.23 21:44
네!!! 한번 해볼도록 할께요~~ 감사드려요~
-
꼬져 2021.03.24 10:50 큰나무님 스크립 적용 후 안되시면
clr 파일내용
del %SystemRoot%\inf\dtecthal.inf
del /f c:\windows\LoadDll.dll
아래 내용을 /q 옵션을 추가해보세요. 윈도우 처음 설치 시 -->> 잠시만 기다려주세요. 확인 창 발생 시 이 부분에서 넘어가지 않습니다.
del /q %SystemRoot%\inf\dtecthal.inf
del /q /f c:\windows\LoadDll.dll
win10x64.reg 레지를 배치파일로 바꿔서 Scripts.cmd 이름으로 Setup폴더에 넣어두고
이렇게 하시면 될것 같네요
@echo off
Color 3F
pushd %~dp0
cls
echo.
:ReservedStorage
for /f "tokens=3 delims=.]" %%a in ('ver') do set build=%%a
if %build% GEQ 18362 (reg add HKLM\Software\Microsoft\Windows\CurrentVersion\ReserveManager /v ShippedWithReserves /t reg_dword /d 1 /f)
GOTO CheckOS
:CheckOS
if /i "%PROCESSOR_ARCHITECTURE%"=="x86" (set ARCH=x86) else (set ARCH=x64)
if "%ARCH%"=="x86" goto :ContextMx86
if "%ARCH%"=="x64" goto :ContextMx64
:ContextMx64
call C:\Setup\Scripts.cmd
GOTO clr
:ContextMx86
call C:\Setup\Scripts.cmd
GOTO clr
:clr
call C:\Setup\clr.cmd
GOTO END
:END
exit