Windows – What parameters are ok to pass to 7-zip .exe file creation while using the GUI

7-zipwindows

What parameters are ok to pass to the create archive wizard , in the 7-zip GUI, when you are creating a self extracting archive? The 7-Zip GUI has a field that allows you to type in multiple parameters.

screenshot

I tried an obvious parameter (shown below) but it fails for an unknown reason:

-oC:\

Best Answer

From what I can gather from your comments, it sounds like you are asking something else. It sounds like you are asking

  1. What is the purpose of the Parameters field of the 7-zip dialog?
  2. Why does it not work when you use the -o argument in that field?

If so, then the answers are simple (and related):

  1. The Parameters field is for specifying any options you need that are not available via dedicated dialog controls.

  2. The -o argument is ignored in the Parameters field because there is already a dedicated dialog control for the destination. The controls override corresponding options in the Parameters field.

Think about it this way, if you want to specify arguments in the Parameters field that already have dialog controls, then why use the GUI at all, why not just use the command-line in the first place? The dialog controls provide most options that are used and also reduce the possibility of error by specifying valid options. For example, the word-size options are already listed in the drop-down, so you cannot choose an invalid size like you can when specifying it in the Parameters field or command-line.


Some examples of usage of the Parameters field include:

  • One such argument is exclusion (-x switch). If you want to specify filenames to be excluded, there is no option to do so in the dialog, and so you would have to enter them in the Parameters field.

  • You would also use it to specify the -y switch to automatically say yes to everything instead of prompting you.

  • You can even use it to override some of the options that the dialog automatically sets such as subdirectory recursion. When you use the dialog, it automatically sets recursion. If you don’t want that, you would need to specify -r- in the Parameters field.

For a full list, you can look at the list of command-line arguments (7z /?) and compare it to the controls in the dialog.

Related Question