본문 바로가기

유틸리티-사이트

윈도우 업데이트 중지 - cmd 실행

반응형

윈도우 업데이트 비활성화

update_disable.bat
0.00MB
 @echo off
 if not "%1"=="am_admin" (powershell start -verb runas '%0' am_admin & exit /b) 
 sc config "uhssvc" start=disabled
 sc config "wuauserv" start=disabled
 sc config "UsoSvc" start=disabled
 REG ADD HKLM\SYSTEM\CurrentControlSet\Services\WaasMedicSvc /v Start /f /t REG_DWORD /d 4
 sc stop "uhssvc"
 sc stop "wuauserv"
 sc stop "WaasMedicSvc"
 sc stop "UsoSvc"
 
 pause > nul
  • 디스크 조각 모음 실행하면 다시 활성화됨

윈도우 업데이트 활성화

update_enable.bat
0.00MB
 @echo off
 if not "%1"=="am_admin" (powershell start -verb runas '%0' am_admin & exit /b) 
 sc config "wuauserv" start=demand
 sc config "UsoSvc" start=demand
 REG ADD HKLM\SYSTEM\CurrentControlSet\Services\WaasMedicSvc /v Start /f /t REG_DWORD /d 3
 pause > nul

















반응형