Forum Discussion
SHollist
Dec 10, 2021Copper Contributor
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]. ...
- Dec 10, 2021Words 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
surajbudhani
Microsoft
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
Run the following command by using $Null instead:
Set-OrganizationRelationship -Identity "[identity name]" -TargetOWAUrl $Null
SHollist
Dec 13, 2021Copper Contributor
Thank you. That worked!