http://bugs.winehq.org/show_bug.cgi?id=60341 --- Comment #1 from Louis Lenders <xerox.xerox2000x@gmail.com> --- Actually that "err:wbemprox:wql_error syntax error, unexpected TK_ID, expecting end of file" does not seem to be the cause of the crash It works in older versions of wine, before 87555ec538904c1a043cb9bac1c806e318385069: combase: Implement IContextCallback::ContextCallback. The hack below makes the application start fine: @@ -842,7 +844,7 @@ static BOOL WINAPI init_process_secret(PINIT_ONCE init_once, void *param, void * void get_process_secret(GUID *process_secret) { static INIT_ONCE init_once = INIT_ONCE_STATIC_INIT; - static GUID secret; + GUID secret; InitOnceExecuteOnce(&init_once, init_process_secret, &secret, NULL); *process_secret = secret; Error log from Nova itsself: Nova2, Version=2.1.9634.15360, Culture=neutral, PublicKeyToken=null System.InvalidCastException: Unable to cast COM object of type 'System.Management.WbemDefPath' to interface type 'System.Management.IWbemPath'. This operation failed because the QueryInterface call on the COM component for the interface with IID '{3BC15AF2-736C-477E-9E51-238AF8667DCC}' failed due to the following error: Exception from HRESULT: 0x80004002 (E_NOINTERFACE). at System.StubHelpers.StubHelpers.GetCOMIPFromRCW(Object objSrc, IntPtr pCPCMD, IntPtr& ppTarget, Boolean& pfNeedsRelease) at System.Management.IWbemPath.GetServer_(UInt32& puNameBufLength, String pName) at System.Management.ManagementPath.get_Server() at System.Management.SinkForEventQuery..ctor(ManagementEventWatcher eventWatcher, Object context, IWbemServices services) @Piotr: Could you shed a light on this? -- 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.