Forum Discussion
Converting an exist Content Search to an ediscovery search in the new Security and Compliance Module
You should be able to do it via PowerShell. Here's an example script that can be used to create a duplicate of a search: https://support.office.com/en-us/article/Clone-a-Content-Search-in-the-Office-365-Security-Compliance-Center-7b40eeaa-544c-4534-b89b-9f79998e374c?ui=en-US&rs=en-US&ad=US
Now, the searches contained in eDiscovery cases are accessed via the same cmdlet (Get-ComplianceSearch), but you need to specify the -Case parameter:
Get-CComplianceSearch -Case test
So adjsut that in the script, and also include a "remove search" action if you want.
Thanks Vasil,
I was able to clone an existing Compliance Search, however how do i associate the cloned search with a new compliance case.
When creating an new compliance case i dont see any options to associate / use an existing compliance search.. Would this be possible via the use of powershell.??
- VasilMichevMar 21, 2017MVP
Well, I meant this as an example that you need to adapt. You can specify a Case for new compliance search via the -Case parameter:
New-ComplianceSearch "blabla" -Case "blahblah"