2012年5月7日月曜日

◆プロダクトキーを表示する

ネットを見ていたらインストール済みWindowsのプロダクトキーを表示するサンプルが紹介されていた。

私自身は必要になったことは無いのだが、調べてみるとこいつを表示するフリーソフトなんかもあったりするのでそれなりに需要はあるのかもしれない。

そんなわけで一応メモしておく。

Getting Windows Product Key - Power Tips - Powershell.com Powershell Scripts, Tips and Resources

001
002
003
004
005
006
007
008
009
010
011
012
013
014
015
016
017
018
019
020

function Get-ProductKey {   
   
$map="BCDFGHJKMPQRTVWXY2346789"
    $key = "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion"
    $value = (get-itemproperty $key).digitalproductid[0x34..0x42]
 
   
$ProductKey = ""
 
   
for ($i = 24; $i -ge 0; $i--
) { 
     
$r = 0
 
     
for ($j = 14; $j -ge 0; $j--
) { 
       
$r = ($r * 256) -bxor $value[$j]
 
       
$value[$j] = [math]::Floor([double]($r/24
)) 
       
$r = $r % 24
 
      } 
     
$ProductKey = $map[$r] + $ProductKey
 
     
if (($i % 5) -eq 0 -and $i -ne 0
) { 
       
$ProductKey = "-" + $ProductKey
 
      } 
    } 
   
$ProductKey
} 
Get-ProductKey

また、同様のサンプルで「Office」のプロダクトキーなんかも表示できるようだ。
Finding Office and Windows Keys with Powershell

0 件のコメント:

コメントを投稿