Windows Versions
1. To find information about the operating system
Get-WmiObject2. To find the version and build number of our system
Get-WmiObject -Class win32_OperatingSystem | select Version,BuildNumber3. To get a process listing
Get-WmiObject -Class Win32_Process4. To get a listing of services
Get-WmiObject -Class Win32_Service5. To get BIOS information
Get-WmiObject -Class Win32_BiosLast updated