Skip to content

Commit 083955e

Browse files
000-757: list unique
1 parent deb5808 commit 083955e

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

articles/en/spo/listfilesunique.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,19 @@ hero_height: is-small
77
date: '2025-02-09'
88
---
99

10-
Files with unique permissions usually
1110

11+
Show your users which files have unique permissions.
1212

13+
Files with unique permissions often have different individuals granted access. It is crucial to identify them for security and administrative purposes. It is important that site and library owners review the files and the granted access regularly.
14+
15+
Using PowerShell, you can generate a detailed report of such files and export the list to a CSV file for easy reference. Additionally, consider creating a custom view in SharePoint Online. This way users can directly see files which require their attention.
16+
17+
18+
19+
# Generate the report
20+
21+
22+
```Powershell
1323
1424
# Define the list name
1525
$listName = "YourListName"
@@ -41,3 +51,6 @@ $uniqueItems | Export-Csv -Path $outputCsvPath -NoTypeInformation -Encoding UTF8
4151
4252
# Output the result
4353
Write-Host "Details of items with unique permissions have been exported to $outputCsvPath"
54+
55+
56+
```

0 commit comments

Comments
 (0)