Powershell means of detecting graphics driver version

Get-WmiObject -Query “SELECT SystemName, Name, InstalledDisplayDrivers, DriverVersion FROM Win32_VideoController”

This can save a lot of time debugging wpf problems that are due to flakey graphics drivers.

Leave a comment