I'm having some trouble figuring out if there is a cleaner way to do the following
In setting up our MDT environment myself and a small handful of people are designated as image creators and as such we want them to be able to run task sequences for capture, sysprep, choose special software etc.
All other users that access the system can only image machines with the provided completed images
So the abridged version of my customsettings.ini file is below
I have 2 Selection profiles in MDT
Image Creators=Everything
Imagers=Just a subfolder in task sequences that holds the completed image Tasks Sequences
[Settings]
Priority=UserID,Default
[Admin1]
Subsection=Image Creators
[Admin2]
Subsection=Image Creators
[Image Creators]
SkipCapture=NO
WizardSelectionProfile=Image Creators
[Default]
WizardSelectionProfile=Imagers
My question is is there a cleaner way to add multiple users such as [Admin1] and [Admin2] so they all use the Image Creators WizardSelectionProfile without having to repeat the same sections over and over
Or is using Subsection the best i can hope for?
Thanks for taking the time to look.