윈도우즈 7 빌드 7601 이 윈도우는 정품이 아닙니다
- Windows 7 빌드 7600 이 Windows는 정품이 아닙니다
Windows 7 This Copy of Windows is not Genuine Fix
Windows 7 Build 7601 This copy of Windows is not genuine
- windows update uninstall console command
- Windows 10 다운로드 제거, 업그레이드 방지
* 업데이트 종류
KB971033 : 정품인증
KB3035583 : Windows 10 다운로드(업그레이드)
//=========================
* 윈도우 업데이트 제거 콘솔 명령
wusa /uninstall /kb:971033
wusa /uninstall /kb:3035583
//=========================
slmgr (Software Licensing Management Tool)
(RemoveWAT유틸은 slmgr.vbs의 경로를 변경시킨다, slmgr 명령전에 restore하고 후에는 remove 한다)
https://msdn.microsoft.com/ko-kr/library/dn502540(v=ws.11).aspx
slmgr /rearm
//=========================
* 레지스트리 수정 DisableGWX , DisableOSUpgrade
명령행
reg add HKLM\SOFTWARE\Policies\Microsoft\Windows\GWX /v DisableGWX /t REG_DWORD /d 0x1
reg add HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate /v "DisableOSUpgrade" /t REG_DWORD /d 0x1
//=========================
* 작업스케쥴러에서 정기 작업 지우기
https://gist.github.com/ahhh/d2b051ba206e1c9ad248#file-psexec_disable_gwx-bat
schtasks /change /tn "\Microsoft\Windows\Setup\GWXTriggers\Logon-5d" /DISABLE
schtasks /change /tn "\Microsoft\Windows\Setup\GWXTriggers\MachineUnlock-5d" /DISABLE
schtasks /change /tn "\Microsoft\Windows\Setup\GWXTriggers\OutOfIdle-5d" /DISABLE
schtasks /change /tn "\Microsoft\Windows\Setup\GWXTriggers\OutOfSleep-5d" /DISABLE
schtasks /change /tn "\Microsoft\Windows\Setup\GWXTriggers\refreshgwxconfig-B" /DISABLE
schtasks /change /tn "\Microsoft\Windows\Setup\GWXTriggers\Telemetry-4xd" /DISABLE
schtasks /change /tn "\Microsoft\Windows\Setup\GWXTriggers\Time-5d" /DISABLE
schtasks /change /tn "\Microsoft\Windows\Setup\gwx\launchtrayprocess" /DISABLE
schtasks /change /tn "\Microsoft\Windows\Setup\gwx\refreshgwxconfigandcontent" /DISABLE
//=========================
* 업데이트 숨기기
http://superuser.com/questions/922068/how-to-disable-the-get-windows-10-icon-shown-in-the-notification-area-tray/922921#922921
//=========================
* "BlockWindows10.bat" 파일
//========================
"HideWindowsUpdates.vbs" 파일
- 업데이트 숨기기
//==========================
'Tips' 카테고리의 다른 글
윈도우 10 비밀번호 분실시 해결 방법 (12) | 2016.06.21 |
---|---|
윈도우10에서 업데이트 숨기기 (0) | 2016.06.14 |
아이콘 표시문제 해결방법 (0) | 2016.06.04 |
시디롬 장치 인식이 안되는 문제 해결 방법 (1) | 2016.06.01 |
맥 OS X 재설치 / 부팅 USB 제작법 (0) | 2016.04.20 |