Using file compare to see changes made to the registry
1 January 2001 by Snakefoot | Comment » | Trackback OffIf wanting to see what registry entries are modified when performing a certain action, then one can use the Registry Editor to export the Windows registry before before performing the action and export after having performed the action.
Then one can use the file compare utility to see what changes have been made:
Then one can use the file compare utility to see what changes have been made:
Note when exporting the registry hives in Windows 2000,XP,2003 then they are exported as unicode (Windows Registry Editor Version 5.00). To perform a file compare on two unicode files:FC before.reg after.reg > diff.txt
Note instead of exporting the registry, then one could also use Process Monitor by SysInternals.com to see the registry changes made by an application.FC before.reg after.reg /U > diff.txt
Tags:
Category:
171cUpdated: 25 September 2007
Comment by Hussainsat - 25 September 2007 @ 5:50 Reply
When you sayed ..
Note instead of exporting the registry, then one could also use Process Explorer ,
I think you meant [Process Monitor] not [Process Explorer]
Thank you