https://bugs.winehq.org/show_bug.cgi?id=43972 Louis Lenders <xerox.xerox2000x(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Component|wintrust |setupapi Keywords| |download, Installer CC| |xerox.xerox2000x(a)gmail.com Ever confirmed|0 |1 --- Comment #2 from Louis Lenders <xerox.xerox2000x(a)gmail.com> --- Confriming. i downloaded https://download.vb-audio.com/Download_CABLE/VoicemeeterSetup.exe After the install there`s a VBCABLE_Setup.exe in the installed directory. Running that gives: fixme:setupapi:SetupDiCallClassInstaller 25 0x12feb8 0x32e180 and the installer says you need to be administrator. With the hack below the installer claims to be successfull, but I haven`t got a clue if it really installed anything. hack: diff --git a/dlls/setupapi/devinst.c b/dlls/setupapi/devinst.c index 4a852da..e04c329 100644 --- a/dlls/setupapi/devinst.c +++ b/dlls/setupapi/devinst.c @@ -3686,7 +3686,7 @@ BOOL WINAPI SetupDiCallClassInstaller( PSP_DEVINFO_DATA DeviceInfoData) { FIXME("%d %p %p\n", InstallFunction, DeviceInfoSet, DeviceInfoData); - return FALSE; + return 1;//FALSE; } /*********************************************************************** -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.