31 lines
1.5 KiB
PowerShell
31 lines
1.5 KiB
PowerShell
# Windows OS
|
|
# Set KMS Host
|
|
c:\Windows\System32\cscript.exe /nologo c:\Windows\System32\slmgr.vbs /skms gauntkms.home.johnhgaunt.com
|
|
# Windows Server 2016 Datacenter
|
|
#c:\Windows\System32\cscript.exe /nologo c:\Windows\System32\slmgr.vbs /ipk CB7KF-BWN84-R7R2Y-793K2-8XDDG
|
|
# windows Server 2019 Datacenter
|
|
c:\Windows\System32\cscript.exe /nologo c:\Windows\System32\slmgr.vbs /ipk WMDGN-G9PQG-XVVXX-R3X43-63DFG
|
|
# Windows 10 Enterprise
|
|
#c:\Windows\System32\cscript.exe /nologo c:\Windows\System32\slmgr.vbs /ipk NPPR9-FWDCX-D2C8J-H872K-2YT43
|
|
# Windows 10 2016 LTSB
|
|
#c:\Windows\System32\cscript.exe /nologo c:\Windows\System32\slmgr.vbs /ipk DCPHK-NFMTC-H88MJ-PFHPY-QJ4BJ
|
|
# Activate it
|
|
c:\Windows\System32\cscript.exe /nologo c:\Windows\System32\slmgr.vbs /ato
|
|
|
|
# Office 2019
|
|
c:\Windows\System32\cscript.exe /nologo "C:\Program Files\Microsoft Office\Office16\ospp.vbs" /inpkey:NMMKJ-6RK4F-KMJVX-8D9MJ-6MWKP
|
|
# Set KMS Host
|
|
c:\Windows\System32\cscript.exe /nologo "C:\Program Files\Microsoft Office\Office16\ospp.vbs" /sethst:gauntkms.home.johnhgaunt.com
|
|
# Activate it
|
|
c:\Windows\System32\cscript.exe /nologo "C:\Program Files\Microsoft Office\Office16\ospp.vbs" /act
|
|
|
|
# https://stackoverflow.com/questions/48592120/how-do-i-find-out-from-powershell-if-i-am-on-a-server-or-workstation
|
|
$osInfo = Get-WmiObject -Class Win32_OperatingSystem
|
|
$osInfo.ProductType
|
|
# ProductType
|
|
# Data type: uint32
|
|
# Access type: Read-only
|
|
# Additional system information.
|
|
# Work Station (1)
|
|
# Domain Controller (2)
|
|
# Server (3) |