You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -96,6 +96,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
96
96
-`Get-PnPTenant` now uses nullable types for the properties that can return null if the property is not set or could not be retrieved. Beware that the property `PublicCdnOrigins` has been renamed to `PublicCdnOriginParsed `. All other property names will remain the same. [#4722](https://github.com/pnp/powershell/pull/4722)
97
97
- Removed `New-PnPMicrosoft365Group` setting the group visibility options twice when providing `-HideFromAddressLists` and/or `-HideFromOutlookClients` and adding logging around trying to set the group visibility [#4791](https://github.com/pnp/powershell/pull/4791)
98
98
- Visual Studio Code launch profiles have been cleaned up and restructured [#4808](https://github.com/pnp/powershell/pull/4804)
99
+
- The cmdlet `Get-PnPContainer` now has a new optional parameter `-ArchiveStatus` which allows filtering SharePoint Online Embedded containers by archival status [#4821](https://github.com/pnp/powershell/pull/4821)
@@ -50,6 +50,26 @@ Returns the properties of the specified container by using the container url
50
50
51
51
## PARAMETERS
52
52
53
+
### -ArchiveStatus
54
+
55
+
The ArchiveStatus parameter is used to display containers in various stages of archiving. The following states are supported:
56
+
- Archived: Displays containers in all archived states.
57
+
- RecentlyArchived: Displays containers in the "Recently archived" state.
58
+
- FullyArchived: Displays containers in the "Fully archived" state.
59
+
- Reactivating: Displays containers in the "Reactivating" state.
60
+
- NotArchived: Displays active containers
61
+
62
+
```yaml
63
+
Type: SPContainerArchiveStatusFilterProperties
64
+
Parameter Sets: (All)
65
+
66
+
Required: False
67
+
Position: Named
68
+
Default value: NotArchived
69
+
Accept pipeline input: False
70
+
Accept wildcard characters: False
71
+
```
72
+
53
73
### -Connection
54
74
55
75
Optional connection to be used by the cmdlet. Retrieve the value for this parameter by either specifying -ReturnConnection on Connect-PnPOnline or by executing Get-PnPConnection.
0 commit comments