View Single Post
  #2  
Old May 31st 09, 09:08 PM posted to microsoft.public.windowsxp.basics,microsoft.public.windows.file_system
Pegasus [MVP]
external usenet poster
 
Posts: 2,361
Default what program to use to check what files are copied to what folder during installation?


"fred" wrote in message
...
Hello,
What program can I use to check the installation process of the
3rd party program installation:
1.
The names and locations of the files copied to my computer
2.
The new entries in the Windows registry

Fred


While WMI has the ability to issue an alert when files are added to a
folder, the overheads involved in monitoring a whole disk would bring
Windows to its knees. Your best bet is probably to issue the following
commands before and after the installation, then use fc.exe to compare the
two log files:
dir /b /s /od c:\ c:\before.txt
dir /b /s /od c:\ c:\after.txt

The problem is even worse with the registry because it changes all the time.
Your installation program is not the only thing that modifies it - since
Windows is a multitasking OS, other programs write data to the registry all
the time. You can't tell which entry was made by which program.


Ads