hi all,
i am trying to unzip a file called "sav32sfx.exe" located at @scriptdir\files\CLI\sav32sfx.exe
i want to unzip it in the same directory
unzip.exe is located here: @scriptdir\files\Unzip\unzip.exe
here is the current CMD syntax using a batch but i cant seem to get it with autoit:
CMD:
files\Unzip\unzip.exe -joq files\CLI\sav32sfx.exe -d files\CLI
My autoit script:
RunWait ( @ScriptDir & '\files\Unzip\unzip.exe -joq' & @ScriptDir & '\files\CLI\sav32sfx.exe -d' & @ScriptDir & '\files\CLI')
thanks in advance