Skip to content

Update Set-OwaMailboxPolicy.md #12210

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Oct 21, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions exchange/exchange-ps/exchange/Set-OwaMailboxPolicy.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ Set-OwaMailboxPolicy [-Identity] <MailboxPolicyIdParameter>
[-OrganizationEnabled <Boolean>]
[-OutboundCharset <OutboundCharsetOptions>]
[-OutlookBetaToggleEnabled <Boolean>]
[-OutlookDataFile <OutlookDataFileFeatureState>]
[-OutlookNewslettersAccessLevel <OutlookNewslettersAccessLevel>]
[-OutlookNewslettersReactions <OutlookNewslettersFeatureState>]
[-OutlookNewslettersShowMore <OutlookNewslettersFeatureState>]
Expand Down Expand Up @@ -1759,6 +1760,31 @@ Accept pipeline input: False
Accept wildcard characters: False
```

### -OutlookDataFile
This parameter is available only in the cloud-based service.

The OutlookDataFile paramater specifies what users can do with .pst files in the new Outlook for Windows. Valid values are:

- Allow: The defaul value. Users can open .pst files, import from a .pst file to a mailbox, export from a mailbox to a .pst file, and copy items to and from .pst files.
- NoExport: Users can't export from a mailbox to a .pst file.
- NoExportNoGrow: Users can't export from a mailbox to a .pst file, or copy items from a mailbox to a .pst file.
- NoExportNoOpen: Users can't export from a mailbox to a .pst file, or open new .pst files.
- NoExportNoOpenNoGrow: Users can't export from a mailbox to a .pst file, copy items from a mailbox to a .pst file, or open new .pst files.
- Deny: Users can't open new .pst files, import from a .pst file to a mailbox, export from a mailbox to a .pst file, or copy items to and from .pst files.

```yaml
Type: OutlookDataFileFeatureState
Parameter Sets: (All)
Aliases:
Applicable: Exchange Online

Required: False
Position: Named
Default value: Allow
Accept pipeline input: False
Accept wildcard characters: False
```

### -OutlookNewslettersReactions
This parameter is available only in the cloud-based service.

Expand Down