Silent Installation
The Bridge Service installer supports silent installation, allowing you to specify your desired configuration via the command line instead of using the installation wizard. The following command line arguments are supported:
/verysilent
This flag is required to perform a silent installation./web
This flag specifies whether the web interface should run. It is optional and defaults to true. Valid options are true or false./port
This flag specifies the port on which the service should run. It is not optional./binding
This flag specifies which interface to bind to. It is not optional. Use 0.0.0.0 for broadcast./ssl
This flag specifies whether or not to use SSL. It is optional and defaults to false. If this flag is set to true, the /cert flag is also required. Valid options are true or false./cert
This flag specifies the certificate to use when SSL is enabled. It is not optional when SSL is enabled. The certificate should be in Common Name format (CN=). SSL certificates must be installed in the local machine certificate store under the ”Personal/Certificates” logical store path.
Example use: /verysilent /web=true /ssl=true /port=443 /binding=0.0.0.0 /cert=mycertificate.loca
l
Last updated