what program to use to check what files are copied to what folder during installation?

F

fred

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
 
P

Pegasus [MVP]

fred said:
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.
 

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

Top