1 minute read

To give you more specific details of:

https://eelhpesoj.github.io/Manual-SCP-Setup/

1. SCP configuration maunally

1. Create new container

  1. Run ADSI Edit image

  2. Connect to configuration image

  3. Create New object under the Services image

  4. The class should be ‘container’ image

  5. Set value as ‘Device Registration Configuration’ image

  6. Click Finish image

2. Create Service Connection Point

  1. Create new object under the ‘Device Registration Configuration’ image

  2. The class should be ‘serviceConnectionPoint’ image

  3. Set value as ‘62a0ff2e-97b9-4513-943f-0d221bd30080’ image

  4. Set more attributes image

  5. Configure just like this image

[note] azureADName is the domain name enrolled to your tenant. azureADId is the tenant GUID.

  1. Click ‘Finish’ image

Check using Powershell

$ConfigurationPartition = (Get-ADRootDSE).configurationNamingContext
$scp = New-Object System.DirectoryServices.DirectoryEntry
$scp.Path = "LDAP://CN=62a0ff2e-97b9-4513-943f-0d221bd30080,CN=Device Registration Configuration,CN=Services,$ConfigurationPartition"
$scp.Keywords

image

2. Intune Auto Enrollment

If you deploy service connection point, you might also need to enroll the devices to the Intune automatically. So the steps below is to make GPO and link it to the device OU to enroll the devices into Intune using user credential.

1. Preparation

  1. Download the latest admx image

  2. Install it image

image

image

image

image

image

  1. Go to the following path and copy all items right here.
    C:\Program Files (x86)\Microsoft Group Policy\Windows 11 October 2023 Update (23H2)\PolicyDefinitions
    

    image

  2. Go to the following path and pate here.
    C:\Windows\SYSVOL\sysvol\cake.run.local\Policies\PolicyDefinitions
    

    image

2. Create GPO

  1. Run Group Policy Management and create new GPO. image

  2. Edit it. image

  3. Got to the following path and configure ‘Enable automatic MDM enrollment using default Azure AD credentials’
    Computer Configuration > policies > administrative templates > Windows components > MDM
    

    image

  4. Configure just like this image

Client side

Client might need to execute the command:

gpupdate /force
gpresult /r

And also restart their device as well.

Leave a comment