From f8342581797edaccd3949ecf8eb55f178f45460d Mon Sep 17 00:00:00 2001 From: gitnl Date: Sun, 10 May 2026 13:15:00 +0000 Subject: [PATCH] Add LaunchServer.bat Double-click the .bat file instead of the .ps1 file. .bat files always run (no restrictions) The -ExecutionPolicy Bypass flag overrides the policy just for this script --- LaunchServer.bat | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 LaunchServer.bat diff --git a/LaunchServer.bat b/LaunchServer.bat new file mode 100644 index 0000000..1e15b2b --- /dev/null +++ b/LaunchServer.bat @@ -0,0 +1,7 @@ +@echo off +echo ======================================== +echo Abiotic Factor Server Manager +echo ======================================== +echo. +powershell -ExecutionPolicy Bypass -File "AFSM.ps1" +pause \ No newline at end of file