Skip to content

Commit d7ed980

Browse files
author
harperhults
committed
add descriptions, change setting name
1 parent 505ede5 commit d7ed980

File tree

2 files changed

+96
-6
lines changed

2 files changed

+96
-6
lines changed

sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Set-SPOSite.md

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ Set-SPOSite [-Identity] <SpoSitePipeBind> [-Owner <String>] [-Title <String>] [-
5050
[-DefaultLinkPermission <SharingPermissionType>] [-DefaultLinkToExistingAccess <Boolean>]
5151
[-DefaultLinkToExistingAccessReset] [-AnonymousLinkExpirationInDays <Int32>]
5252
[-OverrideTenantAnonymousLinkExpirationPolicy <Boolean>] [-ExternalUserExpirationInDays <Int32>]
53-
[-OverrideTenantExternalUserExpirationPolicy <Boolean>] [-OrganizationLinkMaxExpirationInDays <Int32>]
54-
[-OrganizationLinkRecommendedExpirationInDays <Int32>]
53+
[-OverrideTenantExternalUserExpirationPolicy <Boolean>] [-OrganizationSharingLinkMaxExpirationInDays <Int32>]
54+
[-OrganizationSharingLinkRecommendedExpirationInDays <Int32>]
5555
[-OverrideTenantOrganizationLinkExpirationPolicy <Boolean>] [-InformationBarriersMode <String>]
5656
[-BlockDownloadLinksFileType <BlockDownloadLinksFileTypes>]
5757
[-OverrideBlockUserInfoVisibility <SiteUserInfoVisibilityPolicyValue>]
@@ -1593,8 +1593,13 @@ Accept pipeline input: False
15931593
Accept wildcard characters: False
15941594
```
15951595

1596-
### -OrganizationLinkMaxExpirationInDays
1597-
{{ Fill OrganizationLinkMaxExpirationInDays Description }}
1596+
### -OrganizationSharingLinkMaxExpirationInDays
1597+
1598+
Specifies the maximum number of days before organization sharing links expire for this site.
1599+
1600+
The value can be from 7 to 720 days.
1601+
1602+
To remove the expiration requirement, set the value to zero (0).
15981603

15991604
```yaml
16001605
Type: Int32
@@ -1608,8 +1613,13 @@ Accept pipeline input: False
16081613
Accept wildcard characters: False
16091614
```
16101615

1611-
### -OrganizationLinkRecommendedExpirationInDays
1612-
{{ Fill OrganizationLinkRecommendedExpirationInDays Description }}
1616+
### -OrganizationSharingLinkRecommendedExpirationInDays
1617+
1618+
Specifies the recommended number of days before organization sharing links expire for this site. This setting provides a suggested expiration period to users when they create sharing links.
1619+
1620+
The value can be from 7 to 720 days and must be less than or equal to the maximum expiration value set by OrganizationSharingLinkMaxExpirationInDays.
1621+
1622+
To remove the recommendation, set the value to zero (0).
16131623

16141624
```yaml
16151625
Type: Int32

sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Set-SPOTenant.md

Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1812,6 +1812,46 @@ Accept pipeline input: False
18121812
Accept wildcard characters: False
18131813
```
18141814

1815+
### -CoreOrganizationSharingLinkMaxExpirationInDays
1816+
1817+
Specifies the maximum number of days before organization sharing links expire for all SharePoint sites (not including OneDrive sites).
1818+
1819+
The value can be from 7 to 720 days.
1820+
1821+
To remove the expiration requirement, set the value to zero (0).
1822+
1823+
```yaml
1824+
Type: System.Int32
1825+
Parameter Sets: (All)
1826+
Aliases:
1827+
1828+
Required: False
1829+
Position: Named
1830+
Default value: None
1831+
Accept pipeline input: False
1832+
Accept wildcard characters: False
1833+
```
1834+
1835+
### -CoreOrganizationSharingLinkRecommendedExpirationInDays
1836+
1837+
Specifies the recommended number of days before organization sharing links expire for all SharePoint sites (not including OneDrive sites). This setting provides a suggested expiration period to users when they create sharing links.
1838+
1839+
The value can be from 7 to 720 days and must be less than or equal to the maximum expiration value set by CoreOrganizationSharingLinkMaxExpirationInDays.
1840+
1841+
To remove the recommendation, set the value to zero (0).
1842+
1843+
```yaml
1844+
Type: System.Int32
1845+
Parameter Sets: (All)
1846+
Aliases:
1847+
1848+
Required: False
1849+
Position: Named
1850+
Default value: None
1851+
Accept pipeline input: False
1852+
Accept wildcard characters: False
1853+
```
1854+
18151855
### -CoreRequestFilesLinkEnabled
18161856

18171857
Enable or disable the Request files link on the core partition for all SharePoint sites (not including OneDrive sites). If this value is not set, Request files will only show for OneDrives with Anyone links enabled.
@@ -4154,6 +4194,46 @@ Accept pipeline input: False
41544194
Accept wildcard characters: False
41554195
```
41564196

4197+
### -OneDriveOrganizationSharingLinkMaxExpirationInDays
4198+
4199+
Specifies the maximum number of days before organization sharing links expire for all OneDrive sites.
4200+
4201+
The value can be from 7 to 720 days.
4202+
4203+
To remove the expiration requirement, set the value to zero (0).
4204+
4205+
```yaml
4206+
Type: System.Int32
4207+
Parameter Sets: (All)
4208+
Aliases:
4209+
4210+
Required: False
4211+
Position: Named
4212+
Default value: None
4213+
Accept pipeline input: False
4214+
Accept wildcard characters: False
4215+
```
4216+
4217+
### -OneDriveOrganizationSharingLinkRecommendedExpirationInDays
4218+
4219+
Specifies the recommended number of days before organization sharing links expire for all OneDrive sites. This setting provides a suggested expiration period to users when they create sharing links.
4220+
4221+
The value can be from 7 to 720 days and must be less than or equal to the maximum expiration value set by OneDriveOrganizationSharingLinkMaxExpirationInDays.
4222+
4223+
To remove the recommendation, set the value to zero (0).
4224+
4225+
```yaml
4226+
Type: System.Int32
4227+
Parameter Sets: (All)
4228+
Aliases:
4229+
4230+
Required: False
4231+
Position: Named
4232+
Default value: None
4233+
Accept pipeline input: False
4234+
Accept wildcard characters: False
4235+
```
4236+
41574237
### -OneDriveRequestFilesLinkEnabled
41584238

41594239
Enable or disable the Request files link on the OneDrive partition for all OneDrive sites. If this value is not set, the Request files link will only show for OneDrives with Anyone links enabled.

0 commit comments

Comments
 (0)