• Home
  • IT
maciejrebisz.com

Microsoft Edge crash on Windows 10 1803 with Windows Defender Application Control enabled – Mobile-First Cloud-First

I try to run a secure Windows as possible and there I have as many Windows Defender setting enabled as possible, also Windows Defender Application Control – in this case just in Audit mode. After upgrading to Windows 10 1803 my primary browser  Microsoft Edge stating to crash, but I got a solution from my very good friend and fellow MVP Jesper Nielsen  he pointed my to this error: Edge crashes when AppLocker is enabled with DLL enforcement Windows 1803 that described the same issue as I had, just with Applocker. Read more on Jesper’s feedback 

The reason for the mess in the first place is my Intune Endpoint Protection profile where I enable Windows Defender Application Guard in Audit mode:

The solution was to set this regkey:

[HKEY_CURRENT_USERSoftwareMicrosoftInternet ExplorerSpartan]
“RAC_LaunchFlags”=dword:00000035

In the event log you can see that Microsoft Edge is crashing:

How to fix it with Intune Management Extentions:

Start the Microsoft 365 device management portal : https://devicemanagement.portal.azure.com

  1. Click Device Configuration
  2. Click PowerShell scripts
  3. Click Add
  1. Enter a name: Edge Crash WDAC fix
  2. Upload the file : File is on GitHub
  3. Select Configure
  4. Set Run this script using the logged on credentials to Yes

The powershell script I run from Intune:

New-Item -Path HKCU:SoftwareMicrosoftInternet ExplorerSpartan –Force
$registryPath = "HKCU:SoftwareMicrosoftInternet ExplorerSpartan"

#Fix Edge on 1803 with WDAG or Applocker enabled
$Name = "RAC_LaunchFlags"
$value = "00000035"
IF(!(Test-Path $registryPath))
{
New-Item -Path $registryPath -Force | Out-Null
New-ItemProperty -Path $registryPath -Name $name -Value $value `
-PropertyType String -Force | Out-Null}
ELSE {
New-ItemProperty -Path $registryPath -Name $name -Value $value `
-PropertyType String -Force | Out-Null}

Happy testing – and please remember that this is not a official Microsoft fix.
Read more:
Windows Defender Application Control

Related Posts

Windows-Hello-For-Business-Active-Directory[1]

IT /

How to setup Windows Hello for Business in the new Intune portal

B-Intune-Graphic[1]

IT /

How to deploy Shared Devices with Intune for Education and Autopilot in the future

wp-1593849019379[1]

IT /

Managed browser extensions on Edge with Intune

‹ Managing Windows 10 reserved storage from Intune – Mobile-First Cloud-First › How to setup Windows 10 Shared PC mode with Intune CSP policy – Mobile-First Cloud-First

YouTube

Ad

banner

Ad

banner

Back to Top