Skip to content

Instantly share code, notes, and snippets.

@torgro
Created February 1, 2017 09:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save torgro/80c55bc69aa7863770bb4442621d81f6 to your computer and use it in GitHub Desktop.
Save torgro/80c55bc69aa7863770bb4442621d81f6 to your computer and use it in GitHub Desktop.
Set-Mailbox -Identity $User -GrantSendOnBehalfTo @{remove=$UserAccess}
$setMailbox = @{
Identity = $User
GrantSendOnBehalfTo = @{
remove = $UserAccess
}
WhatIf = $true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment