This topic is locked

Fixing Instal error in V11 Bild 43257

4/23/2025 12:40:29 AM
PHPRunner Tips and Tricks
C
Chris Whitehead author

On the latest build of V11 Build 43257 with Windows 11, I did like the new installing animation but that was short lived, I was having an issue where it wouldn't install and failed giving me the follwong message. Clicking log didn't appear to do anything.
img alt

I tracked this down to the windows defender and in the protection history I found this.
img alt

The fix was adding that path using powershell in administrator.
Press Start, type PowerShell, right-click it, and choose Run as administrator. The enter this and swap the path from the error in the protection history..
Add-MpPreference -AttackSurfaceReductionOnlyExclusions "C:\Path\To\Installer.exe"
Or exclude the entire folder
Add-MpPreference -AttackSurfaceReductionOnlyExclusions "C:\Path\To\Folder\"

Hopefully PHPRunner should now install, this worked for me.

C
Chris Whitehead author 4/23/2025

I also had to add the path of the application in powershell so I could restart it after I'd closed PHPRunner.

Add-MpPreference -AttackSurfaceReductionOnlyExclusions "C:\Users\chris\AppData\Local\PHPRunner11\"