Skip to content

Instantly share code, notes, and snippets.

@jsturtevant
Created August 29, 2019 14:51
Show Gist options
  • Save jsturtevant/b4fbe835b4de4af3e3a74f58563b9ead to your computer and use it in GitHub Desktop.
Save jsturtevant/b4fbe835b4de4af3e3a74f58563b9ead to your computer and use it in GitHub Desktop.
Add Service Principal to Azure AAD group
#https://stackoverflow.com/a/47769755/697126
$spn = Get-AzureADServicePrincipal -SearchString "yourSpName"
$group = Get-AzureADGroup -SearchString "yourGroupName"
Add-AzureADGroupMember -ObjectId $($group.ObjectId) -RefObjectId $($spn.ObjectId)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment