MDT Windows 10 Setup Screen

Kevin Greaves 21 Reputation points
2021-06-08T03:05:09.12+00:00

Hello, This is my first time setting up and using MDT on Windows Server 2019. I am testing mdt and I am not sure if this is possible, After I install windows 10 I would like it to go to the "setup screen" after it installs. So I can setup user accounts and other settings before it can be used. I am not connecting any of the test computers to a domain. Also if there is a way to get to the setup screen. Is there a way MDT does not use the Administrator account. If I could disable it after windows installs?

Thanks

Windows for business | Windows Client for IT Pros | Devices and deployment | Set up, install, or upgrade
Microsoft Security | Intune | Configuration Manager | Other
0 comments No comments
{count} votes

Accepted answer
  1. Simon Ren-MSFT 40,341 Reputation points Microsoft External Staff
    2021-06-09T09:37:47.527+00:00

    Hi,

    Thanks for posting in Microsoft MECM Q&A forum.

    1.We could customize the SkipWizard properties in CustomSettings.ini and BootStrap.ini to determine whether we skip the Deployment Wizard pages or not. For example:
    [settings]
    Priority=Default
    [Default]
    SkipBDDWelcome=NO
    SkipTaskSequence=NO
    SkipComputerName=No
    SkipDomainMembership=No
    SkipLocaleSelection=NO

    For more information, please refer to: Providing Properties for Skipped Deployment Wizard Pages

    2.We can use below command line in a Run command line task sequence step to disable local Administrator account. We can also do this via GPO after installation.
    cmd.exe /c net user Administrator /active:no

    Best regards,
    Simon


    If the response is helpful, please click "Accept Answer" and upvote it.
    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.
    https://learn.microsoft.com/en-us/answers/articles/67444/email-notifications.html


1 additional answer

Sort by: Most helpful
  1. Kevin Greaves 21 Reputation points
    2021-06-20T00:56:29.827+00:00

    Thank you! The unattend.xml file worked.

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.