Windows – Get the video card model via command line in Windows

command linewindows

I need to get a text output with the video card / GPU model, using any tool existing in all Windows versions from XP onwards (unlikely, I haven't found anything yet) or using any small command line third party tool.

Any ideas?

Best Answer

wmic path win32_VideoController get name 

does the job concisely from commmand line. Thanks to Vlastimil Ovčáčík's answer above but not sure why its so verbose.

Related Question