Hello @Jeff Lamb,
Thank you for posting your query on Microsoft Q&A.
I'm glad that you were able to resolve your issue and thank you for posting your solution so that others experiencing the same thing can easily reference this! Since the Microsoft Q&A community has a policy that "The question author cannot accept their own answer. They can only accept answers by others ", I'll repost your solution in case you'd like to "Accept " the answer.
Issue: How to remove multiple licenses from a security group when licenses depend on each other
Solution: Resolved by @Jeff Lamb.
# Define the group ID to remove licenses from
$groupId = "3343fcff-a8a5-4b70-9543-48c3cad059b3"
$group = Get-MgGroup -GroupId $groupId -Property AssignedLicenses
$licensesToRemove = $group.AssignedLicenses.SkuId
# Create the parameters for the cmdlet
$params = @{
addLicenses = @() # Empty array for addLicenses
removeLicenses = $licensesToRemove
}
Set-MgGroupLicense -GroupId $groupId -BodyParameter $params
If you have any other questions or are still running into more issues, please let me know. Thank you again for your time and patience throughout this issue.
Please remember to "Accept Answer" if any answer/reply helped, so that others in the community facing similar issues can easily find the solution.
Thanks,
Raja Pothuraju.