Public/Get-AADDevice.ps1
<#
.COPYRIGHT Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license. See https://github.com/microsoftgraph/powershell-intune-samples/blob/master/LICENSE for license information. #> Function Get-AADDevice() { <# .SYNOPSIS This function is used to get an AAD Device from the Graph API REST interface .DESCRIPTION The function connects to the Graph API Interface and gets an AAD Device registered with AAD .EXAMPLE Get-AADDevice -DeviceID $DeviceID Returns an AAD Device from Azure AD .NOTES NAME: Get-AADDevice #> [cmdletbinding()] param ( $DeviceID ) # Defining Variables $graphApiVersion = "v1.0" $Resource = "devices" try { $uri = "https://graph.microsoft.com/$graphApiVersion/$($Resource)?`$filter=deviceId eq '$DeviceID'" (Invoke-RestMethod -Uri $uri -Headers $authToken -Method Get).value } 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)" break } } |