This tutorial will show you different ways on how to find the date and time the latest feature update of Windows 11 was installed on your PC.
Contents
- Option One: Find Installation Date of Windows 11 in Settings
- Option Two: Find Installation Date and Time of Windows 11 using systeminfo command
- Option Three: Find Installation Date and Time of Windows 11 using Get-CimInstance command
- Option Four: Find Installation Date and Time of Windows 11 using WMI command
- Option Five: Find Previous Windows 11 Installation History Dates and Times in PowerShell
1 Open Settings (Win+I).
2 Click/tap on System on the left side, and click/tap on About (Win+Pause/Break) on the right side. (see screenshot below)
3 Under Windows specifications, look to see what the Installed on date is. (see screenshot below)
1 Open Windows Terminal, and select either Windows PowerShell or Command Prompt.
2 Copy and paste the command below into Windows Terminal, and press Enter. (see screenshot below)
systeminfo | find /i "Original Install Date"1 Open Windows Terminal, and select either Windows PowerShell or Command Prompt.
2 Copy and paste the appropriate command below into Windows Terminal, and press Enter. (see screenshots below)
Windows PowerShell
(Get-CimInstance Win32_OperatingSystem).InstallDateOR
Command Prompt
PowerShell (Get-CimInstance Win32_OperatingSystem).InstallDate1 Open Windows Terminal, and select Windows PowerShell.
2 Copy and paste the command below into Windows Terminal, and press Enter. (see screenshot below)
([WMI]'').ConvertToDateTime((Get-WmiObject Win32_OperatingSystem).InstallDate)1 Open Windows Terminal, and select Windows PowerShell.
2 Copy and paste the command below into Windows Terminal, and press Enter. (see screenshot below)
Get-ChildItem -Path HKLM:\System\Setup\Source* | ForEach-Object {Get-ItemProperty -Path Registry::$_} | Select-Object ProductName, ReleaseID, CurrentBuild, @{n="Install Date"; e={([DateTime]'1/1/1970').AddSeconds($_.InstallDate)}} | Sort-Object "Install Date"The ProductName will show "Windows 10" even though this is for Windows 11.
That's it,
Shawn Brink
Last edited:












