WDS and two deployments simultaneously problem computername

Rayman1980 1 Reputation point
2022-08-26T13:39:45.277+00:00

Hello, if there are 2 technicians doing a deployment Windows 10 simultaneously with Windows Deployment Services (WDS) and they use the same computername to join Domain. How can WDS detect that this name is already in use, when they are working at the same time and and they plan to use the same name?

Thanks.

Windows for business | Windows Client for IT Pros | Devices and deployment | Set up, install, or upgrade
Windows for business | Windows Server | Devices and deployment | Set up, install, or upgrade
Windows for business | Windows Client for IT Pros | User experience | Other
{count} votes

3 answers

Sort by: Most helpful
  1. Limitless Technology 39,926 Reputation points
    2022-09-01T07:27:33.147+00:00

    Hello Rayman1980,

    By best practice there should be different mechanisms to avoid duplicate hostnames. This includes:

    • Do not run parallel deployment for same environment
    • Use differential hostname topology: by site, by department, by type of user, by type of computer

    Unfortunately, WDS will not provide a mechanism to avoid duplicate hostnames in this case.

    Another option to clean up the hostnames in case of refurbishing and avoid GUID duplication too, would be to run the next script before proceeding to a deployment, ensuring that there will be no duplicates to start with:

    Get-ADComputer -Filter {NetbootGUID -like "*"} -Properties Created | ? {$_.Created -le ((get-date).addDays(-5))} | Set-ADComputer -clear NetbootGUID

    ------------------------------------------------------------------------------------------------------------------------------

    --If the reply is helpful, please Upvote and Accept as answer--

    1 person found this answer helpful.
    0 comments No comments

  2. Rayman1980 1 Reputation point
    2022-08-29T20:11:43.71+00:00

    Thanks @Simon Ren-MSFT .

    I will check it.

    Best regards


  3. Rayman1980 1 Reputation point
    2022-09-05T15:15:35.027+00:00

    Thanks @Simon Ren-MSFT and @Limitless Technology .

    These days I will be testing the scenario with the script that was provided to me, and I will put here the feedback of the experience obtained.

    Best Regards,

    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.