Does anybody know of a tool that allow me to inspect what files an installer just added to a system after it ran?

Its sounds like this should be something that should exist.

link|improve this question

57% accept rate
feedback

2 Answers

up vote 1 down vote accepted

A quick googling came up with Total Uninstall.

link|improve this answer
feedback

Unless it's too late you could use a tool such as process monitor or run the installer with logging:

msiexec /i the.msi /log install.log

If you want to inspect an MSI database you can run ORCA from the windows installer SDK. You can find information about installed files, registry and other actions.

link|improve this answer
Using process monitor can indeed be helpful to see exactly what the installer is doing, but it may be tricky to figure out exactly the resulting changes to the system. – JesperE Jan 1 '09 at 22:17
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.