2

I am installing an major upgrade of product in my system.

Folders and registry entries will be updated for this.

I would like to take snapshot of folder structure and registry before/after installing update so that i can compare them easily.

Is there any tool or simple powershell module available to do this?

I hope testers would have done this while doing installation testing. If you have followed any good approach ,please update us.

4

3 に答える 3

6

レジストリ比較の前後で私が見つけた最高のツールの 1 つは、RegShot と呼ばれます。

http://portableapps.com/apps/utilities/regshot_portable

1.8.3 バージョンは 64 ビット レジストリをサポートします。

http://sourceforge.net/projects/regshot/

さらに別のツールは ZSoft Uninstaller と呼ばれます。

http://portableapps.com/apps/utilities/zsoft_uninstaller_portable

これは、ソフトウェアのインストール分析に合わせて調整されています。

これらは両方とも、比較の前後にレジストリとファイル システムを実行できます。

于 2012-06-19T07:46:59.437 に答える
2

まあ、実際には、「監視」したいパスを制限する必要があると思います。レジストリに PowerShell プロバイダーを使用するのは非常に簡単です。例えば:

Get-ChildItem -Path HKCU:\SOFTWARE -recurse | Out-File HKCU_Software.reg

詳細はこちら次に、 DiffMergeなどのツールを使用して差分 (前、後) を作成できます。ディレクトリについても同じ原則。

しかし、繰り返しになりますが、浅いチェックを除けば、そのアプローチは現実的ではないと思います。

あなたのコンテキストはわかりませんが、Microsoft のAttack Surface Analyzerが役に立つかもしれません。

于 2012-06-19T06:09:32.137 に答える