How can I get a list of all the programs on my hard drive? Thanks!
I’m not sure what you mean by all programs. If you mean applications, they should be pretty easy to find, as you can just look at the start menu and your directory structure and cover most of the bases.
If you mean a list of every single file on your computer, go to your command prompt, change to the root directory, and do this:
dir . /s
will do the trick.
If you’d like this list output to a file instead of trying to read it as it scrolls by faster that you could possibly read it, do this:
dir . /s >c:\filelist.txt
which will place the list in a file named filelist.txt
like DMC says, but if it’s executables specifically you’re looking for, try
dir *.exe /s
or
dir *.com /s
These lists will be substantially shorter than the . version - I just did . on mine, and it returned 5000+ files.
you could also use the windows ‘find’ tool ( a truly horrible piece of design, but it works) to search for the above terms.
Just out of curiousity, why would you require such a list?
heh… must remember to engage brain before hitting ‘submit’… that was just the windows directory… full c drive is 16,000 + files, and took about a minute to run
at download.com you can find programs to print directory lists with sorts & other options.
msquestion, you should tell us what kind of computer you have, perhaps?
I would only add a bit more
dir *.exe /s > results.txt
That way you can peruse at your leasure in a text editor.
well, you have the .com and the .dll etc. So it depends on what you are looking for
If you’re on a Mac, open Sherlock.
Find all items whose kind is “application”.
Note “Items found” count reported at top of window.
I really want to know why msquestion wants to know this - it’s kind of bugging me now.
Please enlighten me!
Thanks for the responses. The reason for my question is that I have deleted some programs from the Start Up Menu and I wanted to see if they were still on the hard drive and could be retrieved or if I would have to reinstall them. Thanks for all the help.
The best way to find a list of programs (that had an actual installer program) is to look at add/remove programs from the control panel, accessible from the start menu. This way you can also clean up the ones you don’t want.
Hope this helps.
The startup menu almost always consists of shortcuts, rather than actual programs. Therefore, there’s a good chance that the programs are still on your HD somewhere
I have a software program that scans my HD for all my programs & checks to see if there
are updates for them on the web. Spiffy. Gives me a list of my programs.
I just happened to catch this in a newsletter the other day and remembered this thread. Here’s an audit program that essentially does what you’re looking for, among other things.
Courtesy of the Langa Newsletter-
It’s fast, simple, and concise. Give it a shot.
Cnote Chris: Thanks for the info re: Langa Newsletter-Belarc Advisor. It gave me the info I wanted, plus even more. Thanks!
No problem.