Overblog Tous les blogs Top blogs Technologie & Science Tous les blogs Technologie & Science
Editer l'article Suivre ce blog Administration + Créer mon blog
MENU

[INTUNE] Configuring Active Directory and Create Users for Intune

Publié le par damcuvelier

Active Directory Preparation

In order to prepare your Active Directory, you need to create an alternate UPN suffix to match the domain you added in Intune. See part 1 if that’s not completed.

An UPN suffix is the name of the domain that is added after the @ sign when a domain user account is created. The alternate UPN suffixes will simplify administration and user logon processes by providing a single UPN suffix for all users.

This is the domain that Configuration Manager and Intune would expect users to use when enrolling devices.

  •  Open Active Directory Domains and Trusts

mobile device management active directory

  • Right-click Active Directory Domains and Trusts
  • Click Properties

mobile device management active directory

  • On the UPN Suffixes tab
  • Type the new UPN suffix that you would like to add to the forest
  • Click Add
  • Click Ok

mobile device management active directory

The next step is to change the UPN of all your users :

  • Open Active Directory Users and Computers
  • Browse to the OU where your users reside
  • Right click your user and select Properties

mobile device management active directory

  • In the Account Tab
  • Change the suffix value

mobile device management active directory

Tip : You can also use this PowerShell command to change multiple accounts. Just change the -SearchName and $_.samaccountname value to reflect your environment.

Get-ADUser -Filter * -SearchBase 'ou=xxxx' -Properties userPrincipalName | foreach { Set-ADUser $_ -UserPrincipalName "$($_.samaccountname)@systemcenterdudes.com"}
 

Intune Users Creation

Your Active Directory Users needs to be synchronized with Intune. You can use Microsoft Azure Active Directory Sync (DirSync) or create your users manually if you have a small amount. For the sake of this post we’ll create them manually.

mobile device management active directory

  • Enter your user information, make sure to select the right domain
  • Click Next

mobile device management active directory

mobile device management active directory

  • Select the default Windows Intune group. This group won’t be used since access will be managed through an SCCM User Collection that we’ll configure later.

mobile device management active directory

  • Choose if you wish to receive the user credentials by email
  • Click Create
  • Wait for the process to complete
  • Click Finish
  • Repeat the steps if you have more users to create

mobile device management active directory

That’s it, you’ve completed the second step to manage mobile device with SCCM 2012.

Commenter cet article