An offline installation option is available by installing the AllInOne executable.
- Download the latest build by clicking here.
Below is an example of the PowerShell command line to install the application, where you need to replace:
- <path_to_SodaPDFDesktop14_AllInOne_signed.exe>
with the path where you saved the executable.
$process = Start-Process -FilePath "<path_to_SodaPDFDesktop14_AllInOne_signed.exe>" -ArgumentList "/quiet /postInstall=0 /waitInstallFinish /run_application=0 " -PassThru -Wait
Write-Host "Exit Code: $($process.ExitCode)"
Any, or all of the parameters after -ArgumentList can be omitted.
For information related to the parameters used, refer to the table below:
| Parameter | Meaning |
|---|---|
| /quiet | Runs silently with no UI |
| /postInstall=0 | Post-install message notification is turned off |
| /waitInstallFinish | Caller waits for installation completion |
| /run_application=0 | Do not auto-launch the app after install |
| /statParams [optional] | Sets our internal marketing parameters. To be provided by your sales point of contact. |
| /configId [optional] | The unique app configuration. Discussed with, and provided by your sales point of contact. |