Basic Windows 7 Image (SCCM 2012 R2)
I'm trying to create a very basic/simple Windows 7 deployment via SCCM 2012 using task sequences. Basically we have different laptops, desktops, etc. come in & my techs want something that just lays down an image so they can install the drivers, join the doman, etc. What's the simplest way to complete this? I tried using our current "production" task sequnce, making a copy of it & then editing it so it was ONLY installing the OS and then adding the local admin account & EVERY TIME the admin account would lock or be disabled so I figured I'd try ANOTHER option & create one from scratch that just lays down a basic image with the admin account enabled. Thank you
TS:
Restart in Windows PE
Partition
Apply OS
___________All the Above works fine
Windows Settings (Enable Admin Account: Password entered)
Apply Network Settings (Join Workgroup)
Set Task sequence variable: OSDLocalAdminPassword (Tried LOTS of different options with this)
Completes with no issues & when you attempt to login with admin account (This account has been disabled)
Answers (0)
Be the first to answer this question
Look into MDT task sequences:
https://technet.microsoft.com/en-us/library/dn744302.aspx
(You need to have the MDT package installed on your SCCM server for the MDT task sequence option to appear)
Also, if you post the TS its possible that someone will spot the error for you. - arivarton 9 years ago
You could export your task sequence as a .xml with powershell and paste it in your post:
Get-CMTaskSequence -ID CASXXXXX | select -ExpandProperty Sequence > c:\filename.xml - arivarton 9 years ago