loading...
loading...
You will need to run the below as Administrator , if the use doesn’t have local admin you will need to change them to one then remove after ;
IMPORTANT NOTE: If these option are greyed out, it usually means that you didn’t run Outlook with administrative rights.
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Office\16.0\Outlook\Security DWORD: ObjectModelGuard Value: 2
As an alternative way, you can achieve the same result by altering your registry file in the following way:
There are three ways to forward mail from one user to another in Exchange
1 and 3 can be checked easily and there will be references of when this is done and not done usually in tickets , however users can enable Inbox rules by themselves then contact your later to disable the forward.
Here is how to check for forwarding or redirecting rules on mailbox in 365
foreach ($i in (Get-Mailbox -identity %USERNAME%))
{ Get-InboxRule -Mailbox $i.DistinguishedName | where {$_.ForwardTo} | fl MailboxOwnerID,Name,ForwardTo }
foreach ($i in (Get-Mailbox -identity %USERNAME%))
{ Get-InboxRule -Mailbox $i.DistinguishedName | where {$_.ReDirectTo} | fl MailboxOwnerID,Name,RedirectTo}
To Disable
Disable-InboxRule -Identity "%NAME OF RULE%" -Mailbox "%USERNAME"