Adding the step
Add a Run Command Line step towards the end of your task sequence, after the Windows deployment and ConfigMgr client installation steps, and use the following command:cmd.exe /c net localgroup "Administrators" "LocalAdmin" /addBreaking the command down:
cmd.exe /c— runs the command and then exits, which is what a task sequence step expects.net localgroup "Administrators"— targets the built-in local Administrators group (use the correct localized name if you’re deploying non-English builds)."LocalAdmin"— the name of the local user account you want to add. Change this to match the account you created earlier in the sequence./add— adds the specified account to the group.
Order matters
If you also want to create the local user as part of the same task sequence, make sure the “create local user” step runs before this one — otherwise the account won’t exist yet and the step will fail. If you’re adding a domain account instead of a local one, use the same syntax but withDOMAINusername in place of the local account name.
This approach works identically whether you’re deploying via ConfigMgr OSD on Windows 10 or Windows 11 — the underlying net localgroup command hasn’t changed.
Resources
Discover more from TechyGeeksHome
Subscribe to get the latest posts sent to your email.
Good morning, First off I’d like to thank you this wonderful guide. I’ve integrated this into my SCCM a couple of different ways but am having issues. I first created two .bat files and add them into SCCM as packages. I did individual ones and one that has both commands added and causes the user script to run first so the account is created and then the admin script runs to give the created user admin rights. I have successfully run these.bat files on machines and they work flawlessly. I’ve tried both these scenarios in SCCM during OSD. When I use the individual .bat packages, the user profile gets created but it doesn’t get admin rights. When I use the combo ( both command lines run back to back ) it doesn’t even create the user. Lastly, I tried just adding the cmd lines into the task sequence. Again, the user gets created but its not getting the admin rights. Any thoughts would be appreciated. Thanks and have a great day.
0x00000002 – add your task most latest, after “Setup Windows and Configuration Manager”
Hello,
I’m trying to create a user and adding it to administrator group during OSD but it fails with an 0x00000002 error code.
can u help me plz ?
I get the same thing
Hi,
How can I add an AD security Group into local administrator group as part of OSD task sequence using SCCM 2012 R2?
Please help..
thanks
Exactly which part?
How can i set the local user just created as a autologon user? (as part of OSD task sequence using SCCM 2012 R2)
I do the second task of add as administrator and I get an error.
Error – Event ID – 10016
0x00000002 – add your task most latest, after “Setup Windows and Configuration Manager”
Exactly which part?
I do the second task of add as administrator and I get an error.
Error – Event ID – 10016
How can i set the local user just created as a autologon user? (as part of OSD task sequence using SCCM 2012 R2)
Hello,
I’m trying to create a user and adding it to administrator group during OSD but it fails with an 0x00000002 error code.
can u help me plz ?
I get the same thing
Hi,
How can I add an AD security Group into local administrator group as part of OSD task sequence using SCCM 2012 R2?
Please help..
thanks
how about the password for the local account ? where do you define this?
This is just how to add an already created local user account into the local administrator group, not creating the local user. If you want to create the local user as well, try this:
https://techygeekshome.info/2016/02/sccm-add-local-user-during-osd/
how about the password for the local account ? where do you define this?
This is just how to add an already created local user account into the local administrator group, not creating the local user. If you want to create the local user as well, try this:
https://techygeekshome.info/2016/02/sccm-add-local-user-during-osd/