I'm transforming a script, but I not sure what the following means:
$valueData = (Get-ItemProperty $key).digitalproductid[52..66]
Is $valueData storing the values from 52 to 66, or is it storing the the 52th through the 66th value?
The long explanation: I'm trying to get the activation keys from Microsoft office, that is resting in "dead" PCs. I have accessed the reg and copied the encrypted value. I have a .txt with:
"DigitalProductID"=hex:a4,00,00,aa,...
Now I need to parse it to $valueData so it can processed by this script:
<# this part was hand made 
function Search-RegistryKeyValues {
  param(
    [string]$path,
    [string]$valueName
  )
  Get-ChildItem $path -recurse -ea SilentlyContinue | % {
    if ((Get-ItemProperty -Path $_.PsPath -ea SilentlyContinue) -match $valueName) {
      $_.PsPath
    }
  }
}
# find registry key that has value "digitalproductid"
# 32-bit versions
$key = Search-RegistryKeyValues "hklm:\software\microsoft\office" "digitalproductid"
if ($key -eq $null) {
  # 64-bit versions
  $key = Search-RegistryKeyValues "hklm:\software\Wow6432Node\microsoft\office" "digitalproductid"
  if ($key -eq $null) {Write-Host "MS Office is not installed."}
}
#end of hand made search #>
#begins doubt:
$valueData = (Get-ItemProperty $key).digitalproductid[52..66]
# decrypt base24 encoded binary data
$productKey = ""
$chars = "BCDFGHJKMPQRTVWXY2346789"
for ($i = 24; $i -ge 0; $i--) {
  $r = 0
  for ($j = 14; $j -ge 0; $j--) {
    $r = ($r * 256) -bxor $valueData[$j]
    $valueData[$j] = [math]::Truncate($r / 24)
    $r = $r % 24
  }
  $productKey = $chars[$r] + $productKey
  if (($i % 5) -eq 0 -and $i -ne 0) {
    $productKey = "-" + $productKey
  }
}
Write-Host "MS Office Product Key:" $productKey
 
     
    