gitextract_od6kibol/ ├── .github/ │ └── workflows/ │ ├── test_docker.yml │ ├── test_docs.yml │ ├── test_macos.yml │ └── test_tox.yml ├── .gitignore ├── .pylintrc ├── .readthedocs.yaml ├── .yamllint.yaml ├── ACKNOWLEDGEMENTS ├── AUTHORS ├── LICENSE ├── MANIFEST.in ├── MANIFEST.test_data.in ├── README.md ├── appveyor.yml ├── config/ │ ├── appveyor/ │ │ └── install.ps1 │ ├── dpkg/ │ │ ├── changelog │ │ ├── clean │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── python3-winregrc.install │ │ ├── rules │ │ └── source/ │ │ └── format │ └── pylint/ │ └── spelling-private-dict ├── dependencies.ini ├── docs/ │ ├── conf.py │ ├── index.rst │ ├── requirements.txt │ └── sources/ │ ├── EventLog-keys.md │ ├── api/ │ │ ├── modules.rst │ │ ├── winregrc.rst │ │ └── winregrc.scripts.rst │ ├── application-keys/ │ │ ├── 7-Zip.md │ │ ├── CCleaner.md │ │ ├── MSDN-web-browser.md │ │ ├── Microsoft-Office.md │ │ ├── Terminal-server-client.md │ │ ├── WinRAR.md │ │ └── index.rst │ ├── explorer-keys/ │ │ ├── Bit-bucket.md │ │ ├── Control-panel-item-identifiers.md │ │ ├── Delegate-folders.md │ │ ├── Known-folder-identifiers.md │ │ ├── MUI-cache.md │ │ ├── Most-recently-used.md │ │ ├── Mount-points.md │ │ ├── Program-cache.md │ │ ├── Shell-folders.md │ │ ├── Typed-paths.md │ │ ├── User-assist.md │ │ └── index.rst │ ├── internet-explorer-keys/ │ │ ├── Browser-helper-objects.md │ │ ├── Policies.md │ │ ├── Types-URLs.md │ │ └── index.rst │ ├── security-accounts-manager-keys/ │ │ ├── Domains.md │ │ ├── Security-accounts-manager.md │ │ └── index.rst │ ├── system-keys/ │ │ ├── Application-compatibility-cache.md │ │ ├── Background-activity-moderator.md │ │ ├── Boot-verification.md │ │ ├── COM-class-identifiers.md │ │ ├── Cached-credentials.md │ │ ├── Certificates.md │ │ ├── Codepage.md │ │ ├── Current-control-set.md │ │ ├── Environment-variables.md │ │ ├── File-system.md │ │ ├── Language.md │ │ ├── Local-security-authority.md │ │ ├── Mounted-devices.md │ │ ├── Prefetch.md │ │ ├── Run-and-RunOnce.md │ │ ├── Services-and-drivers.md │ │ ├── Session-manager.md │ │ ├── Shell-folder-identifiers.md │ │ ├── System-restore.md │ │ ├── Task-scheduler.md │ │ ├── Time-zones.md │ │ ├── USB-storage.md │ │ ├── Volume-shadow-copies.md │ │ ├── Windows-error-reporting.md │ │ ├── Windows-product-information.md │ │ ├── Windows-system-locations.md │ │ └── index.rst │ └── windows-registry/ │ ├── Files.md │ ├── Hives.md │ ├── MUI-form.md │ └── index.rst ├── pyproject.toml ├── run_tests.py ├── test_data/ │ ├── NTUSER.DAT.LOG │ ├── SAM │ ├── SECURITY │ ├── SOFTWARE │ └── SYSTEM ├── test_dependencies.ini ├── tests/ │ ├── __init__.py │ ├── appcompatcache.py │ ├── application_identifiers.py │ ├── cached_credentials.py │ ├── data_format.py │ ├── environment_variables.py │ ├── eventlog_providers.py │ ├── filters.py │ ├── hexdump.py │ ├── interface.py │ ├── knownfolders.py │ ├── mounted_devices.py │ ├── mru.py │ ├── msie_zone_info.py │ ├── output_writer.py │ ├── profiles.py │ ├── programscache.py │ ├── sam.py │ ├── services.py │ ├── shellfolders.py │ ├── sysinfo.py │ ├── task_cache.py │ ├── test_lib.py │ ├── type_libraries.py │ └── userassist.py ├── tox.ini ├── utils/ │ ├── __init__.py │ ├── check_dependencies.py │ ├── dependencies.py │ └── update_release.sh ├── winreg-kb.ini └── winregrc/ ├── __init__.py ├── appcompatcache.py ├── appcompatcache.yaml ├── application_identifiers.py ├── cached_credentials.py ├── catalog.py ├── controlpanel_items.py ├── data/ │ └── observed_shellfolders.yaml ├── data_format.py ├── delegatefolders.py ├── environment_variables.py ├── errors.py ├── eventlog_providers.py ├── filters.py ├── hexdump.py ├── interface.py ├── knownfolders.py ├── mounted_devices.py ├── mounted_devices.yaml ├── mru.py ├── mru.yaml ├── msie_zone_info.py ├── output_writers.py ├── profiles.py ├── programscache.py ├── programscache.yaml ├── sam.py ├── sam.yaml ├── scripts/ │ ├── __init__.py │ ├── appcompatcache.py │ ├── application_identifiers.py │ ├── cached_credentials.py │ ├── catalog.py │ ├── controlpanel_items.py │ ├── delegatefolders.py │ ├── environment_variables.py │ ├── eventlog_providers.py │ ├── knownfolders.py │ ├── mounted_devices.py │ ├── mru.py │ ├── msie_zone_info.py │ ├── profiles.py │ ├── programscache.py │ ├── sam.py │ ├── services.py │ ├── shellfolders.py │ ├── srum_extensions.py │ ├── sysinfo.py │ ├── syskey.py │ ├── task_cache.py │ ├── time_zones.py │ ├── type_libraries.py │ ├── usbstor.py │ └── userassist.py ├── services.py ├── shell_property_keys.py ├── shellfolders.py ├── srum_extensions.py ├── sysinfo.py ├── syskey.py ├── task_cache.py ├── task_cache.yaml ├── time_zone_information.yaml ├── time_zones.py ├── type_libraries.py ├── usbstor.py ├── usbstor.yaml ├── userassist.py ├── userassist.yaml ├── versions.py └── volume_scanner.py