Answers for "Windows 10 - Get a list of installed apps into a text file"

0

Windows 10 - Get a list of installed apps into a text file

Get-ItemProperty HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\* | Select-Object DisplayName, DisplayVersion, Publisher, InstallDate | Format-Table –AutoSize > C:\app.txt
Posted by: Guest on May-06-2022

Code answers related to "Windows 10 - Get a list of installed apps into a text file"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language