Ok so I am officially at the end of my tether once again with Office 365 and its maddening ways.
So I am trying to give a user permission to send as a distribution list.
I have followed all the advice and links given here:
http://community.office365.com/en-us/forums/146/p/45650/156191.aspx#156191
I have run the following commands in PowerShell without issue:
$livecred = Get-Credential
$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://ps.outlook.com/powershell/ -Credential $LiveCred -Authentication Basic -AllowRedirection
Connect-MsolService
Add-RecipientPermission <distribution group> -AccessRights SendAs -Trustee <username>
I get the error:
Add-RecipientPermission : The term 'Add-RecipientPermission' is not recognized
as the name of a cmdlet, function, script file, or operable program. Check the
spelling of the name, or if a path was included, verify that the path is
correct and try again.
At line:1 char:1
+ Add-RecipientPermission enquiries -AccessRights SendAs -Trustee keeley.edge
+ ~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : ObjectNotFound: (Add-RecipientPermission:String)
[], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException
Why when every bit of documentation says I can do this? Can anyone help?