This tutorial will show you how to find the installation date or last modified (updated) date of apps in Windows 11.
Contents
- Option One: Find Install Date of Apps in Settings
- Option Two: Find Install Date of Apps in Control Panel
- Option Three: Find Install Date of Apps in Microsoft Store
- Option Four: Find Install Date of Apps using Command
This option will include both desktop and Microsoft Store apps.
1 Open Settings (Win+I).
2 Click/tap on Apps on the left side, and click/tap on Installed apps on the right side. (see screenshot below)
3 Each listed installed app will have a installed date or last modified date next to it. (see screenshot below)
This option will not include Microsoft Store apps.
1 Open the Control Panel (icons view), and click/tap on the Programs and Features icon.
2 Each listed installed app will have a installed date or last modified date in the Installed On column. (see screenshot below)
This option will only include Microsoft Store apps.
1 Open the Microsoft Store app.
2 Click/tap on the Library icon in the left pane. (see screenshot below)
3 You can now see the last modified date for Apps.
This option will not include Microsoft Store apps.
1 Open Windows Terminal, and select Windows PowerShell.
2 Copy and paste the command you want below into Windows Terminal, and press Enter. (see screenshots below)
(Apps installed for current user only)
Get-ItemProperty HKCU:\Software\Microsoft\Windows\Currentversion\Uninstall\* | select-object DisplayName, InstallDate
OR
(32-bit Apps installed for all users)
Get-ItemProperty HKLM:\SOFTWARE\WOW6432Node\Microsoft\Windows\Currentversion\Uninstall\* | select-object DisplayName, InstallDate
OR
(64-bit Apps installed for all users)
Get-ItemProperty HKLM:\SOFTWARE\Microsoft\Windows\Currentversion\Uninstall\* | select-object DisplayName, InstallDate
That's it,
Shawn Brink
Last edited: