Skip to content

Latest commit

 

History

History
34 lines (29 loc) · 770 Bytes

File metadata and controls

34 lines (29 loc) · 770 Bytes
description Automatically generated file. DO NOT MODIFY
Import-Module Microsoft.Graph.Security

$params = @{
	"@odata.type" = "https://graph.microsoft.com/v1.0/$metadata#security/cases/ediscoveryCases('b0073e4e-4184-41c6-9eb7-8c8cc3e2288b')/settings/$entity"
	redundancyDetection = @{
		isEnabled = $true
		similarityThreshold = 65
		minWords = 10
		maxWords = 500000
	}
	topicModeling = @{
		isEnabled = $false
		ignoreNumbers = $true
		topicCount = 100
		dynamicallyAdjustTopicCount = $true
	}
	ocr = @{
		isEnabled = $false
		maxImageSize = 24576
		timeout = "PT1M"
	}
	caseType = "standard"
	reviewSetSettings = "disableGrouping"
}

Update-MgSecurityCaseEdiscoveryCaseSetting -EdiscoveryCaseId $ediscoveryCaseId -BodyParameter $params