Build

<< Click to Display Table of Contents >>

RayPack > 8.0 > User Guide > Command Line Tools > Silent Command Line Switches 

Build

Description

This switch instructs RayPack to create a PowerShell wrapper for the given product.

 

Parameters

Parameter

Required

Description

-Input <path>

 
YES
 

 
The full path to MSI or EXE file.
 

-Output <path>

 
YES
 

The full path to the output directory where new files will be saved.

-InstallArgs <arguments>

 
NO
 

 
The command line arguments for installation, RayPack tries to determine it from the source file.

 

finger1

Be aware:

The setup must be able to install the product silently with the given command line. If this is not the case, then there is no use for the wrapper, because the user will still be prompted by original UI.

 

-Language <language>

 
NO
 

The language of the product. If not provided, RayPack tries to determine it from the source file.

-Name <name>

 
NO
 

The name of the product. If not provided, RayPack tries to determine it from the source file.

-SupportingFiles <list>

 
NO
 

 
Semicolon separated list of additional files or folders which are to be included. Source files / folders must be in the same folder tree as the main source file.
 

-UninstallArgs <arguments>

 
NO
 

The command line arguments for uninstallation. RayPack tries to determine it from the source file.

-UninstallCommand <command>

 
NO
 

Command to execute for installation (only for non-MSI setups). If left empty, the source file is called for uninstallation command.

-Vendor

 
NO
 

The name of product vendor. If not provided, RayPack tries to determine it from the source file.

-Version

 
NO
 

The version of the product. If not provided, RayPack tries to determine it from the source file.

Example

RpCmd.exe Wrap 
         -Input "C:\RayPack\Projects\FileZilla\3.9.0.6\FileZillaClient-3_9_0_6.EXE" 
         -Output "C:\RayPack\Projects\FileZilla" 
         -Name "FileZilla"
         -UninstallArgs "-s"
         -UninstallCommand "%programfiles%\FileZilla\uninst.exe"