
18-07-2020, 20:05
|
 |
Registered User
|
|
Join Date: Mar 2019
Location: In the Hell
Posts: 688
Thanks: 481
Thanked 2,547 Times in 561 Posts
|
|
Quote:
Originally Posted by Masquerade
The text in my earlier message was just an example, so I didn't inentionally leave out any args - the full command:
Code:
"..\Binaries\arc.exe" a -ep1 -dses --dirs -s; -lc- -di -i2 -r -w.\Temp -m%comp% "%cd%\Out\MASQUERADE-Data_%num%.MSQ" "%cd%\In\%num%\*
If I run the bat file in the alternate folder, I still get the error:
https://anonfiles.com/pdr8I8G9od/Test_7z
Try this, open the bat file and type "00" to select the archive data, then type "mtx:c64m:t16:rz" and watch as you get the unknown method error
|
Code:
@echo off
set /p num=Enter output archive name:
set/p comp= Enter Compression Method:
set "InputDir=%~dp0In"
set "OutputDir=%~dp0Out"
cd /d "C:\Users\BLACKFIRE69\Downloads\Compressed\Test\Binaries"
arc.exe a -ep1 -dses --dirs -s; -lc- -di -i2 -r -w.\Temp -m%comp% "%OutputDir%\MASQUERADE-Data_%num%.MSQ" "%InputDir%\%num%\*"
pause&exit
|