[팁] 윈도 10에서 시디키 볼 수 있는 간단한 소스파일

· 10년 전 · 3702

' VBS Script to get the Windows(R) 7 Product Key from a PC's registry.
'
' Save the VBScript as "getWin7Key.vbs" somewhere on your Windows7 PC.
' Now, when you double-click the local script file an alertbox pops up
' displaying the product key stored in the machine's Windows registry.
 
 
 Set WshShell = WScript.CreateObject("WScript.Shell")
 
 
KeyPath = "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\DigitalProductId"
 MsgBox ExtractKey(WshShell.RegRead(KeyPath))
 
 
 Function ExtractKey(KeyInput)
     Const KeyOffset = 52
     i = 28
     CharWhitelist = "BCDFGHJKMPQRTVWXY2346789"
     Do
         Cur = 0
         x = 14
         Do
             Cur = Cur * 256
             Cur = KeyInput(x + KeyOffset) + Cur
             KeyInput(x + KeyOffset) = (Cur \ 24) And 255
             Cur = Cur Mod 24
             x = x -1
         Loop While x >= 0
        i = i -1
         KeyOutput = Mid(CharWhitelist, 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

    ExtractKey = KeyOutput
 End Function

첨부파일

find key.vbs (1.2 KB) 29회 2015-08-11 09:16
|
댓글을 작성하시려면 로그인이 필요합니다.

컴퓨터

+
제목 글쓴이 날짜 조회
10년 전 조회 8,708
10년 전 조회 3,519
10년 전 조회 4,956
10년 전 조회 4,551
10년 전 조회 4,122
10년 전 조회 2,907
10년 전 조회 3,787
10년 전 조회 4,196
10년 전 조회 3,838
10년 전 조회 4,249
10년 전 조회 4,177
10년 전 조회 1.6만
10년 전 조회 4,604
10년 전 조회 3,744
10년 전 조회 3,703
10년 전 조회 3,009
10년 전 조회 7,264
10년 전 조회 4,987
10년 전 조회 4,063
10년 전 조회 3,667
10년 전 조회 7,652
10년 전 조회 3,680
10년 전 조회 4,131
10년 전 조회 4,656
10년 전 조회 5,534
10년 전 조회 3,570
10년 전 조회 3,765
10년 전 조회 1.5만
10년 전 조회 4,734
10년 전 조회 2,619