-
Notifications
You must be signed in to change notification settings - Fork 144
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #797 from reshmee011/deletedexpiredsl
New sample script to remove expired or older sharing links
- Loading branch information
Showing
3 changed files
with
251 additions
and
0 deletions.
There are no files selected for viewing
191 changes: 191 additions & 0 deletions
191
scripts/spo-delete-expired-sharing-link-folder-file-item/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,191 @@ | ||
--- | ||
plugin: add-to-gallery | ||
--- | ||
|
||
# Deletes expired and older sharing links for folder, file and item | ||
|
||
## Summary | ||
|
||
Currently, there is no default expiry time for "people you choose" or "people in your organization" links, and expired links are not automatically deleted. Using this script can help clean up your environment by removing expired or older sharing links, thereby enhancing security and governance. | ||
|
||
![Example Screenshot](assets/preview.png) | ||
|
||
### Prerequisites | ||
|
||
- The user account that runs the script must have access to the SharePoint Online site. | ||
|
||
# [PnP PowerShell](#tab/pnpps) | ||
|
||
```powershell | ||
param( | ||
[Parameter(Mandatory)] | ||
[string]$daysToKeepSharingLinkAfterCreationIfNoExpiryDateSpecified, | ||
[Parameter(Mandatory)] | ||
[ValidateSet('Yes','No')] | ||
[string]$DeleteSharingink, | ||
[Parameter(Mandatory)] | ||
[string]$siteUrl | ||
) | ||
#$daysToKeep = Read-Host -Prompt "Enter the number of days to keep sharinglinks if no expired date is set"; | ||
$dateTime = (Get-Date).toString("dd-MM-yyyy-hh-ss") | ||
$invocation = (Get-Variable MyInvocation).Value | ||
$directorypath = Split-Path $invocation.MyCommand.Path | ||
$fileName = "DeletedExpiredSharedLinks-PnP" + $dateTime + ".csv" | ||
$logDirectory = $directorypath + "\Log1s" | ||
if (-not (Test-Path -Path $logDirectory)) { | ||
New-Item -ItemType Directory -Path $logDirectory | ||
} | ||
$ReportOutput = $directorypath + "\Log1s\"+ $fileName | ||
#Connect to PnP Online | ||
Connect-PnPOnline -Url $siteUrl | ||
write-host $("Start time " + (Get-Date)) | ||
$global:Results = @(); | ||
function Get-ListItems_WithUniquePermissions{ | ||
param( | ||
[Parameter(Mandatory)] | ||
[Microsoft.SharePoint.Client.List]$List | ||
) | ||
$selectFields = "ID,HasUniqueRoleAssignments,FileRef,FileLeafRef,FileSystemObjectType" | ||
$Url = $siteUrl + '/_api/web/lists/getbytitle(''' + $($list.Title) + ''')/items?$select=' + $($selectFields) | ||
$nextLink = $Url | ||
$listItems = @() | ||
$Stoploop =$true | ||
while($nextLink){ | ||
do{ | ||
try { | ||
$response = invoke-pnpsprestmethod -Url $nextLink -Method Get | ||
$Stoploop =$true | ||
} | ||
catch { | ||
write-host "An error occured: $_ : Retrying" -ForegroundColor Red | ||
$Stoploop =$true | ||
Start-Sleep -Seconds 30 | ||
} | ||
} | ||
While ($Stoploop -eq $false) | ||
$listItems += $response.value | where-object{$_.HasUniqueRoleAssignments -eq $true} | ||
if($response.'odata.nextlink'){ | ||
$nextLink = $response.'odata.nextlink' | ||
} else{ | ||
$nextLink = $null | ||
} | ||
} | ||
return $listItems | ||
} | ||
function getSharingLink($_object,$_type,$_siteUrl,$_listUrl,$_listid) | ||
{ | ||
$sharingSettings = Invoke-PnPSPRestMethod -Method Post -Url "$($siteUrl)/_api/web/Lists(@a1)/GetItemById(@a2)/GetSharingInformation?@a1='{$($_listId)}'&@a2='$($_object.Id)'&`$Expand=permissionsInformation,pickerSettings" -ContentType "application/json;odata=verbose" -Content "{}" | ||
ForEach ($ShareLink in $sharingSettings.permissionsInformation.links) | ||
{ | ||
$linkDetails = $shareLink.linkDetails | ||
if($linkDetails.ShareTokenString){ | ||
$action = $null | ||
#update expiration date to be created date + x days if created date + 180 days is less than today otherwise delete the sharing link | ||
$CurrentDateTime = Get-Date | ||
$createdDate = Get-Date -Date $linkDetails.Created | ||
# delete any sharing links created more than x days ago | ||
$expirationDate = $createdDate.AddDays($daysToKeepSharingLinkAfterCreationIfNoExpiryDateSpecified) | ||
if($expirationDate -lt $CurrentDateTime -or ($linkDetails.Expiration -ne "" -and (Get-Date -Date $linkDetails.Expiration) -lt $CurrentDateTime)) | ||
{ | ||
if($DeleteSharingink -eq 'Yes'){ | ||
#Instead using the rest api call, use the Remove-PnPFileSharingLink or Remove-PnPFolderSharingLink | ||
$url = "$siteUrl/_api/web/Lists('$_listid')/GetItemById($($_object.Id))/UnshareLink" | ||
$varBody = '{"linkKind":'+ $linkDetails.LinkKind +',"shareId":"'+ $linkDetails.ShareId +'"}' | ||
$action = "Deleted" | ||
$sharingInfo = invoke-pnpsprestmethod -Url $url -Method Post -Content $varBody | ||
} | ||
$invitees = ( | ||
$linkDetails.Invitations | | ||
ForEach-Object { $_.Invitee.email } | ||
) -join '|' | ||
$result = New-Object PSObject -property $([ordered]@{ | ||
ItemID = $item.Id | ||
ShareId = $linkDetails.ShareId | ||
ShareLink = $linkDetails.Url | ||
Invitees = $invitees | ||
Name = $_object.FileLeafRef ?? $_object.Title | ||
Type = $_type -eq 1 ? "Folder" : "File" | ||
RelativeURL = $_object.FileRef ?? "" | ||
LinkAccess = "ViewOnly" | ||
Created = Get-Date -Date $linkDetails.Created | ||
CreatedBy = $linkDetails.CreatedBy.email | ||
LastModifiedBy = $linkDetails.LastModifiedBy.email | ||
LastModified = $LastModified | ||
ShareLinkType = $linkDetails.LinkKind | ||
Expiration = $linkDetails.Expiration | ||
BlocksDownload = $linkDetails.BlocksDownload | ||
RequiresPassword = $linkDetails.RequiresPassword | ||
PasswordLastModified = $linkDetails.PasswordLastModified | ||
PassLastModifiedBy = $linkDetails.PasswordLastModifiedBy.email | ||
HasExternalGuestInvitees = $linkDetails.HasExternalGuestInvitees | ||
HasAnonymousLink = $linkDetails.HasAnonymousLink | ||
AllowsAnonymousAccess = $linkDetails.AllowsAnonymousAccess | ||
ShareTokenString = $linkDetails.ShareTokenString | ||
Action = $action | ||
}) | ||
$global:Results +=$result; | ||
} | ||
} | ||
} | ||
} | ||
#Exclude certain libraries | ||
$ExcludedLists = @("Access Requests", "App Packages", "appdata", "appfiles", "Apps in Testing", "Cache Profiles", "Composed Looks", "Content and Structure Reports", "Content type publishing error log", "Converted Forms", | ||
"Device Channels", "Form Templates", "fpdatasources", "Get started with Apps for Office and SharePoint", "List Template Gallery", "Long Running Operation Status", "Maintenance Log Library", "Images", "site collection images" | ||
, "Master Docs", "Master Page Gallery", "MicroFeed", "NintexFormXml", "Quick Deploy Items", "Relationships List", "Reusable Content", "Reporting Metadata", "Reporting Templates", "Search Config List", "Site Assets", "Preservation Hold Library", | ||
"Site Pages", "Solution Gallery", "Style Library", "Suggested Content Browser Locations", "Theme Gallery", "TaxonomyHiddenList", "User Information List", "Web Part Gallery", "wfpub", "wfsvc", "Workflow History", "Workflow Tasks", "Pages") | ||
Write-Host "Processing site $siteUrl" -Foregroundcolor "Red"; | ||
$ll = Get-PnPList -Includes BaseType, Hidden, Title,HasUniqueRoleAssignments,RootFolder | Where-Object {$_.Hidden -eq $False -and $_.Title -notin $ExcludedLists } #$_.BaseType -eq "DocumentLibrary" | ||
Write-Host "Number of lists $($ll.Count)"; | ||
foreach($list in $ll) | ||
{ | ||
$listUrl = $list.RootFolder.ServerRelativeUrl; | ||
#Get all list items in batches | ||
$ListItems = Get-ListItems_WithUniquePermissions -List $list | ||
ForEach($item in $ListItems) | ||
{ | ||
$type= $item.FileSystemObjectType; | ||
getSharingLink $item $type $siteUrl $listUrl $list.Id; | ||
} | ||
} | ||
$global:Results | Export-CSV $ReportOutput -NoTypeInformation | ||
Write-host -f Green "Deletion of expired Sharing Links Report Generated Successfully! at $ReportOutput" | ||
write-host $("End time " + (Get-Date)) | ||
``` | ||
|
||
[!INCLUDE [More about PnP PowerShell](../../docfx/includes/MORE-PNPPS.md)] | ||
|
||
*** | ||
|
||
## Source Credit | ||
|
||
Sample first appeared on [Automate the Removal of Expired Sharing Links in SharePoint with PowerShell](https://reshmeeauckloo.com/posts/powershell-sharinglink-remove-expiredlinks/) | ||
|
||
## Contributors | ||
|
||
| Author(s) | | ||
|-----------| | ||
| [Reshmee Auckloo](https://github.com/reshmee011) | | ||
|
||
[!INCLUDE [DISCLAIMER](../../docfx/includes/DISCLAIMER.md)] | ||
<img src="https://m365-visitor-stats.azurewebsites.net/script-samples/scripts/spo-delete-expired-sharingLink-folder-file-item" aria-hidden="true"> |
Binary file added
BIN
+57.6 KB
scripts/spo-delete-expired-sharing-link-folder-file-item/assets/preview.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
60 changes: 60 additions & 0 deletions
60
scripts/spo-delete-expired-sharing-link-folder-file-item/assets/sample.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
[ | ||
{ | ||
"name": "spo-delete-expired-sharing-link-folder-file-item", | ||
"source": "pnp", | ||
"title": "Deletes expired and older sharing links for folder, file and item in SharePoint", | ||
"shortDescription": "Deletes expired and older sharing links for folder, file, and item. Currently expired or older sharing links are not automatically deleted", | ||
"url": "https://pnp.github.io/script-samples/spo-delete-expired-sharing-link-folder-file-item/README.html", | ||
"longDescription": [ | ||
"Currently, there is no default expiry time for 'people you choose' or 'people in your organization' links, and expired links are not automatically deleted. Using this script can help clean up your environment by removing expired or older sharing links, thereby enhancing security and governance." | ||
], | ||
"creationDateTime": "2025-01-13", | ||
"updateDateTime": "2025-01-13", | ||
"products": [ | ||
"SharePoint", | ||
"Sharing Links", | ||
"Microsoft 365 Copilot" | ||
], | ||
"metadata": [ | ||
{ | ||
"key": "PNP-POWERSHELL", | ||
"value": "2.99.0" | ||
} | ||
], | ||
"categories": [ | ||
"Report", | ||
"Microsoft 365 Copilot" | ||
], | ||
"tags": [ | ||
"modern", | ||
"Connect-PnPOnline", | ||
"Get-PnPProperty", | ||
"Remove-PnPgroup", | ||
"Get-PnPList", | ||
"Get-PnPListItem" | ||
], | ||
"thumbnails": [ | ||
{ | ||
"type": "image", | ||
"order": 100, | ||
"url": "https://raw.githubusercontent.com/pnp/script-samples/main/scripts/spo-delete-expired-sharing-link-folder-file-item/assets/preview.png", | ||
"alt": "" | ||
} | ||
], | ||
"authors": [ | ||
{ | ||
"gitHubAccount": "reshmee011", | ||
"company": "", | ||
"pictureUrl": "https://avatars.githubusercontent.com/u/7693852?v=4", | ||
"name": "Reshmee Auckloo" | ||
} | ||
], | ||
"references": [ | ||
{ | ||
"name": "Want to learn more about PnP PowerShell and the cmdlets", | ||
"description": "Check out the PnP PowerShell site to get started and for the reference to the cmdlets.", | ||
"url": "https://aka.ms/pnp/powershell" | ||
} | ||
] | ||
} | ||
] |