What will you say if someone asks you - do we have this particular driver already imported anywhere in SCCM? Here is the answer - a short but useful T-SQL query which will help you to find this out
Usage:
Replace the _DriverModelRegexp_ string with the regular expression matching your needs depending on the model of the drivers you are looking for.
Obviously the query should be run via SQL Management Studio or any other similar tool letting you execute T-SQL queries
Obviously the query should be run via SQL Management Studio or any other similar tool letting you execute T-SQL queries
Code:
SELECT ModelName
FROM v_CI_DriverModels
WHERE ManufacturerName LIKE '_DriverModelRegexp_'
GROUP BY ModelName
ORDER BY ModelName
Brak komentarzy:
Prześlij komentarz