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

· 10년 전 · 3705

' 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,709
10년 전 조회 3,520
10년 전 조회 4,958
10년 전 조회 4,552
10년 전 조회 4,125
10년 전 조회 2,907
10년 전 조회 3,789
10년 전 조회 4,196
10년 전 조회 3,838
10년 전 조회 4,249
10년 전 조회 4,178
10년 전 조회 1.6만
10년 전 조회 4,605
10년 전 조회 3,745
10년 전 조회 3,706
10년 전 조회 3,010
10년 전 조회 7,266
10년 전 조회 4,988
10년 전 조회 4,064
10년 전 조회 3,668
10년 전 조회 7,653
10년 전 조회 3,682
10년 전 조회 4,132
10년 전 조회 4,657
10년 전 조회 5,535
10년 전 조회 3,572
10년 전 조회 3,767
10년 전 조회 1.5만
10년 전 조회 4,736
10년 전 조회 2,621