Summary: Use Windows PowerShell to find the operating system version and installation date.
Image may be NSFW.
Clik here to view. How can I use Windows PowerShell to find the version of my Windows operating system, its installation date,
and the operating system architecture?
Image may be NSFW.
Clik here to view. Use the Get-CimInstance cmdlet (GCIM is an alias) and query the Win32_OperatingSystem WMI class,
for example:
gcim Win32_OperatingSystem | select Version, InstallDate, OSArchitecture
Image may be NSFW.
Clik here to view.
Clik here to view.
