A customer is right now migrating from a Thirdparty MDM solution to Microsoft Intune. He has a custom iOS IMAP configuration for round about 30 users and do not wanted them to migrate every policy manually so we created a quick Powershell script which is changing the user values inside the XML and uploads them as a configuration via the Intune Graph API.
The interesting part was, that these are Exchange Online Shared mailboxes which have to be configured with the primary user’s UPN account.
So I have taken the DeviceConfiguration_Add.ps1 Powershell Script from the Intune Github Sample Page and added/changed the following things.
The full script is available as a GIST or on the bottom of the blog post.
- Added a parameter named $upn which is getting the User Principal Name for which user the policy should be built. Line 14-17
1234param ([Parameter(Mandatory=$True)][string]$upn)
- Added a region called “Build XML” where I am replacing some Usernames with variables. Line 320 – 408
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748#Split out the surname of the upn$name = ($upn.Split('.')[1]).Split('@')[0]#Split out the first letter of the name$conUsername = ($upn.Substring(0,1) + '.' + $name)#Building the custom XML payload with the variables $name and $conUsername$xmlPayload = @"<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"><plist version="1.0"><dict><key>PayloadContent</key><array><dict><key>EmailAccountDescription</key><string>Contoso Confidential</string><key>EmailAccountName</key><string>Confidential</string><key>EmailAccountType</key><string>EmailTypeIMAP</string><key>EmailAddress</key><string>$conUsername@contoso.com</string><key>IncomingMailServerAuthentication</key><string>EmailAuthPassword</string><key>IncomingMailServerHostName</key><string>outlook.office365.com</string><key>IncomingMailServerPortNumber</key><integer>993</integer><key>IncomingMailServerUseSSL</key><true/><key>IncomingMailServerUsername</key><string>$upn\$conUsername</string><key>OutgoingMailServerAuthentication</key><string>EmailAuthPassword</string><key>OutgoingMailServerHostName</key><string>smtp.office365.com</string><key>OutgoingMailServerPortNumber</key><integer>587</integer><key>OutgoingMailServerUseSSL</key><true/><key>OutgoingMailServerUsername</key><string>$upn</string><key>OutgoingPasswordSameAsIncomingPassword</key><false/><key>PayloadDescription</key><string>Configures Email settings</string><key>PayloadDisplayName</key><string>Contoso Confidential</string> - Finally a region called “Build JSON Payload” where I encoding the UTF8 XML Payload to a BASE64 string and building the JSON request. Line 410 – 425
123456789101112$bytes = [System.Text.Encoding]::UTF8.GetBytes($xmlPayload)$encodedPayload =[Convert]::ToBase64String($bytes)$jsonConfig = @"{"@odata.type": "#microsoft.graph.iosCustomConfiguration","displayName": "iOS - Confidential $name","payloadName": "Confidential - $conUsername","payloadFileName": "config.xml","payload": "$encodedPayload"}"@
This is my first public Powershell script, so if there are any requests to make it portable and do some error checks I am happy about your feedback.
And here is the full script.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 |
<# .COPYRIGHT Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license. See LICENSE in the project root for license information. Added XML and JSON configuration and UPN parameter by Michael Obernberger Version: 1.0 Date: 12.03.2019 #> param ( [Parameter(Mandatory=$True)] [string]$upn ) #################################################### function Get-AuthToken { <# .SYNOPSIS This function is used to authenticate with the Graph API REST interface .DESCRIPTION The function authenticate with the Graph API Interface with the tenant name .EXAMPLE Get-AuthToken Authenticates you with the Graph API interface .NOTES NAME: Get-AuthToken #> [cmdletbinding()] param ( [Parameter(Mandatory=$true)] $User ) $userUpn = New-Object "System.Net.Mail.MailAddress" -ArgumentList $User $tenant = $userUpn.Host Write-Host "Checking for AzureAD module..." $AadModule = Get-Module -Name "AzureAD" -ListAvailable if ($AadModule -eq $null) { Write-Host "AzureAD PowerShell module not found, looking for AzureADPreview" $AadModule = Get-Module -Name "AzureADPreview" -ListAvailable } if ($AadModule -eq $null) { write-host write-host "AzureAD Powershell module not installed..." -f Red write-host "Install by running 'Install-Module AzureAD' or 'Install-Module AzureADPreview' from an elevated PowerShell prompt" -f Yellow write-host "Script can't continue..." -f Red write-host exit } # Getting path to ActiveDirectory Assemblies # If the module count is greater than 1 find the latest version if($AadModule.count -gt 1){ $Latest_Version = ($AadModule | select version | Sort-Object)[-1] $aadModule = $AadModule | ? { $_.version -eq $Latest_Version.version } # Checking if there are multiple versions of the same module found if($AadModule.count -gt 1){ $aadModule = $AadModule | select -Unique } $adal = Join-Path $AadModule.ModuleBase "Microsoft.IdentityModel.Clients.ActiveDirectory.dll" $adalforms = Join-Path $AadModule.ModuleBase "Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll" } else { $adal = Join-Path $AadModule.ModuleBase "Microsoft.IdentityModel.Clients.ActiveDirectory.dll" $adalforms = Join-Path $AadModule.ModuleBase "Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll" } [System.Reflection.Assembly]::LoadFrom($adal) | Out-Null [System.Reflection.Assembly]::LoadFrom($adalforms) | Out-Null $clientId = "d1ddf0e4-d672-4dae-b554-9d5bdfd93547" $redirectUri = "urn:ietf:wg:oauth:2.0:oob" $resourceAppIdURI = "https://graph.microsoft.com" $authority = "https://login.microsoftonline.com/$Tenant" try { $authContext = New-Object "Microsoft.IdentityModel.Clients.ActiveDirectory.AuthenticationContext" -ArgumentList $authority # https://msdn.microsoft.com/en-us/library/azure/microsoft.identitymodel.clients.activedirectory.promptbehavior.aspx # Change the prompt behaviour to force credentials each time: Auto, Always, Never, RefreshSession $platformParameters = New-Object "Microsoft.IdentityModel.Clients.ActiveDirectory.PlatformParameters" -ArgumentList "Auto" $userId = New-Object "Microsoft.IdentityModel.Clients.ActiveDirectory.UserIdentifier" -ArgumentList ($User, "OptionalDisplayableId") $authResult = $authContext.AcquireTokenAsync($resourceAppIdURI,$clientId,$redirectUri,$platformParameters,$userId).Result # If the accesstoken is valid then create the authentication header if($authResult.AccessToken){ # Creating header for Authorization token $authHeader = @{ 'Content-Type'='application/json' 'Authorization'="Bearer " + $authResult.AccessToken 'ExpiresOn'=$authResult.ExpiresOn } return $authHeader } else { Write-Host Write-Host "Authorization Access Token is null, please re-run authentication..." -ForegroundColor Red Write-Host break } } catch { write-host $_.Exception.Message -f Red write-host $_.Exception.ItemName -f Red write-host break } } #################################################### Function Add-DeviceConfigurationPolicy(){ <# .SYNOPSIS This function is used to add an device configuration policy using the Graph API REST interface .DESCRIPTION The function connects to the Graph API Interface and adds a device configuration policy .EXAMPLE Add-DeviceConfigurationPolicy -JSON $JSON Adds a device configuration policy in Intune .NOTES NAME: Add-DeviceConfigurationPolicy #> [cmdletbinding()] param ( $JSON ) $graphApiVersion = "Beta" $DCP_resource = "deviceManagement/deviceConfigurations" Write-Verbose "Resource: $DCP_resource" try { if($JSON -eq "" -or $JSON -eq $null){ write-host "No JSON specified, please specify valid JSON for the Android Policy..." -f Red } else { Test-JSON -JSON $JSON $uri = "https://graph.microsoft.com/$graphApiVersion/$($DCP_resource)" Invoke-RestMethod -Uri $uri -Headers $authToken -Method Post -Body $JSON -ContentType "application/json" } } catch { $ex = $_.Exception $errorResponse = $ex.Response.GetResponseStream() $reader = New-Object System.IO.StreamReader($errorResponse) $reader.BaseStream.Position = 0 $reader.DiscardBufferedData() $responseBody = $reader.ReadToEnd(); Write-Host "Response content:`n$responseBody" -f Red Write-Error "Request to $Uri failed with HTTP Status $($ex.Response.StatusCode) $($ex.Response.StatusDescription)" write-host break } } #################################################### Function Test-JSON(){ <# .SYNOPSIS This function is used to test if the JSON passed to a REST Post request is valid .DESCRIPTION The function tests if the JSON passed to the REST Post is valid .EXAMPLE Test-JSON -JSON $JSON Test if the JSON is valid before calling the Graph REST interface .NOTES NAME: Test-AuthHeader #> param ( $JSON ) try { $TestJSON = ConvertFrom-Json $JSON -ErrorAction Stop $validJson = $true } catch { $validJson = $false $_.Exception } if (!$validJson){ Write-Host "Provided JSON isn't in valid JSON format" -f Red break } } #################################################### #region Authentication write-host # Checking if authToken exists before running authentication if($global:authToken){ # Setting DateTime to Universal time to work in all timezones $DateTime = (Get-Date).ToUniversalTime() # If the authToken exists checking when it expires $TokenExpires = ($authToken.ExpiresOn.datetime - $DateTime).Minutes if($TokenExpires -le 0){ write-host "Authentication Token expired" $TokenExpires "minutes ago" -ForegroundColor Yellow write-host # Defining User Principal Name if not present if($User -eq $null -or $User -eq ""){ $User = Read-Host -Prompt "Please specify your user principal name for Azure Authentication" Write-Host } $global:authToken = Get-AuthToken -User $User } } # Authentication doesn't exist, calling Get-AuthToken function else { if($User -eq $null -or $User -eq ""){ $User = Read-Host -Prompt "Please specify your user principal name for Azure Authentication" Write-Host } # Getting the authorization token $global:authToken = Get-AuthToken -User $User } #endregion #region Build XML (Added by Michael Obernberger) #Split out the surname of the upn $name = ($upn.Split('.')[1]).Split('@')[0] #Split out the first letter of the name $conUsername = ($upn.Substring(0,1) + '.' + $name) #Building the custom XML payload with the variables $name and $conUsername $xmlPayload = @" <!--?xml version="1.0" encoding="UTF-8"?--> PayloadContent EmailAccountDescription Contoso Confidential EmailAccountName Confidential EmailAccountType EmailTypeIMAP EmailAddress $conUsername@contoso.com IncomingMailServerAuthentication EmailAuthPassword IncomingMailServerHostName outlook.office365.com IncomingMailServerPortNumber 993 IncomingMailServerUseSSL IncomingMailServerUsername $upn\$conUsername OutgoingMailServerAuthentication EmailAuthPassword OutgoingMailServerHostName smtp.office365.com OutgoingMailServerPortNumber 587 OutgoingMailServerUseSSL OutgoingMailServerUsername $upn OutgoingPasswordSameAsIncomingPassword PayloadDescription Configures Email settings PayloadDisplayName Contoso Confidential PayloadIdentifier com.apple.mail.managed.986F43CA-D8EE-481F-BDC1-873CC3729587 PayloadType com.apple.mail.managed PayloadUUID 986F43CA-D8EE-481F-BDC1-873CC3729587 PayloadVersion 1 SMIMEEnablePerMessageSwitch SMIMEEnabled SMIMEEncryptionEnabled SMIMESigningEnabled allowMailDrop disableMailRecentsSyncing PayloadDisplayName Untitled PayloadIdentifier MacBook-Pro.A07A9EDD-1358-4A3E-BD89-D31978778B3F PayloadRemovalDisallowed PayloadType Configuration PayloadUUID EF8E9924-D761-4F2F-B13F-E38012DCA40D PayloadVersion 1 "@ #endregion #region Build JSON Payload (Added by Michael Obernberger) $bytes = [System.Text.Encoding]::UTF8.GetBytes($xmlPayload) $encodedPayload =[Convert]::ToBase64String($bytes) $jsonConfig = @" { "@odata.type": "#microsoft.graph.iosCustomConfiguration", "displayName": "iOS - Confidential $name", "payloadName": "Confidential - $conUsername", "payloadFileName": "config.xml", "payload": "$encodedPayload" } "@ #endregion Add-DeviceConfigurationPolicy -Json $jsonConfig |