mirror of
https://github.com/tldr-pages/tldr.git
synced 2026-08-28 20:11:19 +08:00
624 B
624 B
wine reg export
Export keys, values, and data from the Wine registry to a
.regfile. More information: https://learn.microsoft.com/windows-server/administration/windows-commands/reg-export.
- Export a registry key and its subkeys to a file:
wine reg export '{{HKEY_CURRENT_USER\path\to\key}}' {{path/to/file.reg}}
- Export an entire registry hive to a file:
wine reg export {{HKEY_CURRENT_USER}} {{path/to/file.reg}}
- Overwrite the output file if it already exists, without prompting:
wine reg export '{{HKEY_CURRENT_USER\path\to\key}}' {{path/to/file.reg}} /y
- Display help:
wine reg export /?