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
+11-1Lines changed: 11 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -30,6 +30,9 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
30
30
- Added `Get-PnPTenantRestrictedSearchMode` and `Set-PnPTenantRestrictedSearchMode` cmdlets to enable and set up Restricted SharePoint Search. [#3976](https://github.com/pnp/powershell/pull/3976)
31
31
- Added `Get-PnPTenantInternalSetting` cmdlet to retrieve internal tenant settings not exposed via CSOM SDK. [#3902](https://github.com/pnp/powershell/pull/3902)
32
32
- Added `Add-PnPHomeSite` cmdlet to add a home site to your tenant. [#3989](https://github.com/pnp/powershell/pull/3989)
33
+
- Added `Get-PnPPageSchedulingEnabled` cmdlet to get the state of the modern page schedule feature in the library. [PR](https://github.com/pnp/powershell/commit/4ac757fc2072233529b38b2b39c36ea6b941e003)
34
+
- Added `-IncludeSensitivityLabels` parameter to `Get-PnPMicrosoft365Group` cmdlet to retrieve sensitivity labels assigned to M365 Groups. [#3991](https://github.com/pnp/powershell/pull/3991)
35
+
- Added `Get-PnPFileSensitivityLabelInfo` cmdlet to retrieve sensitivity label information about a file in a SharePoint site. [#3994](https://github.com/pnp/powershell/pull/3994)
33
36
34
37
### Fixed
35
38
@@ -39,15 +42,21 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
39
42
- Fixed NullDereferenceException happening when an exception is logged in PnPConnectedCmdlet but the connection passed through -Connection parameter is not the last one. [#3885](https://github.com/pnp/powershell/pull/3885)
40
43
- Fixed NullDereferenceException in `Get-PnPUserProfileProperty` cmdlet when the user profile doesn't exist, showing a better error message. [#3891](https://github.com/pnp/powershell/pull/3891)
41
44
- Fixed the dev build process on Mac OS devices. [#3907](https://github.com/pnp/powershell/pull/3907)
45
+
- Fixed `Get-PnPContainer` cmdlet to also handle pagination in case of large no. of containers in a tenant. [#3990](https://github.com/pnp/powershell/pull/3990)
46
+
- Fixed `New-PnPTeamsTeam` cmdlet to better handle error specifically such as `Conflict (409): Team already exists`. [#3992](https://github.com/pnp/powershell/pull/3992)
42
47
43
-
## Changed
48
+
###Changed
44
49
- Renamed `Get-PnPSiteFileVersionExpirationReportJobProgress` to `Get-PnPSiteFileVersionExpirationReportJobStatus`[#3828](https://github.com/pnp/powershell/pull/3828)
45
50
- Renamed `Get-PnPSiteVersionPolicyProgress` to `Get-PnPSiteVersionPolicyStatus`[#3828](https://github.com/pnp/powershell/pull/3828)
46
51
-`Remove-PnPGroupMember` cmdlet now supports removing members from pipeline. [#3955](https://github.com/pnp/powershell/pull/3955)
47
52
- Changed `Set-PnPTenantCdnPolicy` cmdlet to allow PolicyValue parameter to be an empty string or $null, while still being mandatory. [#3937](https://github.com/pnp/powershell/pull/3937)
48
53
- Marked `UserVoiceForFeedbackEnabled` as obsolete in `Set-PnPTenant` cmdlet as Microsoft doesn't support this. [#3985](https://github.com/pnp/powershell/pull/3985)
49
54
-`Get-PnPTenantSite` cmdlet now returns additional properties like `ArchiveStatus`, `EnableAutoExpirationVersionTrim` and many more. [#3987](https://github.com/pnp/powershell/pull/3987)
50
55
56
+
### Removed
57
+
58
+
- Removed `UserVoiceForFeedbackEnabled` property from `Get-PnPTenant` as it is deprecated. [PR](https://github.com/pnp/powershell/commit/190ef864d2e20249658eff93feadf0effb24882d)
59
+
51
60
### Contributors
52
61
53
62
- Mark Gort [markgort86]
@@ -61,6 +70,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
Use this parameter to provide the <Paging Token> provided to view the remaining Containers as shown in Example 5. If there are no more Containers to display, the commandlet output will return the message End of Containers view. Otherwise, use the given <Paging Token> to retrieve the next batch of up to 5,000 ontainers.
119
+
119
120
```yaml
120
121
Type: String
121
122
Parameter Sets: (All)
@@ -126,6 +127,22 @@ Default value: False
126
127
Accept pipeline input: False
127
128
Accept wildcard characters: False
128
129
```
130
+
131
+
### -SortOrder
132
+
133
+
Use this parameter to specify the sort order. The sorting will be done based on Storage used in ascending or descending order.
134
+
135
+
```yaml
136
+
Type: SortOrder
137
+
Parameter Sets: (All)
138
+
139
+
Required: False
140
+
Position: Named
141
+
Default value: None
142
+
Accept pipeline input: False
143
+
Accept wildcard characters: False
144
+
```
145
+
129
146
## RELATED LINKS
130
147
131
148
[Microsoft 365 Patterns and Practices](https://aka.ms/m365pnp)
Retrieves the sensitivity label information for a file in SharePoint.
14
+
15
+
## SYNTAX
16
+
```powershell
17
+
Get-PnPFileSensitivityLabelInfo -Url <String>
18
+
```
19
+
20
+
## DESCRIPTION
21
+
22
+
The Get-PnPFileSensitivityLabelInfo cmdlet retrieves the sensitivity label information for a file in SharePoint. It takes a URL as input, decodes it, and specifically encodes the '+' character if it is part of the filename.
23
+
24
+
## EXAMPLES
25
+
26
+
### Example 1
27
+
This example retrieves the sensitivity label information for the file at the specified URL.
0 commit comments