Ackles
asked on
set-msolgroup Calendar permissions
Hello,
When I run the command:
Get-MsolGroup | Where-Object {$_.DisplayName -like "deuts*"} | ft -AutoSize
I get in GroupType: DistributionList
How can I set for this group Everyone as Reviewer?
When I run the command:
Get-MsolGroup | Where-Object {$_.DisplayName -like "deuts*"} | ft -AutoSize
I get in GroupType: DistributionList
How can I set for this group Everyone as Reviewer?
ASKER
Thanks,
I ran the command it shows Name, Alias, ServerName & AccessType
So it works.
I ran the command it shows Name, Alias, ServerName & AccessType
So it works.
Well, the bad news is that you cannot control the individual folder permissions for "modern" Office 365 Groups. Every user that's a member of the Group has the same level of permissions. The only possible thing you can do is to try the CalendarMemberReadOnly setting, which supposedly restricts the permissions on non-owners. However, I've never seen it working properly, so dont get your hopes high :)
Set-UnifiedGroup groupname -CalendarMemberReadOnly
ASKER
What I want is that everyone in the company should have Read rights on the calendar, that is they can see the appointments... is that possible?
I have only 2 people who are member of this group, but I want that all users without joining the group should be able to read the calendar....
If not, what is the way out to make it happen?
I have only 2 people who are member of this group, but I want that all users without joining the group should be able to read the calendar....
If not, what is the way out to make it happen?
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
ASKER
Thanks!
Open in new window