You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I know this is an issue with the app, and contacting Mullvad support is not relevant.
I have checked if others have reported this already
I have checked the issue tracker to see if others have reported similar issues.
Current Behavior
JavaScript Error:
Program was blocked from running by group policy.
Expected Behavior
Should run...
Steps to Reproduce
I was able to replicate this on another Windows 11 system.
Enable AppLocker:
gpedit.msc > Local Computer Policy > Computer Configuration > Windows Settings > Security Settings > Application Control Policies > AppLocker
Add default rules:
Right click on each and create default rules for all (Executables, Windows Installer, Script, Dll and Packaged app rules).
Enforce:
Right click AppLocker > Properties > Check "Configured" and select "Enforce rules" for all.
Run app > Error.
In the properties change DLL rules from "Enforce rules" to "Audit only".
Run app > Warning in Windows Event Viewer:
Event Viewer > Applications and Services Logs > Microsoft > Windows > AppLocker > EXE and DLL:
%OSDRIVE%\USERS...\APPDATA\LOCAL\TEMP....TMP.NODE was allowed to run but would have been prevented from running if the AppLocker policy were enforced.
Failure Logs
%OSDRIVE%\USERS\...\APPDATA\LOCAL\TEMP\....TMP.NODE was prevented from running.
Operating system version
Windows 11
Mullvad VPN app version
2025.4.0.0
Additional Information
Admin prevents executables from running in the Temp folder for "malware prevention" and "attack surface reduction".
Software is installed in the program files folder and there are publisher specific rules enabled for updates.
I can install but not run the new version (2025.4.0.0).
Previous versions installed and ran without issue.
The text was updated successfully, but these errors were encountered:
I found the same issue identified in other apps.
It seems you need to add "asarUnpack": "**\*.node" to the electron-builder configuration so that the <guid>.tmp.node modules are unpacked next to the executable.
"When you spawn a child process from a file within an asar container, Windows copies it to a temp folder to be executed because it can't run it from within the container."
"the electron-builder smartUnpack function was detecting things like the ssh2 module and correctly putting it in /resources/app.asar.unpacked/, but not sqlite3. On each run, the executable file was copied out of the asar and put into %appdata%/Local/Temp as .tmp.node."
"In our case, adding "asarUnpack": "**\*.node", to the electron-builder configuration adds the sqlite3 module to the unpacked folder and the temp file is no longer created on each run."
Is it a bug?
I have checked if others have reported this already
Current Behavior
JavaScript Error:
Program was blocked from running by group policy.
Expected Behavior
Should run...
Steps to Reproduce
I was able to replicate this on another Windows 11 system.
gpedit.msc > Local Computer Policy > Computer Configuration > Windows Settings > Security Settings > Application Control Policies > AppLocker
Right click on each and create default rules for all (Executables, Windows Installer, Script, Dll and Packaged app rules).
Right click AppLocker > Properties > Check "Configured" and select "Enforce rules" for all.
Event Viewer > Applications and Services Logs > Microsoft > Windows > AppLocker > EXE and DLL:
%OSDRIVE%\USERS...\APPDATA\LOCAL\TEMP....TMP.NODE was allowed to run but would have been prevented from running if the AppLocker policy were enforced.
Failure Logs
Operating system version
Windows 11
Mullvad VPN app version
2025.4.0.0
Additional Information
Admin prevents executables from running in the Temp folder for "malware prevention" and "attack surface reduction".
Software is installed in the program files folder and there are publisher specific rules enabled for updates.
I can install but not run the new version (2025.4.0.0).
Previous versions installed and ran without issue.
The text was updated successfully, but these errors were encountered: