mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
68 lines
2 KiB
PowerShell
68 lines
2 KiB
PowerShell
#!powershell
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Copyright: (c) 2017, Dag Wieers (dagwieers) <dag@wieers.com>
|
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
|
|
#Requires -Module Ansible.ModuleUtils.Legacy
|
|
|
|
$ErrorActionPreference = "Stop"
|
|
|
|
# This module does not use any module parameters, this avoids pslint complaining
|
|
#$params = Parse-Args -arguments $args -supports_check_mode $true
|
|
|
|
$result = @{
|
|
changed = $false
|
|
ansible_facts = @{
|
|
ansible_os_product_id = (Get-CimInstance Win32_OperatingSystem).SerialNumber
|
|
}
|
|
}
|
|
|
|
# First try to find the product key from ACPI
|
|
try {
|
|
$product_key = (Get-CimInstance -Class SoftwareLicensingService).OA3xOriginalProductKey
|
|
} catch {
|
|
$product_key = $null
|
|
}
|
|
|
|
if (-not $product_key) {
|
|
# Else try to get it from the registry instead
|
|
try {
|
|
$data = Get-ItemPropertyValue -Path "HKLM:\Software\Microsoft\Windows NT\CurrentVersion" -Name DigitalProductId
|
|
} catch {
|
|
$data = $null
|
|
}
|
|
|
|
# And for Windows 2008 R2
|
|
if (-not $data) {
|
|
try {
|
|
$data = Get-ItemPropertyValue -Path "HKLM:\Software\Microsoft\Windows NT\CurrentVersion" -Name DigitalProductId4
|
|
} catch {
|
|
$data = $null
|
|
}
|
|
}
|
|
|
|
if ($data) {
|
|
$product_key = $null
|
|
$hexdata = $data[52..66]
|
|
$chardata = "B","C","D","F","G","H","J","K","M","P","Q","R","T","V","W","X","Y","2","3","4","6","7","8","9"
|
|
|
|
# Decode base24 binary data
|
|
for ($i = 24; $i -ge 0; $i--) {
|
|
$k = 0
|
|
for ($j = 14; $j -ge 0; $j--) {
|
|
$k = $k * 256 -bxor $hexdata[$j]
|
|
$hexdata[$j] = [math]::truncate($k / 24)
|
|
$k = $k % 24
|
|
}
|
|
$product_key = $chardata[$k] + $product_key
|
|
if (($i % 5 -eq 0) -and ($i -ne 0)) {
|
|
$product_key = "-" + $product_key
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
$result.ansible_facts.ansible_os_product_key = $product_key
|
|
|
|
Exit-Json -obj $result
|