반응형
윈도우 업데이트 비활성화
@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
- 디스크 조각 모음 실행하면 다시 활성화됨
윈도우 업데이트 활성화
@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
반응형
'유틸리티-사이트' 카테고리의 다른 글
WinPE 세르게이 부팅 USB 제작 (멀티부팅 가능) (0) | 2021.08.29 |
---|---|
ZIP 비밀번호 찾기 (0) | 2021.07.09 |
Github CDN 사용법 (0) | 2021.06.23 |
윈도우 파일 동기화 - freefilesync (0) | 2021.06.11 |
크롬 플래시 플레이어 대체 프로그램 - Ruffle (0) | 2021.05.28 |