Using New Outlook on Windows for professional communication and productivity
No. Outlook does not provide a way to have a task pane pinned by default for all users.
What is supported is:
- Enable pinning support in the add-in manifest so users can pin the task pane themselves.
- Unified manifest for Microsoft 365: set
"pinnable": trueon the action that opens the task pane. - Add-in only manifest: add
<SupportsPinning>true</SupportsPinning>to the<Action>for the task pane button.
- Unified manifest for Microsoft 365: set
- Automatically open a task pane by default is a different feature from pinning.
- Unified manifest: set the action
"view"to"Office.AutoShowTaskpaneWithDocument". - Add-in only manifest: set
<TaskpaneId>Office.AutoShowTaskpaneWithDocument</TaskpaneId>.
- Unified manifest: set the action
Important limitations:
- Pinning is supported in Message Compose and Message Read modes, but it does not carry across modes.
- If the add-in is published to Microsoft Marketplace and uses a pinnable task pane, the pinned content must change based on the currently selected message or appointment.
- There is also a Microsoft Q&A answer stating there is no admin capability to pin an app to the Outlook sidebar for all users by default; users must pin it manually.
So the finding is correct: default pinning is not available. Only pinning support can be declared in the manifest, after which the user pins it manually.