{"id":1468,"date":"2025-01-22T20:15:44","date_gmt":"2025-01-22T18:15:44","guid":{"rendered":"https:\/\/svobodma.cz\/?p=1468"},"modified":"2026-02-24T09:54:26","modified_gmt":"2026-02-24T07:54:26","slug":"how-to-find-deleted-distribution-list-in-o365","status":"publish","type":"post","link":"https:\/\/svobodma.cz\/?p=1468","title":{"rendered":"How to find deleted distribution list in O365"},"content":{"rendered":"\n<p>When someone is missing a DL and we need to verify when it happened and who made the change (modify or delete), this script can help a lot!<br>It can return up to 5,000 records and data up to 365 days old. &#x1f642;<\/p>\n\n\n\n<h1 class=\"wp-block-heading\"><\/h1>\n\n\n\n<p><\/p>\n\n\n\n<p>$Command = @(&#8218;Remove-DistributionGroup&#8216;)<\/p>\n\n\n\n<p>$results = Search-UnifiedAuditLog -StartDate (Get-Date).AddDays(-365) -EndDate (Get-Date).AddDays(1) -Operations $operations -SessionCommand ReturnLargeSet -ResultSize 5000<br>$data = @()<\/p>\n\n\n\n<p>foreach ($line in $results ) {<br>$content = New-Object -TypeName PSObject<br>$Converteddata = convertfrom-json $line.AuditData<br>$content| Add-Member -MemberType NoteProperty -Name CreationTime -Value $line.CreationDate<br>$content | Add-Member -MemberType NoteProperty -Name Operation -Value $Converteddata.Operation<br>$content | Add-Member -MemberType NoteProperty -Name GroupOjectID -Value $Converteddata.ObjectId<br>$content| Add-Member -MemberType NoteProperty -Name ResponsibleUser -Value $Converteddata.UserID<br>$data += $content<br>}<\/p>\n\n\n\n<p>$Data | Select CreationTime, Operation, GroupOjectID,ResponsibleUser<\/p>\n","protected":false},"excerpt":{"rendered":"<p>When someone is missing a DL and we need to verify when it happened and who made the change (modify or delete), this script can help a lot!It can return up to 5,000 records and data up to 365 days &hellip; <a href=\"https:\/\/svobodma.cz\/?p=1468\">Cel\u00fd p\u0159\u00edsp\u011bvek <span class=\"meta-nav\">&rarr;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[6,19],"tags":[],"class_list":["post-1468","post","type-post","status-publish","format-standard","hentry","category-exchange-server","category-powershell"],"_links":{"self":[{"href":"https:\/\/svobodma.cz\/index.php?rest_route=\/wp\/v2\/posts\/1468","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/svobodma.cz\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/svobodma.cz\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/svobodma.cz\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/svobodma.cz\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=1468"}],"version-history":[{"count":4,"href":"https:\/\/svobodma.cz\/index.php?rest_route=\/wp\/v2\/posts\/1468\/revisions"}],"predecessor-version":[{"id":1484,"href":"https:\/\/svobodma.cz\/index.php?rest_route=\/wp\/v2\/posts\/1468\/revisions\/1484"}],"wp:attachment":[{"href":"https:\/\/svobodma.cz\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=1468"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/svobodma.cz\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=1468"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/svobodma.cz\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=1468"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}