I was given a long list of ObjectIds. Unfortunately these ObjectIds are for both Enterprise Applications and Service Principals.
So I load the CSV file and for each ObjectId I need to
- Determine ObjectType (EA or SPN)
- Get the Object's DisplayName
- Get Object's owners emails (comma separated)
The result should be CSV showing columns: ObjectId, ObjectType, DisplayName, Owners.
$csv = Import-Csv c:\data\cso-list.csv
$DisplayName=@()
foreach ($ObjectId in $csv) {
$DisplayName += (Get-AzureADServicePrincipal -ObjectId $ObjectId.ID | Select-Object ObjectType, DisplayName, ObjectId)
Get-AzureADServicePrincipalOwner -ObjectId $ObjectId.ID | Select Mail
$DisplayName += Get-AzureADServicePrincipalOwner -ObjectId $ObjectId.ID | Select Mail
}
$DisplayName | Export-Csv c:\data\cso-list-done.csv
I can do it either for EA or SPN but not for both. And even when using -ErrorAction SilentlyContinue I still get an error when for example ObjectId is for EA but query is for ServicePrincipal, and vice versa.
I also tried following but it did not help.
if (!(Get-AzADApplication -ObjectId $ObjectId -ErrorAction SilentlyContinue))
{
Get-AzureADServicePrincipal -ObjectId $ObjectId | select DisplayName
Get-AzureADServicePrincipalOwner -ObjectId $ObjectId | Select Mail
}
if (!(Get-AzADServicePrincipal -ObjectId $ObjectId -ErrorAction SilentlyContinue))
{
Get-AzureADApplication -ObjectId $ObjectId | Select DisplayName
Get-AzureADApplicationOwner -ObjectId $ObjectId | Select Mail
}
Can you please advise how to handle this? I'm sure there's an easy solution but I did not find it even after several hours. Thanks!
To determine the
ObjectType
whether it's service principal or application, you can run below PowerShell command:Response:
I have two app registrations named
AppReg01
andAppReg02
with Sridevi as Owner :In Enterprise applications tab, I have two service principals named
EntApp01
andEntApp02
with Venkat as Owner:To export required details to CSV file, I ran below PowerShell script and got response like this:
Response:
When I checked the CSV file, it has required details with columns: ObjectId, ObjectType, DisplayName, OwnerDisplayName, OwnerEmailAddress like this: