Commands › Exchange Online

Set-ExchangeAssistanceConfig

Exchange Online ExchangeOnlineManagement Set-*

Modify the Microsoft Exchange Help configurations for your organization.

Quick start script

# Set-ExchangeAssistanceConfig — quick start (serv365.ai)
# 1. Connect (app-only shown; interactive: omit the certificate parameters)
Connect-ExchangeOnline -CertificateThumbprint $thumb -AppId $appId -Organization $org

# 2. Capture the current state first — you cannot roll back what you never recorded
$before = Get-ExchangeAssistanceConfig
$before | Format-List

# 3. Make the change (dry run first)
Set-ExchangeAssistanceConfig  -WhatIf
Set-ExchangeAssistanceConfig

# 4. Verify and diff
$after = Get-ExchangeAssistanceConfig
Compare-Object ($before | Out-String) ($after | Out-String)

Syntax

Set-ExchangeAssistanceConfig [[-Identity] <OrganizationIdParameter>]
 [-CommunityLinkDisplayEnabled <Boolean>]
 [-CommunityURL <Uri>]
 [-Confirm]
 [-ControlPanelFeedbackEnabled <Boolean>]
 [-ControlPanelFeedbackURL <Uri>]
 [-ControlPanelHelpURL <Uri>]
 [-DomainController <Fqdn>]
 [-ExchangeHelpAppOnline <Boolean>]
 [-ManagementConsoleFeedbackEnabled <Boolean>]
 [-ManagementConsoleFeedbackURL <Uri>]
 [-ManagementConsoleHelpURL <Uri>]
 [-OWAFeedbackEnabled <Boolean>]
 [-OWAFeedbackURL <Uri>]
 [-OWAHelpURL <Uri>]
 [-OWALightFeedbackEnabled <Boolean>]
 [-OWALightFeedbackURL <Uri>]
 [-OWALightHelpURL <Uri>]
 [-PrivacyLinkDisplayEnabled <Boolean>]
 [-PrivacyStatementURL <Uri>]
 [-WhatIf]
 [<CommonParameters>]

Parameters (21)

ParameterTypeRequiredWhat it controls
-Identity OrganizationIdParameter This parameter is reserved for internal Microsoft use.
-CommunityLinkDisplayEnabled Boolean This parameter is reserved for internal Microsoft use.
-CommunityURL Uri This parameter is reserved for internal Microsoft use.
-Confirm SwitchParameter The Confirm switch specifies whether to show or hide the confirmation prompt. How this switch affects the cmdlet depends on whether the cmdlet requires confirmation before proceeding.
-ControlPanelFeedbackEnabled Boolean This parameter is reserved for internal Microsoft use.
-ControlPanelFeedbackURL Uri This parameter is reserved for internal Microsoft use.
-ControlPanelHelpURL Uri The ControlPanelHelpURL parameter specifies the URL where help for the Exchange admin center (EAC) is hosted.
-DomainController Fqdn The DomainController parameter specifies the domain controller that's used by this cmdlet to read data from or write data to Active Directory. You identify the domain controller by its fully qualified domain name...
-ExchangeHelpAppOnline Boolean The ExchangeHelpAppOnline specifies whether your organization uses the public help that's hosted by Microsoft. Valid values are:
-ManagementConsoleFeedbackEnabled Boolean This parameter is reserved for internal Microsoft use.
-ManagementConsoleFeedbackURL Uri This parameter is reserved for internal Microsoft use.
-ManagementConsoleHelpURL Uri The ManagementConsoleHelpURL parameter specifies the URL where help for the Exchange Management Console (EMC) is hosted.
-OWAFeedbackEnabled Boolean This parameter is reserved for internal Microsoft use.
-OWAFeedbackURL Uri This parameter is reserved for internal Microsoft use.
-OWAHelpURL Uri The OWAHelpURL parameter specifies the URL for where help for the standard version of Outlook on the web is hosted.
-OWALightFeedbackEnabled Boolean This parameter is reserved for internal Microsoft use.
-OWALightFeedbackURL Uri This parameter is reserved for internal Microsoft use.
-OWALightHelpURL Uri The OWALightHelpURL parameter specifies the URL for where help for the light version of Outlook on the web is hosted.
-PrivacyLinkDisplayEnabled Boolean This parameter is reserved for internal Microsoft use.
-PrivacyStatementURL Uri This parameter is reserved for internal Microsoft use.
-WhatIf SwitchParameter The WhatIf switch shows what the command does without making any changes. You don't need to specify a value with this switch.

Reference facts derived from Microsoft documentation, © Microsoft, licensed CC BY 4.0; restructured with original guidance by serv365.ai.