Jump to content

Recommended Posts

Posted

How do I go about setting up HAP to use our new Office 365 mail settings, not fussed about the live tile (Although it would be nice) but more for the helpdesk.

 

Thankyou!

Posted

Fixed, had to add SendAs permission to helpdesk account via powershell using:

 

Set-ExecutionPolicy RemoteSigned - Must be set via powershell

 

$LiveCred = Get-Credential - Enter details

 

 

$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://ps.outlook.com/powershell/ -Credential $LiveCred -Authentication Basic -AllowRedirection

 

 

Import-PSSession $Session

 

 

Add-RecipientPermission "Admin" -AccessRights SendAs -Trustee "Helpdesk"

  • 3 years later...
Posted

@fairm010 trying to get the same working here but struggling. Would the powershell script need to be as below?

Set-ExecutionPolicy RemoteSigned

$LiveCred = Get-Credential

$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://ps.outlook.com/powershell/ -Credential $LiveCred -Authentication Basic -AllowRedirection

Import-PSSession $Session

Add-RecipientPermission "Admin" -AccessRights SendAs -Trustee "Helpdesk"

 

Do the words admin and helpdesk stay like that or should I replace these with account names I want to use?

Don't suppose you can share what you entered in the SMTP Server line?

Mine currently reads

Posted
Unfortunately we moved away from HAP in favour of Foldr and now use Spiceworks for Helpdesk across our MAT. Sorry I can't be any more help!
  • Thanks 1

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 account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...