How to get windows install date
If you need to know when operating system is installed on your computer or laptop, there are multiple options to know.
First open command prompt and run command
systeminfo | findstr /C:"Install Date"
Another option is open PowerShell and type below mention command and press enter
([WMI]'').ConvertToDateTime((Get-WmiObject Win32_OperatingSystem).InstallDate)
Another option is you can also able to know using wmic command
date/time showing in WMI time format
Another option you can know using Regedit command
Open run and type regedit press enter
Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion
0 Comments