1) After you configure everything to your liking in Zarx264gui, hop over to the Command Line tab. Click the Create .BAT button and save it to the directory of your choice. Close Zarx264gui.
2) Open the .bat file in Notepad. You should be able to do so by right-clicking on it and choosing 'Edit'.
3) Start a new line at the end, with only a single command: pause. So if you have this (I was just using the defaults, so this will likely differ from what yours reads):
"C:\dap\BT\Zarx264gui_1.3\BePipe.exe" --script "import(^C:\dap\BT\Zarx264gui_1.3\test.avs^).Normalize()" | "C:\dap\BT\Zarx264gui_1.3\neroAacEnc.exe" -br 128000 -ignorelength -if - -of "C:\dap\BT\Zarx264gui_1.3\test-temp.m4a"
"C:\dap\BT\Zarx264gui_1.3\avs2yuv.exe" "C:\dap\BT\Zarx264gui_1.3\test.avs" -raw - | "C:\dap\BT\Zarx264gui_1.3\x264.exe" --crf 18 --preset slower --tune animation --filter 1:1 --aq-strength 0.6 --psy-rd 0.4:0 --frames 3927 --fps 23.97602 --output "C:\dap\BT\Zarx264gui_1.3\test-temp.264" - 848x480
"C:\dap\BT\Zarx264gui_1.3\MP4Box.exe" -fps 23.97602 -add "C:\dap\BT\Zarx264gui_1.3\test-temp.264" -add "C:\dap\BT\Zarx264gui_1.3\test-temp.m4a" -new "C:\dap\BT\Zarx264gui_1.3\test.mp4" -tmp "C:\dap\BT\Zarx264gui_1.3"
it should look like this:
"C:\dap\BT\Zarx264gui_1.3\BePipe.exe" --script "import(^C:\dap\BT\Zarx264gui_1.3\test.avs^).Normalize()" | "C:\dap\BT\Zarx264gui_1.3\neroAacEnc.exe" -br 128000 -ignorelength -if - -of "C:\dap\BT\Zarx264gui_1.3\test-temp.m4a"
"C:\dap\BT\Zarx264gui_1.3\avs2yuv.exe" "C:\dap\BT\Zarx264gui_1.3\test.avs" -raw - | "C:\dap\BT\Zarx264gui_1.3\x264.exe" --crf 18 --preset slower --tune animation --filter 1:1 --aq-strength 0.6 --psy-rd 0.4:0 --frames 3927 --fps 23.97602 --output "C:\dap\BT\Zarx264gui_1.3\test-temp.264" - 848x480
"C:\dap\BT\Zarx264gui_1.3\MP4Box.exe" -fps 23.97602 -add "C:\dap\BT\Zarx264gui_1.3\test-temp.264" -add "C:\dap\BT\Zarx264gui_1.3\test-temp.m4a" -new "C:\dap\BT\Zarx264gui_1.3\test.mp4" -tmp "C:\dap\BT\Zarx264gui_1.3"
pause
Save and close the .bat file.
4) Now, double-click on the .bat file (or right-click->Open), and it'll open the Command Prompt and do all the encoding and muxing automatically. If something fails, it
should leave the Command Prompt on the screen, which you can then use to diagnose the problem, if one exists. Right click and choose to Select All, and after everything's highlighted, hit Enter to copy it. Paste it in a regular Notepad file and then you can relay it here if something went wrong.
The 'pause' command is what tells the Command Prompt to stay open and give you that 'Press any key to continue' line. If pause wasn't there, it would close and any error you got would be lost.