Set-OrganizationConfig -PreviewOutlookAddinLaunchEventsEnabled $true
PS C:\Users\Administrator> Set-OrganizationConfig -PreviewOutlookAddinLaunchEventsEnabled $true
Set-OrganizationConfig : A parameter cannot be found that matches parameter name 'PreviewOutlookAddinLaunchEventsEnabled'.
At line:1 char:24
+ Set-OrganizationConfig -PreviewOutlookAddinLaunchEventsEnabled $true
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : InvalidArgument: (:) [Set-OrganizationConfig], ParameterBindingException
+ FullyQualifiedErrorId : NamedParameterNotFound,Set-OrganizationConfig
Hi,
The error you're seeing—A parameter cannot be found that matches parameter name 'PreviewOutlookAddinLaunchEventsEnabled'
—indicates that the parameter you're trying to use is not recognized by the Set-OrganizationConfig
cmdlet in your current environment.
Parameter Not Available in Your Exchange Version:
-PreviewOutlookAddinLaunchEventsEnabled
is not listed among the supported parameters for Set-OrganizationConfig
in the official documentation [1].Permissions or Role Limitations:
Typo or Deprecated Parameter:
-EnableOutlookEvents
, which is supported.Get-OrganizationConfig
: Run this to inspect current settings and confirm which parameters are available.Please verify if this helps clarify the issue.
Thanks and best regards,
Daniele
Note: This response was prepared with support from Copilot to ensure clarity and completeness.