Can non-domain joined in use systems be entra joined without having to touch the system

Daniel Ronald 0 Reputation points
2024-04-22T21:47:19.39+00:00

I have about 150 non-domain joined systems out in the field that I need to get entra joined. Is there a way to do this with autopilot? Is there a better option? Please let me know.

There are all windows 10 pro systems.

Windows 10
Windows 10
A Microsoft operating system that runs on personal computers and tablets.
10,654 questions
0 comments No comments
{count} votes

3 answers

Sort by: Most helpful
  1. Shawn Collins 505 Reputation points
    2024-04-23T01:53:33.22+00:00

    Autopilot is generally used for deploying and managing new or reset Windows devices, allowing you to customize the out-of-box experience and apply specific configurations, including Azure Active Directory (AAD) join. However, if you have 150 non-domain-joined Windows 10 Pro systems that are already in the field and you want them to be joined to Azure AD (Entra ID), Autopilot might not be the most straightforward solution. Instead, consider these options:

    1. Entra ID Join via Azure AD Access Panel

    This approach involves manually joining each system to Azure AD:

    Manual Azure AD Join:

    On the Windows 10 Pro device, go to Settings > Accounts > Access work or school.

    Click Connect and select Join this device to Azure Active Directory.

    Sign in with the Azure AD credentials.

    Follow the prompts to complete the Azure AD join.

    This method can be time-consuming if done manually for all 150 systems. However, it is effective for smaller numbers of devices and requires no additional tools.

    1. Use Microsoft Endpoint Manager (Intune)

    Microsoft Endpoint Manager (formerly Intune) allows you to manage devices and push configurations, including Azure AD join. This is suitable for large-scale deployments:

    Enroll Devices in Endpoint Manager:

    Ensure you have the necessary licenses to manage devices with Endpoint Manager.

    Configure a device management policy that specifies Azure AD join for existing devices.

    Distribute the Endpoint Manager enrollment package or application to the field devices, allowing them to be managed by Endpoint Manager.

    Automate Azure AD Join through Endpoint Manager:

    Create an enrollment profile that specifies Azure AD join.

    Deploy the profile to the existing devices via a script or user instructions.

    Use Endpoint Manager's policies and configurations to ensure devices comply with Azure AD join requirements.

    Endpoint Manager provides more automation and centralized management, making it ideal for large-scale deployments. It also allows for further device configuration and compliance management.

    1. Custom Deployment Script

    If Endpoint Manager is not an option, you can create a custom script to join devices to Azure AD:

    PowerShell Script for Azure AD Join:

    powershell:

    $aadTenantID = "<Your Tenant ID>"

    $aadUsername = "<Your Azure AD Username>"

    $aadPassword = "<Your Azure AD Password>"

    $securePassword = ConvertTo-SecureString -String $aadPassword -AsPlainText -Force

    $credential = New-Object System.Management.Automation.PSCredential -ArgumentList $aadUsername, $securePassword

    Add-Computer -DomainName $aadTenantID -Credential $credential -Force

    Deploy this script to the field devices and ensure it runs with administrative privileges. Be cautious with storing and handling credentials securely.


  2. Deleted

    This answer has been deleted due to a violation of our Code of Conduct. The answer was manually reported or identified through automated detection before action was taken. Please refer to our Code of Conduct for more information.


    Comments have been turned off. Learn more

  3. Jing Zhou 2,240 Reputation points Microsoft Vendor
    2024-04-24T07:24:53.1666667+00:00

    Hello,

     

    Thank you for posting in Q&A forum.

    Yes, you can achieve the purpose by Windows Autopilot. However it will require Intune platform.

    By Windows Autopilot, you will be able to enroll devices on Intune in a batch instead of accessing the operation system directly.

    For further details, please kindly check it via below link:

    https://learn.microsoft.com/en-us/mem/intune/fundamentals/deployment-guide-enrollment-windows

    To help other customers who may be facing the same issue, please don't forget to vote if the reply is helpful.

    Best regards,

    Jill Zhou

    0 comments No comments