PoshCode Archive  Artifact [cafdbfb86a]

Artifact cafdbfb86a3a62342e88125bce7f9ef836b31e77b69ac446c8278d6424e9690b:

  • File Product-key.ps1 — part of check-in [f9cb97bacb] at 2018-06-10 13:27:22 on branch trunk — IronPython script for retrieving MS products. There is how to get Windows key in following example. (user: greg zakharov size: 1186)

# encoding: ascii
# api: powershell
# title: Product key
# description: IronPython script for retrieving MS products. There is how to get Windows key in following example.
# version: 0.1
# author: greg zakharov
# license: CC0
# x-poshcode-id: 3545
# x-archived: 2012-07-31T01:14:35
# x-published: 2012-07-26T11:36:00
#
#
from System import Array, Char, Console
from System.Collections import ArrayList
from Microsoft.Win32 import Registry

def DecodeProductKey(digitalProductID):
   map = ("BCDFGHJKMPQRTVWXY2346789").ToCharArray()
   key = Array.CreateInstance(Char, 29)
   raw = ArrayList()

   i = 52
   while i < 67:
      raw.Add(digitalProductID[i])
      i += 1

   i = 28
   while i >= 0:
      if (i + 1) % 6 == 0:
         key[i] = '-'
      else:
         k = 0
         j = 14
         while j >= 0:
            k = (k * 256) ^ raw[j]
            raw[j] = (k / 24)
            k %= 24
            key[i] = map[k]
            j -= 1
      i -= 1

   return key

reg = Registry.LocalMachine.OpenSubKey("SOFTWARE\Microsoft\Windows NT\CurrentVersion")
val = reg.GetValue("DigitalProductId")
Console.WriteLine(DecodeProductKey(val))