maciejrebisz.com

IT

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

maximios December 3, 2020

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

IT /

Intune – Windows device enrollment restrictions – Cloud First

IT /

How to add “hidden” Windows UWP to Windows Store for Business – Cloud First

IT /

Office 2016 Active Directory-Based activation – Cloud First

‹ 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

Recent Posts

  • Intune – Windows device enrollment restrictions – Cloud First
  • How to add “hidden” Windows UWP to Windows Store for Business – Cloud First
  • Office 2016 Active Directory-Based activation – Cloud First
  • How to deploy Windows Local Experience Packs with Intune – Cloud First
  • Conditional Access for Outlook Web Access (OWA) – Cloud First

Recent Comments

No comments to show.

Archives

  • November 2025
  • October 2025
  • August 2025
  • July 2025
  • June 2025
  • April 2025
  • March 2025
  • February 2025
  • January 2025
  • November 2024
  • September 2024
  • July 2024
  • June 2024
  • March 2024
  • December 2023
  • August 2023
  • June 2023
  • March 2023
  • February 2023
  • December 2022
  • September 2022
  • August 2022
  • June 2022
  • May 2022
  • April 2022
  • March 2022
  • January 2022
  • December 2021
  • October 2021
  • September 2021
  • August 2021
  • June 2021
  • May 2021
  • April 2021
  • March 2021
  • February 2021
  • January 2021
  • December 2020
  • November 2020
  • October 2020
  • September 2020
  • August 2020
  • February 2020
  • January 2020
  • December 2019
  • October 2019
  • September 2019
  • June 2019
  • April 2019
  • March 2019
  • February 2019
  • March 2018
  • February 2018
  • December 2017
  • October 2017
  • August 2017

Categories

  • IT

Back to Top

© maciejrebisz.com 2026
Powered by WordPress • Themify WordPress Themes