From 7eb90e7163d369977975ea192becc667439f55e0 Mon Sep 17 00:00:00 2001 From: Samik Roy Date: Tue, 8 Feb 2022 15:14:41 +0530 Subject: [PATCH] Update readme.md --- Playbooks/Restrict-MDEIPAddress/readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Playbooks/Restrict-MDEIPAddress/readme.md b/Playbooks/Restrict-MDEIPAddress/readme.md index 6adca6c772d..d976db73ced 100644 --- a/Playbooks/Restrict-MDEIPAddress/readme.md +++ b/Playbooks/Restrict-MDEIPAddress/readme.md @@ -32,7 +32,7 @@ $MI = Get-AzureADServicePrincipal -ObjectId $MIGuid $MDEAppId = "fc780465-2017-40d4-a0c5-307022471b92" $PermissionName = "Ti.ReadWrite" -$RoleName = "Microsoft Sentinel Reader" +$RoleName = "Microsoft Sentinel Responder" $MDEServicePrincipal = Get-AzureADServicePrincipal -Filter "appId eq '$MDEAppId'" $AppRole = $MDEServicePrincipal.AppRoles | Where-Object {$_.Value -eq $PermissionName -and $_.AllowedMemberTypes -contains "Application"}