Forum Discussion
Boe Dillard
Apr 10, 2023Iron Contributor
Can't Enable-OrganizationCustomization
S C:\WINDOWS\system32> Enable-OrganizationCustomization The following error was generated when " Set-Organization $RoleOrganizationHierarchicalPath ` -TargetServicePlan $TargetServicePlan ` -IsUp...
Andres-Bohren
Apr 13, 2023Iron Contributor
Hi Boe Dillard
Try this one
Connect-ExchangeOnline
$OrgConfig = Get-OrganizationConfig
If ($OrgConfig.isDehydrated -eq $True)
{
Write-Host "OrganizationConfig = True"
#Enable-OrganizationCustomization
} else {
Write-Host "OrganizationConfig = False"
}
Regards
Andres Bohren