compliance
817 TopicsThe Microsoft Cloud App Security (MCAS) Ninja Training (March 2021 Update)
We’ve updated the MCAS Ninja Training since this post was published. For the latest version of the training, visit Microsoft Cloud App Security (MCAS) Ninja Training | September 2021 - Microsoft Tech Community.224KViews24likes25CommentsExport to PST via Powershell
I am continually expanding on my offboarding process within Orchestrator. I decided to add the export of the email so that all that has to be done is go to the Content search and download it (unless someone knows how to do that as well...). My addition works, however, instead of creating a single PST file, I end up getting the actual folders with individual email in message file format. I have tried what is correct per everything I could find (honestly, not a lot of detail on the subject). The current single line in question is: New-ComplianceSearchAction -SearchName $SearchName -Export -ArchiveFormat PerUserPST -EnableDedupe $true I have tried different values for -ArchiveFormat including leaving it completely off since a single pst per user is supposed to be the default. I will include the entire part of the script responsible for the full function in case it is supposed to be declared somewhere else (but I haven't found anything). # Create Compliance Search - Export Email $SearchName = "Export - " + $term.Name New-ComplianceSearch -ExchangeLocation $term365.UserPrincipalName -Name $SearchName # Start Compliance Search and wait to complete Start-ComplianceSearch $SearchName do { Start-Sleep -s 5 $complianceSearch = Get-ComplianceSearch $SearchName } while ($complianceSearch.Status -ne 'Completed') # Create Compliance Search in exportable format New-ComplianceSearchAction -SearchName $SearchName -Export -ArchiveFormat PerUserPST -EnableDedupe $true $ExportName = $SearchName + "_Export" #Wait for Export to complete do { Start-Sleep -s 5 $complete = Get-ComplianceSearchAction -Identity $ExportName } while ($complete.Status -ne 'Completed') Any help would be appreciated!Solved164KViews2likes46CommentsIntroducing Multi-Geo in Office 365
Multi-Geo Capabilities enables a single Office 365 tenant to span across multiple Office 365 datacenter geographies (geos), and gives customers the ability to store their Exchange and OneDrive data at-rest, on a per-user basis, in their chosen geos. This allows customers to meet their regional, industry-specific or corporate data residency requirements in Office 365.152KViews17likes36CommentsUnderstanding Compliance Between Commercial, Government and DoD Offerings - September 2023 Update
Understanding compliance between Commercial, Government and DoD offerings: There remains much confusion as to what service supports what standards best. If you have DFARS, ITAR, FedRAMP, CJIS, IRS and other regulatory requirements and you are trying to understand what service is the best fit for your organization then you should read this article.145KViews3likes11Comments