views:

117

answers:

2

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.

+1  A: 

A quick googling came up with Total Uninstall.

JesperE
+1  A: 

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.

Cristian Libardo
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