Excel Add-in Silent Installation
Install, update, or uninstall the SEI Excel Add-in silently, without any user interaction. This method is designed for IT administrators who need to deploy or update the Add-in across many workstations, or for mass automated rollouts and upgrades.
Use the -s flag to run the installer in silent mode (no user prompts will appear). The installer will create 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 your SEI Web Server to prevent errors and ensure full compatibility.
Run a silent install
Self-hosted deployment
- Open Command Prompt or PowerShell and navigate (
cd) to the folder containing the new installer package. - Run the installation command:
Powershell.exe -command "Start-Process 'Nectari Excel Add-in.exe' -ArgumentList '-s', '-l InstallLog.log' -Wait -Verb RunAs"
Cloud deployment
- Open Command Prompt or PowerShell and navigate (
cd) to the folder containing the new installer package. - 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
| Parameter | Description | Required |
|---|---|---|
InstallFolder | Specifies the folder for installing Excel Add-in. | No |
ApplicationType | Set to SingleTenant (default) or MultiTenant. | No |
WebServerUrl | URL of the web server for Excel Add-in connection. | If ApplicationType=MultiTenant |
Run a silent uninstall
- 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 on the folder, then select Open PowerShell window here from the context menu.
- Run the uninstall command:
Powershell.exe -command "Start-Process 'Nectari Excel Add-in.exe' -ArgumentList '-s', '-l UninstallLog.log', '/uninstall' -Wait -Verb RunAs"