Is there any way to take a 'Snapshot' of whats on my hard drive?

I am wondering if there is anyway to take a snap-shot maybe a screen shot? of what is on my hard drive? I’m moving some computer’s around and I want to have a list to go by so I don’t forget to install anything that is already there? Thanks Techy Guru’s you guys and gals always give the best advice!

Do you mean a file listing of all files on a hard drive?

If so, then at the c: prompt, type

dir /s > filelist.txt

This will generate a complele file list of all files and directories and place the results in a text file called filelist.txt. Be forewarned that if you have a large hard drive and it’s pretty well filled, generating the filelist.txt file will take time. On a 60 GB hard drive that is half full, it took almost a minute and generated a 13 MB text file!

Or, you can go to the Control Panel and read all the Add/Removed programs listed. This is not a surefire method as some errant programs are not listed here when installed.

You might want to consider dropping the money to buy a migration utility. I would recommend Move Me by SpearIt software ( http://www.spearit.com/about_MoveMe.html)

in the interests of full disclosure, while I am in no way related to Spearit software, I did work with the author of the software about 6 years ago.

Along with the excellent advice already given, if you do indeed just want a screen shot…
Open the page you want a picture of, click on PrtSc on your keyboard, then open Paint and go up to Edit…then paste. Save your file with the .jpg extension.

To get a disk image, you could look at Ghost, now owned by Symantec. It will copy your hard drive to a (very large) file, then you can restore onto a new drive, ready to boot and run, with no re-installation needed. You do need to swap drives around.

There is also a download Belarc Advisor that will list everything on your hard. I used it awhile ago when I had to reformat. It was very helpful.

This is precisely what digital cameras are for. I’d suggest a +4 macro lens and a ring light. You’ll have to remove the case from the hard drive to view the platters. A dremel tool will work, however if you don’t feel the need to finesse things, a bandsaw will do the job.

Now whaty didn’t I think of that! my digi, and my dremel. Ok! I’m off! Thanks!

If you’re looking for a good point and click “file explorer”-style program, I suggest a shareware app called WonDirPrint. Among its many features, you can select (for print output) only your pertinent directories; conversely, it allows you to omit certain directories, like C:\Windows, which could take up a ream of paper in itself.

It’s not perfect, but it’s served me well for quite some time. Importantly, the built-in help is relatively straightforward. Works on W95/98/ME, 2000 and XP.

The program is now out of production, but I’ve found you a link. Go here to get it. The ZIP file is pretty far down the page, so either Edit|Find… {wondirprint} or {1068}, which represents its archive number. (When you search on the page, please omit the curly brackets.)

This is kind of off-the-wall, but if you really wanted to make an image of your ENTIRE hard disk drive, down to the individual sector level on the drive, including deleted files, I reccomend EnCase. It would actually copy the ENTIRE drive layout for you.
Web site here: http://www.guidancesoftware.com/
Disclosure: No relationship to software maker.

I like the “dir /s > filelist.txt” approach, but I don’t like the style of the output. In the interest of providing a simple solution using built-in tools, try “attrib /s > filelist.txt”, which will give you output like this:



A          C:\WINDOWS\Fonts\couri.ttf
A          C:\WINDOWS\Fonts\CURLZ___.TTF
A  SH      C:\WINDOWS\Fonts\desktop.ini
    H      C:\WINDOWS\Fonts\dos737.fon
    H      C:\WINDOWS\Fonts\dosapp.fon
    H      C:\WINDOWS\Fonts\ega40737.fon


It has the extraneous attribute flags at the beginning of each line, but I like that each file listing has the full path, so it’s easier to scan through the list and find the directories you’re looking for.

It’s a shame “dir” doesn’t have an option for this style of output. If you look, I’m sure you can find a windows version of Gnu “ls” which would do this, but for quick and easy, attrib works fine.