in reply to Capturing Win32 registry changes made by a software installation
reg export HKLM\Software before.txt --install program-- reg export HKLM\Software after.txt
Also you might want to convert these files from utf-16 to utf-8 with iconv like this:
iconv -f utf-16 -t utf-8 before.txt > before_utf8.txt
(or do it with perl's Encode module)
|
|---|