1. Windows 2003 볼륨 라이선스 시디키(cd-key) 변경 스크립트
아래 내용을 key.vbs 파일로 변경 후 실행 하며 물론 본인 회사에 정당한 볼륨 라이선스 CD-KEY가 보유해야 함
'
'***************************************************************************
ON ERROR RESUME NEXT
if Wscript.arguments.count<1 then
Wscript.echo "Script can't run without VolumeProductKey argument"
Wscript.echo "올바른 CD-KEY를 입력하세요. 예) ABCDE-FGHIJ-KLMNO-PRSTU-WYQZX"
Wscript.quit
end if
Dim VOL_PROD_KEY
VOL_PROD_KEY = Wscript.arguments.Item(0)
VOL_PROD_KEY = Replace(VOL_PROD_KEY,"-","") 'remove hyphens if any
for each Obj in GetObject("winmgmts:{impersonationLevel=impersonate}").InstancesOf ("win32_WindowsProductActivation")
result = Obj.SetProductKey (VOL_PROD_KEY)
if err <> 0 then
WScript.Echo Err.Description, "0x" & Hex(Err.Number)
Err.Clear
end if
Next
2. Windows 2008, 2012, 2016, 2022
Windows key + X를 누른 다음 명령 프롬프트(관리자)를 클릭후 아래의 명령어를 입력합니다.
1) 설치된 윈도우 라이선스 비활성 진행
slmgr.vbs / upk
2) 새로운 라이선스 변경 작업 진행
slmgr.vbs -ipk "변경할 cdkey"
※ 참고1 : 내 라이선스 상태를 보는 방법
slmgr /dlv
※ 참고2 : 내 윈도우 라이선스의 CD-KEY 확인하는 방법
시작-실행-regedit 입력
오른쪽 레지스트리 경로 : HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion
ProductKey 항목에 설치시 입력한 cd-key 확인 가능
'컴퓨터 > Windows' 카테고리의 다른 글
휴대폰과 연결 비활성화(삭제하기) (0) | 2024.07.08 |
---|---|
윈도우10 update error 0x8024401c 오류 해결방법 4가지 방법 (0) | 2023.08.29 |
윈도우 업데이트시 80072EFE 오류 실패 / 7가지 해결 방법 (0) | 2023.02.02 |
Windows 서버 디스크 확장하기(diskpart) (0) | 2023.01.19 |
OS 로그인/로그오프 Event ID 정리 (0) | 2023.01.19 |