PyWin32 get network information/statistics

家住魔仙堡 提交于 2019-12-07 08:48:27
Roger Upole

You'll need to use win32com.client.Dispatch to actually create the object. Also, the class you start with is the CoClass, in this case

class NetworkListManager(CoClassBaseClass): # A CoClass

is the one you want.

win32com.client.Dispatch('{DCB00C01-570F-4A9B-8D69-199FDBA5723B}')

works here.

Many of these Dispatch classes have a human readable dotted name as an alias, although this particular one doesn't seem to.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!