Skip to content

[AutoPublish] main to live - 07/08 15:33 PDT | 07/09 04:03 IST #924

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
Jul 8, 2025
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
23 changes: 22 additions & 1 deletion sharepoint/sharepoint-ps/sharepoint-online/Set-SPOTenant.md
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,7 @@ Set-SPOTenant
[-ReduceTempTokenLifetimeValue <Int32>]
[-RequireAcceptingAccountMatchInvitedAccount <Boolean>]
[-RequireAnonymousLinksExpireInDays <Int32>]
[-RequireOrganizationLinksExpireInDays <Int32>]
[-RestrictedAccessControlforSitesErrorHelpLink <String>]
[-ResyncContentSecurityPolicyConfigurationEntries <Boolean>]
[-ReSyncTenantPrivacyProfile <SwitchParameter>]
Expand Down Expand Up @@ -1779,7 +1780,27 @@ Accept wildcard characters: False

### -RequireAnonymousLinksExpireInDays

Specifies all anonymous links that have been created (or will be created) will expire after the set number of days.
Specifies the upper bound for user-created anonymous link expiration periods. All links created after setting this policy will expire by the end of a period spanning the set number of days.

The value can be from 0 to 730 days.

To remove the expiration requirement, set the value to zero (0).

```yaml
Type: Int32
Parameter Sets: (All)
Aliases:
Applicable: SharePoint Online
Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```

### -RequireOrganizationLinksExpireInDays

Specifies the upper bound for user-created organization link expiration periods. All links created after setting this policy will expire by the end of a period spanning the set number of days.

The value can be from 0 to 730 days.

Expand Down
Loading