📎 AI Summary:
The thread discusses a Windows 10H2 upgrade from Windows 7 without installation media, with the original poster seeking a comprehensive list of installed programs to facilitate reinstallation after a reset. Respondent provides a PowerShell command to generate this list, which the original poster reports has yielded 137 entries. The overall tone is technical and solution-oriented, focusing on managing post-reset software recovery.

Peter Hill

New Member
Member details
Joined
Jan 4, 2021
Messages
4
Thread Author #1
My computer is running Windows 10H2. It was upgraded from Windows 7, I have no install media.

The "run as admin" doesn't work so I may need to do a "Recovery", "reset".

If I reset I need to reinstall a lot of programs, "Apps and Features" says 173! How do I get a full list of these so I can find the install sources? I think it would be insane if MS expect me to manually create a list from "Apps".

I'm also sure I've got some stuff that wasn't installed but just runs from the .exe.
 

Neemobeer

Windows Forum Team
Staff member
Member details
Joined
Jul 4, 2015
Messages
8,995
This is a one liner you can run in a Powershell prompt. it will only output msi and programs and sorted to your desktop.


Code:
(Get-Package) | ? { $_.ProviderType -like "msi" -or $_.ProviderName -like "*Program*" } | Sort Name| Out-File -FilePath "$($env:USERPROFILE)\Desktop\apps.txt"
 

Peter Hill

New Member
Member details
Joined
Jan 4, 2021
Messages
4
Thread Author #3
Thanks, just 137!