We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
HypervisorPresent
1 parent d5af8ca commit e991400Copy full SHA for e991400
Protest/Protocols/Wmi.cs
@@ -212,14 +212,6 @@ public static Dictionary<string, string> WmiFetch(string host) {
212
ContentBuilderAddValue(moc, "Manufacturer", "manufacturer", data);
213
ContentBuilderAddValue(moc, "UserName", "owner", data);
214
ContentBuilderAddValue(moc, "Model", "model", data);
215
-
216
- foreach (ManagementObject o in moc.Cast<ManagementObject>()) {
217
- bool isHypervisorPresent = (bool)o.GetPropertyValue("HypervisorPresent");
218
- if (isHypervisorPresent) {
219
- type = "Hypervisor";
220
- break;
221
- }
222
223
}
224
catch { }
225
0 commit comments