Skip to main content

Excel Add-in Silent Installation

Install, update, or uninstall the SEI Excel Add-in silently, without any user interaction. This method is for IT administrators who need to deploy or update the Add-in across many workstations, or for automated rollouts and upgrades.

Use the -s flag to run the installer in silent mode (no user prompts will appear). The installer creates a log file (InstallLog.log for installs, UninstallLog.log for uninstalls) in the current directory, making it easy to review installation details and troubleshoot issues.

important

Always use an installer version that matches SEI to prevent errors and ensure full compatibility.

Run a silent install

Self-hosted deployment

  1. Open Command Prompt or PowerShell and navigate (cd) to the folder containing the new installer package.
  2. Run the installation command:
    Powershell.exe -command "Start-Process 'Nectari Excel Add-in.exe' -ArgumentList '-s', '-l InstallLog.log' -Wait -Verb RunAs"

Cloud deployment

  1. Open Command Prompt or PowerShell and navigate (cd) to the folder containing the new installer package.
  2. Run the installation command:
    Powershell.exe -command "Start-Process 'Nectari Excel Add-in.exe' -ArgumentList '-s', '-l InstallLog.log', 'ApplicationType=MultiTenant', 'WebServerUrl=https://clientAbc.nectari.com' -Wait -Verb RunAs"

Optional command-line parameters

ParameterDescriptionRequired
InstallFolderSpecifies the folder for installing Excel Add-in.No
ApplicationTypeSet to SingleTenant (default) or MultiTenant.No
WebServerUrlURL of the web server for Excel Add-in connection.If ApplicationType=MultiTenant

Run a silent uninstall

  1. Open Command Prompt or PowerShell in the folder containing the old installer package you wish to uninstall. To quickly open a PowerShell window here, hold Shift and right-click the folder, then select Open PowerShell window here from the context menu.
  2. Run the uninstall command:
    Powershell.exe -command "Start-Process 'Nectari Excel Add-in.exe' -ArgumentList '-s', '-l UninstallLog.log', '/uninstall' -Wait -Verb RunAs"