I use winetircks to install vcrun2019, winetricks create a lot config.
if I install vcrun2019 without winetricks, there are nothing config.
how can I install vcrun2019 without winetricks, and create those config ?
How to save wine libraries config
Re: How to save wine libraries config
The Dll overrides are stored in the registry
wine regedit → HKEY_CURRENT_USER → Software → Wine → DllOverrides
You can add/import/export an override with regedit or use the command line:
wine regedit → HKEY_CURRENT_USER → Software → Wine → DllOverrides
You can add/import/export an override with regedit or use the command line:
Code: Select all
# Add testdll as an override:
wine reg add 'HKEY_CURRENT_USER\Software\Wine\DllOverrides' /v testdll /t REG_SZ /d native
# Export / save all dll overrides as overrides.reg:
wine reg export 'HKEY_CURRENT_USER\Software\Wine\DllOverrides' overrides.reg
# Import overrides.reg
wine reg import overrides.reg