How to Find Recently Installed Programs on Windows 10
In the fast-paced digital world, managing your computer’s software is crucial to ensure smooth operations and efficient performance. One common task is identifying recently installed programs on Windows 10. Whether you want to track down a newly installed application or need to remove an unwanted program, this guide will help you find recently installed programs on Windows 10 with ease.
Using the Start Menu
One of the simplest ways to find recently installed programs on Windows 10 is by using the Start Menu. Here’s how to do it:
1. Click on the Start button located at the bottom left corner of your screen.
2. Scroll through the list of programs displayed on the Start Menu. The programs you installed most recently will typically appear at the top of the list.
3. Look for any unfamiliar or recently installed programs. If you find one, right-click on it and select “Uninstall” to remove it from your system.
Using the Control Panel
Another method to find recently installed programs on Windows 10 is by using the Control Panel. Follow these steps:
1. Click on the Start button and type “Control Panel” in the search box. Press Enter to open the Control Panel.
2. In the Control Panel, click on “Programs” and then “Programs and Features.”
3. The Programs and Features window will display a list of all installed programs on your computer. To view the programs installed most recently, click on the “Installed on” column header. This will sort the list by the installation date.
4. Scroll through the list to find the recently installed programs. To uninstall a program, select it and click on the “Uninstall” button.
Using the PowerShell
For advanced users, PowerShell can be a powerful tool to find recently installed programs on Windows 10. Here’s how to do it:
1. Click on the Start button and type “PowerShell” in the search box. Right-click on “Windows PowerShell” and select “Run as administrator.”
2. In the PowerShell window, type the following command and press Enter:
“`
Get-ItemProperty HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\ | Select-Object DisplayName, DisplayVersion, Publisher, InstallDate | Sort InstallDate -Descending
“`
3. The command will display a list of installed programs, sorted by their installation date. You can scroll through the list to find the recently installed programs. To uninstall a program, you can use the following command:
“`
Uninstall-Program -DisplayName “Program Name”
“`
Replace “Program Name” with the actual name of the program you want to uninstall.
Conclusion
Finding recently installed programs on Windows 10 can be done using various methods, such as the Start Menu, Control Panel, or PowerShell. By following these steps, you can easily manage your computer’s software and ensure optimal performance.