PoshCode Archive  Artifact [c0111889dd]

Artifact c0111889dde4c8fd5813f2a14af427991d2111b43ff6a5b66b9c99833e115641:

  • File OEM-License.ps1 — part of check-in [05f001b59a] at 2018-06-10 14:12:20 on branch trunk — This script is for use with MDT. It was written in order to re-image OEM laptops with a clean OS and re-use the preinstalled Windows product key. The script will attempt to pull the OEM product key from WMI and, if available, use slmgr.vbs to install that product key. The same Windows version and edition must be used, otherwise this script will fail. If an OEM key is not found in WMI, the script attempts to determine the version of Windows and use slmgr.vbs to install the generic key for the corresponding version. I have only listed the more common versions of Windows. (user: AlphaSun size: 3167)

# encoding: ascii
# api: powershell
# title: OEM License
# description: This script is for use with MDT. It was written in order to re-image OEM laptops with a clean OS and re-use the preinstalled Windows product key. The script will attempt to pull the OEM product key from WMI and, if available, use slmgr.vbs to install that product key. The same Windows version and edition must be used, otherwise this script will fail. If an OEM key is not found in WMI, the script attempts to determine the version of Windows and use slmgr.vbs to install the generic key for the corresponding version. I have only listed the more common versions of Windows.
# version: 8.1
# type: script
# author: AlphaSun
# license: CC0
# x-poshcode-id: 6292
# x-archived: 2017-04-30T10:01:16
# x-published: 2017-04-08T19:37:00
#
# The complete list of OperatingSystemSKU numbers can be found here:  https://msdn.microsoft.com/en-us/library/windows/desktop/ms724358(v=vs.85).aspx
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
# !!! THE KEYS LISTED IN THIS SCRIPT ARE GENERIC (KMS) KEYS PROVIDED BY MICROSOFT. !!!
# !!! THEY ARE INSTALL-ONLY KEYS AND CANNOT BE ACTIVATED.                          !!!
# !!! https://technet.microsoft.com/en-us/library/jj612867.aspx                    !!!
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
#
#Get the OEM product key from WMI
$ProductKey = $(wmic path softwarelicensingservice get OA3xOriginalProductKey)[2]
#Get the Operating System SKU (Edition) from WMI
$OSSKU = (Get-WMIObject Win32_OperatingSystem).OperatingSystemSKU

IF ($ProductKey -like "*error*") {
<# Keys used in this section are generic keys for installation. None of these
keys can be activated. 

Reference: http://pastebin.com/SyeWcnKq
Reference: https://technet.microsoft.com/en-us/library/jj612867.aspx 

These keys are used if Line 2 returns an error. #>

	# Version: Windows 8.1 Core
	IF ($OSSKU -eq 101) {
		cscript C:\Windows\System32\slmgr.vbs -ipk 334NH-RXG76-64THK-C7CKG-D3VPT
		EXIT }

	# Version: Windows 8.1 Core Single Language
	ELSEIF ($OSSKU -eq 100) {
		cscript C:\Windows\System32\slmgr.vbs -ipk Y9NXP-XT8MV-PT9TG-97CT3-9D6TC
		EXIT }

	# Version: Windows 8.1 Professional
	ELSEIF ($OSSKU -eq 48) {
		cscript C:\Windows\System32\slmgr.vbs -ipk GCRJD-8NW9H-F2CDX-CCM8D-9D6T9
		EXIT }

	# Version: Windows 8.1 Professional with Windows Media Center
	ELSEIF ($OSSKU -eq 103) {
		cscript C:\Windows\System32\slmgr.vbs -ipk GBFNG-2X3TC-8R27F-RMKYB-JK7QT
		EXIT }

	# Version: Windows 8.1 Enterprise
	ELSEIF ($OSSKU -eq 4) {
		cscript C:\Windows\System32\slmgr.vbs -ipk FHQNR-XYXYC-8PMHT-TV4PH-DRQ3H
		EXIT }

	# Version: Other or Not Defined
	ELSE {
		ECHO "The edition of the operating system either does not match a defined edition in the script, or is not defined in WMI. The script will end."
		EXIT }
	}

ELSE {
<# This block will apply the OEM product key from the MSDM table of ACPI and activate it. #>

	cscript C:\Windows\System32\slmgr.vbs -ipk $ProductKey
	cscript C:\Windows\System32\slmgr.vbs -ato
	EXIT }