I am trying to have the AMD Catalyst software installed on all machines with an AMD video card. Right now I am using a WMI query in my task sequence on the video controller. When I image the machine, the AMD software does not install via task sequence along with the OS.
Here's the WMI query I'm using,
SELECT * FROM Win32_VideoController WHERE Name LIKE '%AMD%'
The application package itself works fine when I push it out to Software Centre after imaging.
The machine I currently have is a Dell 790, with an AMD Radeon HD 5450 card in it. I've tried changing the query to
SELECT * FROM Win32_VideoController WHERE Name LIKE '%AMD Radeon HD 5450%'
That didn't work either
I am fairly new to doing this in SCCM, so any advice is appreciated!