http://bugs.winehq.org/show_bug.cgi?id=31033
Bug #: 31033 Summary: Multiple apps need IWbemServices::GetObject to retrieve WMI class instances Product: Wine Version: 1.5.7 Platform: x86 OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: wmi&wbemprox AssignedTo: wine-bugs@winehq.org ReportedBy: focht@gmx.net Classification: Unclassified
Hello,
continuation of bug 20651
Multiple apps still fail to query for WMI classes/properties because IWbemServices::GetObject method is not implemented (they use a different method).
One app is bug 28682 (Ragnarok downloader)
Example .NET code:
--- snip --- ManagementClass class2 = new ManagementClass("Win32_Processor"); foreach (ManagementObject obj2 in class2.GetInstances()) { if (str == string.Empty) { str = obj2.Properties["ProcessorId"].Value.ToString(); } } --- snip ---
MSDN: http://msdn.microsoft.com/en-us/library/windows/desktop/aa392109%28v=vs.85%2...
Regards