EDIT: I can't find the solution but Martin's method looks like only solution for this situation.
I am trying to execute about 30-40 command line parameters. I don't want to separate commands with "&&" because it looks very complex all of these codes in one line.
[Run]
Filename: "{cmd}"; Parameters: "/c mkdir ""{app}\Folder1"" && mkdir ""{app}\Folder2"" && mkdir
""{app}\Folder3"" mkdir ""{app}\Folder4"" && mkdir ""{app}\Folder5"" && mkdir ""{app}\Folder6"" && mkdir ""{app}\Folder7"""
As you can see it looks so complex.
(
mkdir
command is example. Each commands are different in my project.)
How can I achieve it?
I can use .cmd or .bat file and run it but don't want it because I want to see progress bar on installer. My commands takes some time to finishing executing.
Waiting for helps, thanks!