Jump to content

Recommended Posts

Posted

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.

Posted (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

MDT Task Sequence Query.jpg

Edited by jaminben
  • Thanks 1
Posted
you can definitely install device drivers based on reported pc make and model and create selection profiles for software so i assume its possible
Posted
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.

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 account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...