f834258179
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
7 lines
200 B
Batchfile
7 lines
200 B
Batchfile
@echo off
|
|
echo ========================================
|
|
echo Abiotic Factor Server Manager
|
|
echo ========================================
|
|
echo.
|
|
powershell -ExecutionPolicy Bypass -File "AFSM.ps1"
|
|
pause |