Jun 07 2017 04:12 AM
Jun 07 2017 10:56 AM
Unless I'm missing something, the Subscriber link type is what you should look at:
Get-UnifiedGroupLinks firstgroup -LinkType Subscriber
Jun 11 2017 03:59 AM
Jun 20 2017 05:56 AM
Jun 20 2017 07:07 AM
Jun 20 2017 03:09 PM
SolutionYou can use the Add-UnifiedGroupLinks cmdlet for that, simply set the member type as subscriber. It can be both a member and a subscriber, comparing those two will give you the list of which members are subscribers, etc.
Jun 21 2017 01:05 PM
Should have did a bit more research on those commands, didnt realize it treated Members/Subscribers differently!
Quite simply:
Add a user as a member only:
Add-UnifiedGroupLinks -Identity GROUP -LinkType Members -Links user@email.com
Add a user as a member or subscriber, and/or change a member to a member+subscriber
Add-UnifiedGroupLinks -Identity GROUP -LinkType Subscribers -Links user@email.com
Remove a user from the group:
Remove-UnifiedGroupLinks -Identity GROUP -LinkType Members -Links user@email.com
Remove a subscription, but not a membership
Remove-UnifiedGroupLinks -Identity GROUP -LinkType Subscribers -Links user@email.com
Nov 05 2018 01:58 AM
Would be nice to have a UI for this to be managed..
Jun 20 2017 03:09 PM
SolutionYou can use the Add-UnifiedGroupLinks cmdlet for that, simply set the member type as subscriber. It can be both a member and a subscriber, comparing those two will give you the list of which members are subscribers, etc.