clareq Posted November 13, 2018 Posted November 13, 2018 I'm sure this is doable, but I've already spent so much time on it it would be faster to walk round the classrooms and count, but I'm not giving up! I need to find out how many machines have a v5 smartboard connected - they are distinguishable because they have a serial to USB driver on them. I've tried a SCCM report and Impero's inventory, but can't find a query that will work. I know the Driver instance ID and filename - please help save my sanity!!!!
djm968 Posted November 13, 2018 Posted November 13, 2018 (edited) Should be able to use/adapt this. https://blogs.technet.microsoft.com/heyscriptingguy/2006/03/20/how-can-i-get-a-list-of-installed-device-drivers/ Or powershell. Code below will return any nvidia driver. Get-WmiObject Win32_PnPSignedDriver| select devicename, driverversion | where {$_.devicename -like "*nvidia*"} Edited November 13, 2018 by djm968
clareq Posted November 13, 2018 Author Posted November 13, 2018 I've just found CMPivot - new with the 1806 version of SCCM. It's scanning all machines in the collection for the specific driver file - gives me exactly what I need.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now