Export Add/Remove list

  • Thread starter Thread starter hyson
  • Start date Start date
H

hyson

I would like to export the list of applications and updates in the Add /
Remove Programs list to a text file. I've not found any way to do this other
than downloading a third party application so I'm wondering if there is an
MS app or maybe a script that I can use to accomplish this.

Any help is appreciated.
 
hyson said:
I would like to export the list of applications and updates in the Add /
Remove Programs list to a text file. I've not found any way to do this
other than downloading a third party application so I'm wondering if there
is an MS app or maybe a script that I can use to accomplish this.

Any help is appreciated.

You can do it like so:
1. Paste the code below in the file c:\Windows\AddRemove.bat.
2. Unwrap the line that is wrapped.
3. Remove the line numbers.
4. Double-click c:\Windows\AddRemove.bat

1. @echo off
2. cd /d c:\
3. if exist reg.tmp del reg.tmp
4. regedit /e /a reg.tmp
"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall"
5. type reg.tmp | find "[" > reg.txt
6. notepad reg.txt
 
See: http://www.billsway.com/vbspage/ShowScript.asp?tgt=txtfiles/InstalledPrograms.txt
.... from http://www.billsway.com/vbspage/ (List Installed Programs)

or

Belarc Advisor:
http://www.belarc.com/free_download.html

--
Regards,

Ramesh Srinivasan, Microsoft MVP [Windows Shell/User]
Windows® Troubleshooting http://www.winhelponline.com


I would like to export the list of applications and updates in the Add /
Remove Programs list to a text file. I've not found any way to do this other
than downloading a third party application so I'm wondering if there is an
MS app or maybe a script that I can use to accomplish this.

Any help is appreciated.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top