LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

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]
copy
Query a single value of a key
$ wine reg query [HKCU\Software\MyApp] /v [Name]
copy
Query the default (unnamed) value of a key
$ wine reg query [HKCU\Software\MyApp] /ve
copy
Query a key recursively, including all subkeys
$ wine reg query [HKCU\Software\MyApp] /s
copy

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.

SEE ALSO

RESOURCES

Copied to clipboard
Kai