MavenTek Does anyone know the proper way to execute a PowerShell script using an Executor node? I keep getting an "Unsuccessful exit code returned: -1." Running the PowerShell script on its own works fine.filebot-renamer.json2kB filebot-renamer.txt249B
reven The ps1 isnt an executable, windows automatically uses calls powershell to run it, but anything else you need to execute powershell then pass the script. chatgpt says to use these parameters.
MavenTek @reven, so the "File Name" field in the Executor Node configuration requires an executable? Are no other file types accepted?
reven doesnt need an executable, needs something that can be executed. on linux this can be a .sh on windows a .bat, com, exe, msi. but windows doesnt execute a ps1, powershell executes a ps1.