Windows 11/10에서 VB 스크립트를 사용하여 Windows 제품 키를 찾는 방법
이 게시물은 VB 스크립트(VB Script) 를 사용하여 Windows 11/10 Product License Key 를 찾는 방법을 보여줍니다 . 그러나 이것이 Windows 8.1 , Windows 7 및 이전 버전에서도 작동한다는 점을 추가해야 합니다. 어떤 이유로 Windows 라이선스 또는 일련 번호를 찾아야 하는 경우 이 게시물이 Windows 10 제품 키를 찾는(find your Windows 10 Product Key) 데 도움이 될 것 입니다.
(Find)VB 스크립트(VB Script) 를 사용하여 Windows 11/10 제품 키 (Product Key)찾기
메모장(Notepad) 을 열고 다음을 복사하여 붙여넣습니다.
Set WshShell = CreateObject("WScript.Shell") MsgBox ConvertToKey(WshShell.RegRead("HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\DigitalProductId")) Function ConvertToKey(Key) Const KeyOffset = 52 i = 28 Chars = "BCDFGHJKMPQRTVWXY2346789" Do Cur = 0 x = 14 Do Cur = Cur * 256 Cur = Key(x + KeyOffset) + Cur Key(x + KeyOffset) = (Cur \ 24) And 255 Cur = Cur Mod 24 x = x -1 Loop While x >= 0 i = i -1 KeyOutput = Mid(Chars, Cur + 1, 1) & KeyOutput If (((29 - i) Mod 6) = 0) And (i <> -1) Then i = i -1 KeyOutput = "-" & KeyOutput End If Loop While i >= 0 ConvertToKey = KeyOutput End Function
다른 이름 으로 저장(Save) 대화 상자에서 모든 파일을 선택하고 이 파일을 .vbs 파일로 저장하여 keyfinder.vbs와 같은 적절한 이름을 지정합니다.
이제 이 파일을 실행하면 Windows 10 제품 키가 표시됩니다.
명령 프롬프트 또는 PowerShell을 사용하여 Windows 제품 키를 찾을(find Windows Product Key using Command Prompt or PowerShell) 수도 있습니다 .
이러한 방법이 효과가 없으면 일부 무료 소프트웨어 키 찾기를 사용하여 (Software Key Finders)Windows 뿐만 아니라 Office , 소프트웨어(Software) , 게임(Games) 시리즈 및 라이센스 키 를 복구하고 저장할 수도 있습니다.
이 게시물은 필요할 때 Windows 제품 키 를 제거하려는 경우 도움이 될 것 입니다.
Related posts
Windows 10 OEM Product Key를 찾는 방법
Windows 10에서 Product Key or Digital License Key를 찾는 방법
Change product Windows 10에서는 키 링크를 사용할 수 없습니다
Windows 10를 다른 컴퓨터로 이전하는 방법
Find 윈도우 10 Product Key 사용 Command Prompt or PowerShell
어떻게 Windows 10에서 종료에 Move, 또는 Delete PageFile.sys를 백업하려면
Microsoft Product Keys의 다른 유형은 무엇을 의미합니까?
Windows 10에서 Shutdown and Startup Log를 확인하는 방법
Windows 10에서 System Properties을 열는 방법 Control Panel
Windows 11/10에서 .sh 또는 Shell Script file을 실행하는 방법
Office의 License Type and Activation Status를 확인하는 방법
Windows 10에서 PowerShell Script을 사용하여 Security Questions을 비활성화하십시오
Windows 10의 Microsoft Edge Browser Tips and Tricks
사용 방법 Charmap and Eudcedit Windows 10의 내장 도구
Fix Office Activation error 0xc004c060
Taskbar Windows 10에 표시되지 않는 알림
File Explorer에서 Details pane를 보여주는 방법 Windows 10에서
CPU은 Windows 11/10에서 전체 speed or capacity에서 실행되지 않습니다
Fix Crypt32.dll Windows 11/10에서 오류가 없거나 누락되지 않았습니다
PPS file 란 무엇입니까? PPS Windows 11/10에서 PDF로 변환하는 방법은 무엇입니까?