-1

When run wmi.WMI() I am getting this "<_wmi_namespace: >" anyone explain this?

import wmi
c = wmi.WMI()   

output:

<_wmi_namespace: <COMObject winmgmts:>>

Can anyone explain in-detail?

Robert
  • 7,394
  • 40
  • 45
  • 64

1 Answers1

0

wmi is "Windows Management Instrumentation". It is essentially a huge database of internal information about your Windows system.

https://learn.microsoft.com/en-us/windows/win32/wmisdk/wmi-reference

Tim Roberts
  • 48,973
  • 4
  • 21
  • 30