Skip to content

Instantly share code, notes, and snippets.

@hansgafriedzal
Created September 10, 2024 11:07
Show Gist options
  • Save hansgafriedzal/1f35f0a13375ed5d350a78f07cd92e8b to your computer and use it in GitHub Desktop.
Save hansgafriedzal/1f35f0a13375ed5d350a78f07cd92e8b to your computer and use it in GitHub Desktop.
$site = Get-SPSite http://site.local/
$query = New-Object -TypeName Microsoft.SharePoint.SPAuditQuery($site)
$query.RowLimit = 10
$query.SetRangeStart((Get-Date).Date)
$query.AddEventRestriction([Microsoft.SharePoint.SPAuditEventType]::ChildMove)
$site.Audit.GetEntries($query) | Out-GridView
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment