Hi @Justin Sanity , Thanks for sharing the details!
Can you turn it off?
Technically yes but not with a normal setting though because there's no "off" button for SAC in Windows Sandbox.
Why?
As far as I know, Sandbox launches as a fresh mini-Windows every time, ignores your main PC settings, and starts with SAC enabled.
Therefore, when you close Sandbox, everything resets, so there’s no permanent toggle. Unfortunately, you’ll need a script each time you start it.
For more details check: Windows Sandbox
There's a workaround you could try, you can disable SAC for the current Sandbox session by adding a script to your .wsb configuration file. This script runs at startup and changes a registry key inside Sandbox:
<Configuration>
<LogonCommand>
<Command>reg add "HKLM\SYSTEM\CurrentControlSet\Control\CI\Policy" /v VerifiedAndReputablePolicyState /t REG_DWORD /d 0 /f</Command>
</LogonCommand>
</Configuration>
This sets VerifiedAndReputablePolicyState to 0, turning SAC off for that Sandbox session. Full guide on .wsb files and LogonCommand: Windows Sandbox configuration
I also managed to find a similar post here: Solution to SAC blocking apps
Hope this helps! If you have any more questions, please feel free to ask. I'll be happy to help out!