From: Piotr Caban <piotr(a)codeweavers.com> This matches with native. It's needed to ensure that mountmgr is started before other services that use functionality provided by it. Fixes Autodesk Desktop Licensing Service that uses GetVolumeInformationByHandleW. --- loader/wine.inf.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/loader/wine.inf.in b/loader/wine.inf.in index 456555e28b9..181a6d62c9b 100644 --- a/loader/wine.inf.in +++ b/loader/wine.inf.in @@ -2338,7 +2338,7 @@ Description="Device mounting service" DisplayName="Mount Manager" ServiceBinary="%12%\mountmgr.sys" ServiceType=1 -StartType=2 +StartType=0 ErrorControl=1 LoadOrderGroup="System Bus Extender" -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/6808