Below is the basic script if you want to copy it into a file and save it as say "run.bat"
@ECHO OFF
SET ThisScriptsDirectory=%~dp0
SET PowerShellScriptPath="%ThisScriptsDirectory%Main.ps1"
SET arg1="Bonkers"
PowerShell -NoProfile -ExecutionPolicy Bypass -Command "& {Start-Process PowerShell -ArgumentList '-NoProfile -ExecutionPolicy Bypass -File ""%PowerShellScriptPath%"" ""%arg1%""'}";
Also can find it here on GitHub as well as a video below