Skip to content

Instantly share code, notes, and snippets.

@unakatsuo
Last active August 1, 2016 09:20
Show Gist options
  • Save unakatsuo/3503eaa2b9552c0e903de7cf0599ecef to your computer and use it in GitHub Desktop.
Save unakatsuo/3503eaa2b9552c0e903de7cf0599ecef to your computer and use it in GitHub Desktop.
Show basic OS information using PowerShell
PS C:\> Get-CimInstance Win32_OperatingSystem | Select-Object  Caption, Version, OSType, ServicePackMajorVersion, OSAr
itecture, BuildNumber, MUILanguages, OSLanguage, Locale, CodeSet, CountryCode | FL


Caption                 : Microsoft Windows 10 Pro
Version                 : 10.0.10586
OSType                  : 18
ServicePackMajorVersion : 0
OSArchitecture          : 64 ビット
BuildNumber             : 10586
MUILanguages            : {ja-JP}
OSLanguage              : 1041
Locale                  : 0411
CodeSet                 : 932
CountryCode             : 81

Get-CimInstance Win32_OperatingSystem | Select-Object Caption, Version, OSType, ServicePackMajorVersion, OSAr
itecture, BuildNumber, MUILanguages, OSLanguage, Locale, CodeSet, CountryCode | FL
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment