Mass deployment can be done in multiple ways. The following options are recommended depending on the complexity of the network and available tools:
For command line installation run CMD or PowerShell as administrator. Download the MSI file. The Tenant ID or Tenant token (based on client version) need to be as a parameter for installation. You can find both in the "Tenant Settings" section of Management Console. Finally, a location of the installation log is entered last. Logs can be used for debugging failed installations.
CMD format: msiexec /i “msi on filesystem or URL>” /qn /promptrestart TOKENID= /L*V “"Example Command: msiexec /i "C:\Users\test\Downloads\Capture Client.msi" /qn /promptrestart TOKENID=64539818-5169-4516-97db-292xxxxxxxx /L*V “C:\Users\test\Downloads\CCInstall.log”
PowerShell format: Start-Process -FilePath "$env:systemroot\system32\msiexec.exe" -ArgumentList '/i "msi on filesystem or URL>" /qn /promptrestart TOKENID= /l*v ’Example Command : Start-Process -FilePath "$env:systemroot\system32\msiexec.exe" -ArgumentList '/i "C:\Users\test\Downloads\Capture Client.msi" /qn /promptrestart TOKENID=64539818-5169-4516-97db-292XXXXXXXX /l*v 'C:\Users\test\Downloads\CCInstall.log'
CMD format : C:\>msiexec /i "Sonicwall Capture Client..msi" tenantToken=<> /qnExampleCommand:C:\>msiexec/i"SonicWallCaptureClient.3.8.0.msi"tenantToken=eyJjb25zb2xlVXJsIjoiaHR0cHM6Ly9jYy1xYS5lbmcuc29uaWN3YWxsLmNvbSIsInRlbmFudElkIjoiZTkzNGNjMjktOWVlOS00NGRiLTlhZmQtMTk2OadgeZmxxxxxxx= /qn
Alternatively, you can also use this command without passing the Tenant Token parameter, if the Tenant Token is already downloaded on the same location of the client installer.
PowerShell format:Start-Process -FilePath "$env:systemroot\system32\msiexec" -ArgumentList '/i "C:\Users\test\Downloads\Capture Client.msi" tenantToken=XXXXXXXX-XXXX-XXXX-XXxx-XXXXxXXXXXX /qn'Example Command : Start-Process -FilePath "$env:systemroot\system32\msiexec" -ArgumentList '/i "C:\Users\test\Downloads\ SonicWall Capture Client.3.8.0.msi" tenantToken= eyJjb25zb2xlVXJsIjoiaHR0cHM6Ly9jYy1xYS5lbmcuc29uaWN3YWxsLmNvbSIsInRlbmFudElkIjoiZTkzNGNjMjktOWVlOS00NGRiLTlhZmQtMTk2hkhtr2Zmxxxxxxx= /qn'
This is a basic Silent msi installation and you can add arguements according to your requirements. For eg: In the above command “/i” argument is used to install any msi product “/qn” represents → silent installation without the involvement of UI.
Capture Client Agent Migration Steps