Forum Discussion

SHollist's avatar
SHollist
Copper Contributor
Dec 10, 2021

Set TargetOWAURL back to "None".

I have found lots of references to setting the "TargetOWAurl" setting with this command:   Set-OrganizationRelationship -Identity "[identity name]" -TargetOWAUrl https://outlook.com/owa/[domain].  ...
  • surajbudhani's avatar
    Dec 10, 2021
    Words like Null or None in a PowerShell script when in PowerShell are simply Strings. PowerShell will consider Null is value of URL that you want to specify.

    Run the following command by using $Null instead:
    Set-OrganizationRelationship -Identity "[identity name]" -TargetOWAUrl $Null

Resources