Sign up for Office 365
Learn more about Office 365
If you are using supervision policies in Microsoft Live@edu, you need to document them prior to the upgrade to Microsoft Office 365 for education, and re-create them after the upgrade.
With Live@edu, Microsoft Exchange Online includes four supervision policies: bad words, anti-bullying, closed campus inbound, and closed campus outbound. By default, the anti-bullying rule is enabled, and the other supervision policies are disabled. With Exchange Online in Office 365, you must create transport rules to implement any supervision policies you want.
Document supervision policy settings prior to the upgrade Re-create supervision policies after the upgrade
Document supervision policy settings prior to the upgrade
Re-create supervision policies after the upgrade
Here are the steps for documenting your settings before the upgrade to Office 365. Save screenshots and output files so you can use them after the upgrade.
Here's an example:
Get-TransportRule | export-csv C:\Desktop\EduSupervisionPolicies.csv
2. To document individual exceptions to closed campus rules as well as anti-bullying rules, run the following commands: $header = "Mailbox,Tag,EmailAddress"; $header | out-file ClosedCampusExceptions.csv; foreach ($mb in Get-Mailbox -ResultSize unlimited) { foreach($entry in Get-SupervisionListEntry -Identity $mb.Identity) { $line = $mb.Identity + "," + $entry.Tag + "," + $entry.EntryName; $line | out-file ClosedCampusExceptions.csv -append; } }
2. To document individual exceptions to closed campus rules as well as anti-bullying rules, run the following commands:
$header = "Mailbox,Tag,EmailAddress"; $header | out-file ClosedCampusExceptions.csv; foreach ($mb in Get-Mailbox -ResultSize unlimited) { foreach($entry in Get-SupervisionListEntry -Identity $mb.Identity) { $line = $mb.Identity + "," + $entry.Tag + "," + $entry.EntryName; $line | out-file ClosedCampusExceptions.csv -append; } }
To implement these supervision policies in Office 365, create your own transport rules for each policy that you use. Note that there is a limit of 100 transport rules. For details, see Create a New Rule.
1 out of 1 people found this post helpful.