🔍 Ever needed the crawl-time of a specific item in a list?
Use this script to search your search-logs for this specific ID.
#pnppowershell #sharingiscaring
-Script-
$ID = 10
$entry = Get-PnPSearchCrawlLog -Filter 'https://your-sharepoint-site.com/sites/YourSite/Lists/YourList/DispForm.aspx' | Where-Object { $_.URL -like "*?ID=$($ID)" }