• 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Granting SendAs Permissions for a distribution group in Microsoft Office365
#1
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
  Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  How to update user access permissions without logging off / on Mark 0 4,434 16-02-2014, 06:03 AM
Last Post: Mark
  Using Group Policy to set a user or group as a local administrator on client PCs Mark 0 7,202 07-10-2012, 09:26 PM
Last Post: Mark

Forum Jump: