Granting SendAs Permissions for a distribution group in Microsoft Office365 - Printable Version +- howtothings.co.uk (https://www.howtothings.co.uk) +-- Forum: Computing (https://www.howtothings.co.uk/forumdisplay.php?fid=4) +--- Forum: Operating System and Software Support (https://www.howtothings.co.uk/forumdisplay.php?fid=17) +--- Thread: Granting SendAs Permissions for a distribution group in Microsoft Office365 (/showthread.php?tid=1370) |
Granting SendAs Permissions for a distribution group in Microsoft Office365 - Mark - 16-02-2014 Granting Send As Permissions for a distribution group in Microsoft Office365 The creation of new users and distribution groups for addition emails can be done online but I couldn’t find anywhere through the website to grant send as permissions. You can manage Office365 through PowerShell using Exchange Management Shell commands. Install Windows PowerShell and for the first time run it as administrator and run the command: Code: set-executionpolicy remotesigned Open PowerShell 1. Run the following command & log in when the box pops up. (365 login) Code: $LiveCred = Get-Credential 2. Run the following command: Code: $Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://ps.outlook.com/powershell/ -Credential $LiveCred -Authentication Basic -AllowRedirection 3. Run the following command: Code: Import-PSSession $Session A progress indicator appears that shows the importing of commands used in the cloud-based service into the client-side session of your local computer. When this process is complete, you can run these commands. Send as permissions on a distribution group: http://help.outlook.com/en-us/140/ff852815.aspx Basically: Add-RecipientPermission "group name" -AccessRights SendAs -Trustee "person" then run to check: Get-RecipientPermission |