Now the following question:P I have found the command for getting the DEV and VEN. for example: Func Read_Graphics()
Local $colItems = ""
$colItems = $objWMIService.ExecQuery("Select * from Win32_VideoController")
For $objItem in $colItems
Local $item = $objItem.PNPDeviceID
GUICtrlCreateLabel($Item, 30, 320)
Next
EndFunc The PNPDeviceID will display the following on the computer: PCI\\VEN_8086DEV2772SUBSYS_27721849REV_02\311583659010 now i want to display VEN_8086&DEV2772 in the gui how can i do this? when a driver is present he must use: Func Read_Graphics()
Local $colItems = ""
$colItems = $objWMIService.ExecQuery("Select * from Win32_VideoController")
For $objItem in $colItems
Local $item = $objItem.name
GUICtrlCreateLabel($Item, 30, 320)
Next
EndFunc and when not: Func Read_Graphics()
Local $colItems = ""
$colItems = $objWMIService.ExecQuery("Select * from Win32_VideoController")
For $objItem in $colItems
Local $item = $objItem.PNPDeviceID
GUICtrlCreateLabel($Item, 30, 320)
Next
EndFunc Hopefully you guys can help me Sander