Looking for an program installer monitor or recorder

14

8

Is there an application out there that can record what file and registry changes are made when you install a program?

JimDel

Posted 2011-05-24T18:20:02.247

Reputation: 1 834

Question was closed 2013-10-23T18:53:52.563

Check out Sandboxie, which I don't think can record/list changes made by a program, but can definitely make it easier to roll them back.

– Codebling – 2011-05-24T18:59:17.783

Answers

5

ProcMon by Microsoft Sysinternals will allow you to record, filter, and view all registry and file changes. Run it prior to starting the installer to see an exhaustive list.

It's probably not the easiest thing around, but it is thorough.

music2myear

Posted 2011-05-24T18:20:02.247

Reputation: 34 957

True; it is quite thorough. Of course you’d need to set up sufficient filters to weed out all of the cruft (and then worry that you filtered out something you need). :-( (Personally, I don’t like ProcMon at all, I much prefer FileMon and RegMon, but unfortunately those won’t work on 7.) – Synetech – 2011-05-24T19:55:51.560

Filemon and Regmon were rolled into Procmon, I believe. And in the case of an installer you should be able to run ProcExp, find any processes spawned by the installer, remove the software with RevoUninstaller, and then set your filters in ProcMon based on the desired processes you want to watch, and run the installer again. – music2myear – 2011-05-24T20:11:17.940

Yes, they were, but I find Reg/FileMon to be much easier to use (and even more configurable, would you believe it). Yes, ProcMon is a superset, but that’s exactly what makes it so much more work. I use File/Reg/ProcMon mostly for when I am trying to spy on a normal program to find out what the heck it is doing (especially those I don’t quite trust). I prefer a dedicated install-monitor for installers, especially since they tend to include reports and such. – Synetech – 2011-05-24T20:28:14.597

1

Yes there are several program like this. The best one I I have found is Total Uninstaller, which I use to see what the installer does and how the installed program is organised, so that I can try making it into a portable app, through various means. It's not free, but it is not expensive, and there is a free trial.

Another useful program to just check registry changes is RegShot, which is free and open source,

paradroid

Posted 2011-05-24T18:20:02.247

Reputation: 20 970

1

SnoopFS is probably not enough, but I've often used it when installing if I intend to copy off every installed file. You'd probably want to use it with Procmon for the full effects of any install.

There are a bunch of clean uninstallers, such as Revo, but they don't tell you what needs undoing, they just do it.

tobylane

Posted 2011-05-24T18:20:02.247

Reputation: 1 271

1

I have always used and prefer PC Magazine’s InCtrl(5). It was specifically designed for this purpose and does it pretty well and is quite configurable to weed out irrelevant stuff. Unfortunately ZDNet started charging for the previously-free PCMag utilities several years ago, but you can probably find a copy that someone got before it went for-pay (and as far as I know, it should be legal since that copy was free).

Another one that I like (I’ve tried well over a dozen), is ZSoft Uninstaller; it (too?) is free.

Synetech

Posted 2011-05-24T18:20:02.247

Reputation: 63 242