Skip to content

Instantly share code, notes, and snippets.

@infernalsirius
Last active October 19, 2017 18:05
Show Gist options
  • Save infernalsirius/e5532f1a81ccc8317ab36427b0724ee6 to your computer and use it in GitHub Desktop.
Save infernalsirius/e5532f1a81ccc8317ab36427b0724ee6 to your computer and use it in GitHub Desktop.
(Get-WmiObject win32_operatingsystem).version
Output:
6.1.7601
(Get-WmiObject Win32_OperatingSystem).Caption
Output :
Microsoft Windows 7 Ultimate
Get-WmiObject Win32_OperatingSystem | Select PSComputerName, Caption, OSArchitecture, Version, BuildNumber | FL
PSComputerName : CATCHYCOMPUTERNAME
Caption : Microsoft Windows 7 Professional
OSArchitecture : 64-bit
Version : 6.1.7601
BuildNumber : 7601
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment