Commands › Exchange Online
Set-ExchangeAssistanceConfig
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)
Reference facts derived from Microsoft documentation, © Microsoft, licensed CC BY 4.0; restructured with original guidance by serv365.ai.