Browse Forum Posts by Tags

Showing related tags and posts for the Forums application. See all tags in the site
  • Re: How to get MS Office product key

    This code will give you MS Office product key (no matter if you have 32-bit or 64-bit version of Office XP, Office 2003, or Office 2007). function Search-RegistryKeyValues { param( [string]$path, [string]$valueName ) Get-ChildItem $path -recurse -ea SilentlyContinue | % { if ((Get-ItemProperty -Path...
    Posted to General (Forum) by Aleksandar on 05-18-2009
    Filed under: Registry, Product Key, decrypt, MS Office
  • Re: How to get MS Office product key

    This script will give you a nice object with ComputerName, ProductName (tested on Office and Visio), and ProductKey. Works against the local and a remote computer. You can pass an array of computer names. function Get-MSOfficeProductKey { param ( [ string []] $computerName = "." ) $product...
    Posted to General (Forum) by Aleksandar on 05-18-2009
    Filed under: WMI, Registry, Product Key, MS Office, remote
  • Retrieving the Windows Product Key

    Jakob Bindslet has written a PowerShell script to retrieve the Windows Product Key. Read More
    Posted to General (Forum) by ps2 on 02-13-2009
    Filed under: Product Key
Page 1 of 1 (3 items)
Concentrated Tech NSoftware Dell Compellent Sponsored by Idera and Concentrated Tech and NSoftware and Dell Compellent
Copyright 2011 PowerShell.com. All rights reserved.