본문 바로가기
OS/Windows

[Windows] 윈도우 10 제품 키 찾는 방법

by 선인장 🌵 2022. 1. 23.
728x90
728x90

윈도우 10 제품 키 찾는 방법

PC를 구매 시 Windows 제품 키가 PC 케이스에 붙어 있거나, 따로 문서로 주는 경우가 있다.

그러나 잘 관리를 하지 않는다면 해당 제품 키를 잊어버리는 경우가 있다.

이때 다시 Winodws를 설치해야 하는 경우 제품 키를 알 수 없어 어려움을 겪을 수 있다.

아래 2가지 방법을 통해서 현재 설치되어있는 Windows 10의 제품 키를 알아보도록 하자.

[Windows] 윈도우 10 제품 키 찾는 방법

1. 명령 프롬프트(CMD)를 통해 확인

$ wmic path softwarelicensingservice get OA3xOriginalProductKey

728x90

2. vbs를 통해 확인

  • 아래 코드를 find_windows10_key.vbs로 저장하고 실행 시 파일 저장 및 관련 정보를 얻을 수 있다.
  • 참고로 해당 코드를 저장한 파일도 첨부하였다.

find_windows10_key.vbs
0.00MB

# VBS Code

Option Explicit
Dim objshell,path,DigitalID, Result
Set objshell = CreateObject("WScript.Shell")
'Set registry key path
Path = "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\"
'Registry key value
DigitalID = objshell.RegRead(Path & "DigitalProductId")
Dim ProductName,ProductID,ProductKey,ProductData
'Get ProductName, ProductID, ProductKey
ProductName = "Product Name: " & objshell.RegRead(Path & "ProductName")
ProductID = "Product ID: " & objshell.RegRead(Path & "ProductID")
ProductKey = "Installed Key: " & ConvertToKey(DigitalID)
ProductData = ProductName & vbNewLine & ProductID & vbNewLine & ProductKey
'Show messbox if save to a file
If vbYes = MsgBox(ProductData & vblf & vblf & "Save to a file?", vbYesNo + vbQuestion, "BackUp Windows Key Information") then
Save ProductData
End If
'Convert binary to chars
Function ConvertToKey(Key)
Const KeyOffset = 52
Dim isWin8, Maps, i, j, Current, KeyOutput, Last, keypart1, insert
'Check if OS is Windows 8
isWin8 = (Key(66) \ 6) And 1
Key(66) = (Key(66) And &HF7) Or ((isWin8 And 2) * 4)
i = 24
Maps = "BCDFGHJKMPQRTVWXY2346789"
Do
Current= 0
j = 14
Do
Current = Current* 256
Current = Key(j + KeyOffset) + Current
Key(j + KeyOffset) = (Current \ 24)
Current=Current Mod 24
j = j -1
Loop While j >= 0
i = i -1
KeyOutput = Mid(Maps,Current+ 1, 1) & KeyOutput
Last = Current
Loop While i >= 0

If (isWin8 = 1) Then
keypart1 = Mid(KeyOutput, 2, Last)
insert = "N"
KeyOutput = Replace(KeyOutput, keypart1, keypart1 & insert, 2, 1, 0)
If Last = 0 Then KeyOutput = insert & KeyOutput
End If
ConvertToKey = Mid(KeyOutput, 1, 5) & "-" & Mid(KeyOutput, 6, 5) & "-" & Mid(KeyOutput, 11, 5) & "-" & Mid(KeyOutput, 16, 5) & "-" & Mid(KeyOutput, 21, 5)
End Function
'Save data to a file
Function Save(Data)
Dim fso, fName, txt,objshell,UserName
Set objshell = CreateObject("wscript.shell")
'Get current user name
UserName = objshell.ExpandEnvironmentStrings("%UserName%")
'Create a text file on desktop
fName = "C:\Users\" & UserName & "\Desktop\WindowsKeyInfo.txt"
Set fso = CreateObject("Scripting.FileSystemObject")
Set txt = fso.CreateTextFile(fName)
txt.Writeline Data
txt.Close
End Function

2. vbs 를 통해 확인
2. vbs 를 통해 확인

728x90

인터넷을 찾아보다 보면 특정 프로그램(애플리케이션)을 설치하여 현재 설치된 윈도우의 제품 키를 알아내는 방법들이 있다.

해당 프로그램(애플리케이션)은 알 수 없는 파일이 설치되는지 확인을 하지 않는다면 다른 보안상(키로깅, 해킹, 피싱 등) 문제가 발생할 수 있다.

이런 점을 참고하여 명령어를 통해서 확인하는 부분이 좋지 않을까 생각한다.

물론 전달 및 공유하는 스크립트에는 보안상 문제 되는 부분은 없으나, 이 부분도 꺼림칙하다면 명령어를 통해서 확인하도록 하자.

728x90
728x90


🌵댓글

 

loading