Tip of the Day: Determining Servicing Branch in Windows 10 Enterprise with PowerShell
Today’s Tip…
Need to determine the branch of Windows 10 Enterprise you’re using?
- Open PowerShell
- Run gwmi win32_operatingsystem | select OperatingSystemSKU
If you are running Enterprise (CB/CBB), it will return “4”.
If you are running Enterprise LTSB, it will return “125”.
Comments
- Anonymous
June 20, 2017
PS C:\Users\fk> gwmi win32_operatingsystem | select OperatingSystemSKUOperatingSystemSKU------------------ 48What does 48 mean?- Anonymous
August 10, 2017
SKU 48 is Professional.
- Anonymous