윈도우/Windows

Windows PMS - #4 WSUS WorkGroup 환경 정책 적용

gntpapa 2014. 6. 20. 23:45

Wsus 서버가 AD 환경에서만 가능한 것이 아니며, WorkGroup 에서도 가능합니다.

WorkGroup에서는 레지지스트리 배포를 통해 정책을 배포하면 된다.


예를 들면 아래와 같이 레지스트리를 만들면 된다.

레지스트리 첨부파일: wsus.reg

Windows Registry Editor Version 5.00 

[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate]

"WUServer"="http://WsusIP:Port"

"WUStatusServer"="http:// WsusIP:Port "

[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU]

"NoAutoUpdate"=dword:00000000

"AUOptions"=dword:00000004

"ScheduledInstallDay"=dword:00000000

"ScheduledInstallTime"=dword:0000000a

"UseWUServer"=dword:00000001


- NoAutoUpdate: 자동업데이트여부 (0: Enable)

- AUOptions

   · 2 = Notify before download.

   · 3 = Automatically download and notify of installation.

   · 4 = Automatically download and schedule installation.

   · 5 = Automatic Updates is required, but end users can configure it.

- ScheduledInstallDay: 요일 설정 (0: Every Day)

- ScheduledInstallTime: 시간 설정

- UseWUServer: Wsus 사용 여부

- 레지스트리 관련 내용 안내: http://technet.microsoft.com/ko-kr/library/dd939844(v=ws.10).aspx


레지스트리 관련 내용 안내를 보고 추가할 레지스트리를 생성한 후 레지스트리 내보내기를 하면 된다.

내보내기가 완료된 레지스트리 파일을 워크그룹에 배포하면 Wsus설정이 완료된다.

 

이후 CMD 창에서 다음 명령어를 실행하면 된다

net stop wuauserv

net start wuauserv

wuauclt /resetauthorization /detectnow