wine-reg-query

Display keys and values from the Wine registry

TLDR

Query a key and list its values
$ wine reg query [HKCU\Software\MyApp]
Query a single value of a key
$ wine reg query [HKCU\Software\MyApp] /v [Name]
Query the default (unnamed) value of a key
$ wine reg query [HKCU\Software\MyApp] /ve
Query a key recursively, including all subkeys
$ wine reg query [HKCU\Software\MyApp] /s

SYNOPSIS

wine reg query key [/v value | /ve] [/s]

DESCRIPTION

wine reg query reads and prints the contents of a registry key inside a Wine prefix. It mirrors the Windows reg query command. With no value options, it lists the values stored directly under the given key.For each value, the output shows its name, type, and data. Use /s to walk the entire subtree below the key, which is useful for inspecting an application's full configuration at once.

PARAMETERS

/v value

Query the named value under the key.
/ve
Query the key's default (unnamed) value.
/s
Query all subkeys and their values recursively.

INSTALL

sudo dnf install wine
sudo pacman -S wine
sudo apk add wine
sudo zypper install wine
nix profile install nixpkgs#wine

SEE ALSO

wine(1), wine-reg(1), wine-reg-add(1), wine-reg-delete(1), wine-reg-copy(1)

RESOURCES

Source code · Homepage