批次處理比較登錄檔項

2019-10-16 22:59:07

比較登錄檔項是通過REG COMPARE命令完成的。

語法

REG COMPARE [ROOT\]RegKey [ROOT\]RegKey [/v ValueName] [Output] [/s]
REG COMPARE [ROOT\]RegKey [ROOT\]RegKey [/ve] [Output] [/s]

範例

其中輸出 - /od(僅差異)/os(僅匹配)/oa(全部)/on(不輸出)。

@echo off
REG COMPARE HKEY_CURRENT_USER\Console HKEY_CURRENT_USER\Console\Test

上述程式將比較登錄檔項HKEY_CURRENT_USER\Console & HKEY_CURRENT_USER\Console\Test之間的所有值。輸出結果如下 -

Result Compared: Identical
The operation completed successfully.

如果兩個登錄檔項中的值存在差異,則會在輸出中顯示,如以下結果所示。 以下輸出顯示「EnableColorSelection」的值是額外的登錄檔項"HKEY_CURRENT_USERConsole"

< Value: HKEY_CURRENT_USER\Console EnableColorSelection REG_DWORD 0x0
Result Compared: Different
The operation completed successfully.