paan
paan

Reputation: 7182

How do I track what registry changes is done to the system by an install shield installer?

I need something like i6comp but for list of reg changes rather than list of files.

Does such a thing exist?

EDIT:I know there are ways to do monitor changes to the ergistry but are there ways to do it by examining the setup files?

Upvotes: 1

Views: 2453

Answers (4)

Brody
Brody

Reputation: 2074

You can check the registry tables in the MSI using something like Orca but thats not guaranteed to catch all possible changes to the registry.

The only sure way is comparing pre and post install changes using somethink like RegMon.

Upvotes: 1

Greg Hewgill
Greg Hewgill

Reputation: 993881

  1. Export the registry.
    • Run installer.
    • Export the registry to a different file
    • Compare the two files with your favorite comparison program.

Upvotes: 0

Ferruccio
Ferruccio

Reputation: 100718

RegMon

Upvotes: 4

jop
jop

Reputation: 83990

Process Monitor

Upvotes: 7

Related Questions