My System has Win 7 64bit installed when I try to execute the below code I'm facing with the error "No module named win32com.client". Can anyone help me with that?
import wmi
c = wmi.WMI()
display = c.Win32_videocontroller
print display.properties
I'm using Python 2.7Ver
Error code:
Traceback (most recent call last): File "", line 1, in import wmi File "C:\Python27\lib\site-packages\wmi.py", line 88, in from win32com.client import GetObject, Dispatch
ImportError: No module named win32com.client
pip install pywin32
– Kobi K