Manual SCP Setup Detail

Joseph·2024년 8월 13일
0

To give you more specific details of:

https://velog.io/@leeyosebi/Manual-SCP-Setup

1. SCP configuration maunally

1. Create new container

  1. Run ADSI Edit
  2. Connect to configuration
  3. Create New object under the Services
  4. The class should be 'container'
  5. Set value as 'Device Registration Configuration'
  6. Click Finish

2. Create Service Connection Point

  1. Create new object under the 'Device Registration Configuration'
  2. The class should be 'serviceConnectionPoint'
  3. Set value as '62a0ff2e-97b9-4513-943f-0d221bd30080'
  4. Set more attributes
  5. Configure just like this

    [note]
    azureADName is the domain name enrolled to your tenant.
    azureADId is the tenant GUID.
  6. Click 'Finish'

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

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
  2. Install it





  3. 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

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

2. Create GPO

  1. Run Group Policy Management and create new GPO.
  2. Edit it.
  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


4. Configure just like this

Client side

Client might need to execute the command:

gpupdate /force
gpresult /r

And also restart their device as well.

0개의 댓글