How to Print Add/Remove Program List?

  • Thread starter Thread starter Spencer
  • Start date Start date
S

Spencer

The Add/Remove Programs Window shows a list of programs installed on my
computer. Is there any way to print that list or to save it as a text file?
A hard-copy list of my installed programs would be useful.

Thanks.

Spencer
Please respond only to group.
 
Spencer,
Yes,
* open MS Paint
* open to Add/Remove Programs
* hold down the 'Ctrl' key and click the Print Screen key (Print Scrn)
next to the 'Scroll Lock' key
*go to MS Paint and click 'Edit' > 'Paste'
* Print & save the Paint picture
Drew
 
Open the Add/Remove Programs window
Maximize the window
Hold down the [Alt] key
Press the [Print Screen] key
Release both keys
Open Paint
Click Edit | Paste

If your list is too long to fit on one screen copy
(scrollbars on the list), scroll down and repeat the
process. Paste the remainder under the first screen copy.

The list is also in the registry at:
HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\
You can export just that branch.


Austin M. Horst
 
For /r "%userprofile%\start menu" %A in (*.*) do echo %~nA >prn
For /r "%AllUsersProfile%\start menu" %A in (*.*) do echo %~nA>prn
 
How are these used? Batch file? VBA?

For /r "%userprofile%\start menu" %A in (*.*) do echo %
~nA >prn

For /r "%AllUsersProfile%\start menu" %A in (*.*) do echo
%~nA>prn
 
Type in a command prompt. In a batch you need %%A rather then %A and %%~nA rather than %~nA.


To preview what would be printed

Type echo off
then type the above two commands removing the >prn at the end (that sends screen output to printer)
 
Back
Top