church_archive_script/Advanced_Encode_Interlaced.bat

13 lines
213 B
Batchfile
Raw Normal View History

2023-12-07 03:13:55 +00:00
@ECHO OFF
REM TestWrapper.bat
cd /D "%~dp0"
SET args='%1'
:More
SHIFT
IF '%1' == '' GOTO Done
SET args=%args%,'%1'
GOTO More
:Done
Powershell.exe -noprofile -command "& {.\Script_Interlaced.ps1 %args%}"
pause
exit