Skip to content

Commit 806c4c9

Browse files
authored
Merge branch 'master' into patch-367
2 parents ec540a9 + 31c28d2 commit 806c4c9

File tree

2 files changed

+22
-1
lines changed

2 files changed

+22
-1
lines changed

sharepoint/sharepoint-ps/sharepoint-online/Get-SPOSiteRenameState.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ This example returns rename jobs that are in InProgress state.
6262

6363
```powershell
6464
$tenantRenameJobId = (Get-SPOTenantRenameStatus).RenameJobId
65-
Get-SPOSiteRenameState -ParentOperationId $tenantRenameJob
65+
Get-SPOSiteRenameState -ParentOperationId $tenantRenameJobId
6666
```
6767

6868
This example returns rename jobs that were initiated by a tenant rename.

sharepoint/sharepoint-ps/sharepoint-online/Set-SPOTenant.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,7 @@ Set-SPOTenant [-ApplyAppEnforcedRestrictionsToAdHocRecipients <Boolean>]
102102
[-SyncAadB2BManagementPolicy <Boolean>]
103103
[-StopNew2010Workflows <Boolean>]
104104
[-BlockSendLabelMismatchEmail <Boolean>]
105+
[-DisableOutlookPSTVersionTrimming <Boolean>]
105106
[<CommonParameters>]
106107
```
107108

@@ -1827,6 +1828,26 @@ Accept pipeline input: False
18271828
Accept wildcard characters: False
18281829
```
18291830

1831+
### -DisableOutlookPSTVersionTrimming
1832+
1833+
As communicated in MC256835 (May ’21), starting August 16th 2021 the service will start retaining 30 days worth of versions for any PST files stored in OneDrive for Business and SharePoint Online team site document libraries. This change will prevent cases of previous versions of PST files quickly consuming available storage. The change only impacts previous versions of PST files stored in your document library storage. As a best practice, PST files should not be uploaded on OneDrive for Business and SharePoint Online team site document libraries due to the impact on storage and network bandwidth.
1834+
1835+
If you wish to opt-out of this policy change, you can use the parameter provided below. You will have until August 13th 2021, to opt-out. This is a one time opt-out operation. If you don’t opt-out by the deadline, the new behavior will automatically be enabled. The opt-out option for the cmdlet will have no effect after the deadline. Opt-out only applies to existing document libraries and does not apply to new doclibs created after August 13th 2021.
1836+
1837+
PARAMVALUE: $true | $false
1838+
1839+
```yaml
1840+
Type: Boolean
1841+
Parameter Sets: (All)
1842+
Aliases:
1843+
Applicable: SharePoint Online
1844+
Required: False
1845+
Position: Named
1846+
Default value: False
1847+
Accept pipeline input: False
1848+
Accept wildcard characters: False
1849+
```
1850+
18301851

18311852

18321853
### CommonParameters

0 commit comments

Comments
 (0)