Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想从服务器获取某些应用程序的更新,并且我需要知道它们的 GUID。我从在这里找到的一段代码开始,但我不知道如何获取 GUID
tstring WmiQueryValue(IWbemClassObject* pclsObj, LPCWSTR szName)
为pclsObj. 我尝试同时传递"GUID"和"Guid",szName但我什么也没得到。
pclsObj
"GUID"
"Guid"
szName
无论如何以这种方式获取GUID?
pclsObj是一个Win32_Product,你会发现用 szName "__CLASS" for WMIQueryValue. 我查了一下,这个类有IdentifyingNumber成员,它存储了 GUID :)
Win32_Product
WMIQueryValue
IdentifyingNumber