Question: How it is possible to create a macro, for call of the console with certain parametres?
My script works so:
I Write in bat - file
FileOpen $3 "$EXEDIR\\pack.bat" w
#The command of the console 7z for file packing... Through variables (path and a filename)
FileWrite $3 "7z a -tzip $EXEDIR\\$R8\\$R9zip $EXEDIR\\$R8\\$R3 -mx9"
FileClose $3 then I start it... ExecWait "$EXEDIR\\pack.bat" The command through the console is as a result fulfilled... As it is possible to make it without bat - file Thanks.