Radiant 2025.1 SP1 / Windows 11: Fix Radiant Crash on Network Drives

Radiant 2025.1 SP1 / Windows 11: Fix Radiant Crash on Network Drives

Resolving the "Render Process Crashed with Code: -1073741515" Error in Radiant 2025.1.1 on Windows

When launching Radiant 2025.1.1 on Windows, some users encounter a critical error: “Render process crashed with code: -1073741515”. This issue can prevent the application from starting or cause it to crash immediately after opening a project. In certain cases, the error is accompanied by a secondary message: “QtWebEngineProcess.exe - System Error: The code execution cannot proceed because QtWebEngineCore.dll was not found. Reinstalling the program may fix this problem.” These symptoms often point to deeper system-level restrictions, particularly when the application is launched from a network location.

Understanding the Root Cause: Network Drive Launch Restrictions

The primary cause of this crash lies in how Windows handles sandboxed processes when the parent executable is located on a network drive (UNC path). Radiant uses Qt WebEngine for rendering certain UI components, including report views and interactive dashboards. Qt WebEngine relies on a sandboxed render process to enhance security and stability. However, Windows enforces strict security policies that block the initialization of sandboxed processes when the main application is running from a network location. This restriction is not a flaw in Radiant or Qt—it is a deliberate security measure implemented by Microsoft to prevent potential exploits through network-mounted executables.

As a result, when Radiant is launched from a network drive, the render process fails to initialize, leading to the crash with error code -1073741515 (which corresponds to 0xC0000142, a common Windows error indicating a missing or inaccessible DLL). The secondary error about QtWebEngineCore.dll not being found is a symptom of this failure, not the root issue. The DLL is present, but the sandboxed process cannot load it due to the security policy.

Workarounds to Resolve the Crash

Several solutions can be applied to resolve this issue, depending on your environment and workflow. The most effective and recommended approach is outlined below.

1. Disable the Qt WebEngine Sandbox via Environment Variable

The most direct fix is to disable the sandbox feature of Qt WebEngine by setting the environment variable QTWEBENGINE_DISABLE_SANDBOX=1 before launching Radiant. This bypasses the Windows security restriction while maintaining functionality for most users.

To apply this fix:

  • Open the System Properties dialog (right-click on "This PC" > Properties > Advanced System Settings).
  • Click on Environment Variables.
  • Under System Variables, click New.
  • Set the Variable name to QTWEBENGINE_DISABLE_SANDBOX and the Variable value to 1.
  • Click OK to save.
  • Restart your computer to ensure the variable is loaded system-wide.
  • Launch Radiant from the network drive or local path.

After applying this setting, the render process should initialize correctly, and the crash should no longer occur. This solution is particularly effective for users who must run Radiant from a shared network location due to organizational policies or file-sharing setups.

2. Enable “Use Previous Report View” in Radiant Settings

An alternative workaround involves modifying Radiant’s internal behavior. Users have reported success by enabling the “Use Previous Report View (requires restart)” option in the application’s settings. This setting changes how report views are loaded, potentially avoiding the need for the sandboxed render process altogether.

To enable this:

  • Launch Radiant (if possible) or access the settings via the Options dialog.
  • Navigate to the General or Interface section.
  • Locate the option labeled “Use Previous Report View (requires restart)”.
  • Check the box and restart Radiant.

While this method can resolve the crash in some cases, it is less reliable than disabling the sandbox, especially if the application fails to launch in the first place. It is best used as a secondary option when environment variables cannot be set.

3. Install Radiant on a Local Drive (Best Practice)

The most robust and future-proof solution is to install Radiant on a local drive (e.g., C:\Program Files\Radiant) rather than running it directly from a network path. This avoids the Windows security restriction entirely, as the executable is no longer subject to the sandbox policy.

Benefits of local installation include:

  • Improved performance due to faster disk access.
  • Full compatibility with all Qt WebEngine features.
  • Better stability and fewer unexpected crashes.
  • Easier troubleshooting and updates.

If your organization allows it, this should be the preferred deployment method. For teams using shared projects, consider using a local copy of the project files synced via a version control system or file synchronization tool, rather than launching the application from a network drive.

Addressing Common Misconceptions

Some users may assume that the missing QtWebEngineCore.dll error indicates a corrupted installation or a need to reinstall Radiant. However, this is not the case. The DLL is typically present and functional—its failure to load is due to the sandbox initialization being blocked by Windows, not a missing file. Reinstalling the software will not resolve the issue unless the launch location is also changed.

Similarly, enabling the “Use Previous Report View” option may help in some scenarios, but it does not address the underlying cause. It merely changes the rendering behavior to avoid the problematic process. For long-term stability, especially in shared or networked environments, disabling the sandbox via the environment variable is the more reliable solution.

Final Recommendations

To ensure a smooth and stable experience with Radiant 2025.1.1 on Windows:

  • Avoid launching Radiant from network drives whenever possible.
  • Use the environment variable QTWEBENGINE_DISABLE_SANDBOX=1 if you must run from a network path.
  • Install Radiant on a local drive for optimal performance and compatibility.
  • Restart your system after setting environment variables to ensure they take effect.
  • Test the fix by opening a project and verifying that the render process initializes without crashing.

By following these guidelines, users can overcome the “Render process crashed” error and continue using Radiant with confidence. The issue is not a flaw in the software but a known interaction between Windows security policies and sandboxed applications—easily resolved with the right configuration.