System Grab Bag

View all TLDR pages from Windows (or from all pages)

reg compare

Compare keys and their values in the registry. More information: https://learn.microsoft.com/windows-server/administration/windows-commands/reg-compare.
  • Compare all values under a specific key with a second key:
    reg compare {{first_key_name}} {{second_key_name}}
  • Compare a specific value under two keys:
    reg compare {{first_key_name}} {{second_key_name}} /v {{value}}
  • Compare all sub keys and values for two keys:
    reg compare {{first_key_name}} {{second_key_name}} /s
  • Only output the matches between the specified keys:
    reg compare {{first_key_name}} {{second_key_name}} /os
  • Output the differences and matches between the specified keys:
    reg compare {{first_key_name}} {{second_key_name}} /oa

License and Disclaimer

The content on this page is copyright © 2014—present the tldr-pages team and contributors.
This page is used with permission under Creative Commons Attribution 4.0 International License.

While we do attempt to make sure content is accurate, there isn't a warranty of any kind.