Manny-Tech Posted February 12, 2016 Posted February 12, 2016 Over the past few weeks I have accumulated network card configurations such a Power Management and Wake on Magic Packet etc... for differing models of desktop. Currently I have an application within MDT for different models which is selectable during the MDT Install Wizard. What I'd like to achieve is possibly insert this into a task sequence but have a variable for only running if the machine is a certain make / model. Is this possible? Or are there other ways around this? Any help would be appreciated.
jaminben Posted February 12, 2016 Posted February 12, 2016 (edited) Not sure if this is possible in MDT but it is in SCCM and their task sequences are similar.... how about a WMI condition query on the task? SELECT * FROM win32_computersystem WHERE model LIKE "%SATELLITE PRO C660%" To get the model use something like the below on the target machine at a command prompt: wmic computersystem get model EDIT Not tested but it looks like you can... see attached screenshot Edited February 12, 2016 by jaminben 1
sted Posted February 12, 2016 Posted February 12, 2016 you can definitely install device drivers based on reported pc make and model and create selection profiles for software so i assume its possible
Manny-Tech Posted February 12, 2016 Author Posted February 12, 2016 you can definitely install device drivers based on reported pc make and model and create selection profiles for software so i assume its possible I do that for my drivers, which was the basis which got me thinking I could do it with applications. I'll give @jaminben option a go later on.
Manny-Tech Posted February 19, 2016 Author Posted February 19, 2016 Just to confirm that @jaminben solution worked perfectly.
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