• Recent
    • Unsolved
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login
    1. Home
    2. ayy_nelson
    3. Best
    • Profile
    • Following 0
    • Followers 0
    • Topics 0
    • Posts 5
    • Best 1
    • Controversial 0
    • Groups 0

    Best posts made by ayy_nelson

    • RE: Unable to join deployed PC to domain

      What is the domain functional level of your DC?

      I remember having difficulty with 2008 domain level, and I ended up having to join the domain in powershell instead of the FOG. Notice that domain does not have the .local part of it. That reallllly tripped me up for a while. Alternatively, I learned that you can do username@domain.local… at least when setting the autologin registry setting. I have not tested that in your use case, but it is something new to try 🙂

      $domain = “domain”
      $password = “notpassword” | ConvertTo-SecureString -asPlainText -Force
      $username = “$domain\domainadmin”
      $credential = New-Object System.Management.Automation.PSCredential($username,$password)
      Add-Computer -DomainName $domain -Credential $credential -OUPath “OU=FOGBuilt,OU=Computers,OU=main,DC=domain,DC=LOCAL”

      posted in Windows Problems
      ayy_nelsonA
      ayy_nelson
    • 1 / 1