networkmangler Posted April 23, 2020 Posted April 23, 2020 Hello We have Office 365 groups for all our teaching groups with the relevant teachers/staff added Currently when a teacher emails the Office 365 group the email goes to the group mail box (not to the individual members of that groups inbox). I have been told this is causing an issue because staff/students are not checking their groups mailboxes so are missing emails I have pointed out to staff/students that they can opt in to getting it sent to their inbox by going to the group and pressing “follow in inbox”. I have been told students won’t do this so the issue still remains I can click on the group in Office365 admin and there is an option to “send copies of group conversations and events to group members” Is there a way of bulk enabling this for all our groups (we have loads)? I don’t want to spend hours ticking it on individual groups manually
BroganOs Posted April 24, 2020 Posted April 24, 2020 We have the same problem. I did a bit of searching a few months ago about it and I’m pretty sure I discovered that its an intended feature. Where is the option to send copies to all members?
DrCheese Posted April 24, 2020 Posted April 24, 2020 Turn this on in the 365 admin console to force them to receive messages to their inboxes (ah my bad, you're asking for a powershell method of doing the above! Would be good to know too)
psydii Posted April 24, 2020 Posted April 24, 2020 Something like this should do it: foreach ($person in (get-unifiedgrouplinks [email protected] -linktype member)) {add-unifiedgrouplinks -identity [email protected] -linktype subscriber -links $person.name} 1
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now