Skip to content
This repository has been archived by the owner on May 29, 2024. It is now read-only.

Driver versions #68

Open
gkhull opened this issue Apr 26, 2022 · 4 comments
Open

Driver versions #68

gkhull opened this issue Apr 26, 2022 · 4 comments
Labels
help wanted Extra attention is needed stale

Comments

@gkhull
Copy link

gkhull commented Apr 26, 2022

I think under the hardware section, you should add a new column for the gpu and chipset driver versions
https://i.imgur.com/KZ72MWI.png

@PipeItToDevNull
Copy link
Member

Getting GPU driver seems to be relatively easy. How to find the CPU or motherboard reliably is still on the table

Currently all parts are pulled around line 564 and we call $cpu.Name or equivalent

I am pulling GPU driver with $(gwmi Win32_PnPSignedDriver | ? { $_.deviceName -eq $gpu.Name }).driverversion but this cannot be done easily for the CPU or Mobo as their names are not the same or represented reliably in any way I see

@PipeItToDevNull
Copy link
Member

e701d26

@TheKrol
Copy link
Contributor

TheKrol commented Jun 23, 2022

$(gwmi Win32_PnPSignedDriver | ? { $_.deviceName -like "Engine Interface" }).driverversion

This is what I found that would get my Intel Chipset

@PipeItToDevNull PipeItToDevNull added the help wanted Extra attention is needed label Jun 24, 2022
@PipeItToDevNull
Copy link
Member

The issue with that @TheKrol is that you cannot derive "Engine Interface" from the CPU name, the GPU is reported by name.

If there was a universal or semi-universal naming scheme it would likely need to be hard coded and added manually as more names are seen.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
help wanted Extra attention is needed stale
Projects
None yet
Development

No branches or pull requests

3 participants