Excel Add-in Silent Installation and Uninstall
To run a silent uninstall:
-
Open a Command Prompt in the folder where the installer is located or run the cd command to point to your path on the OLD package to uninstall.
TipHolding the Shift key while right-clicking a folder in Windows Explorer, it will display the option Open PowerShell window here.
-
Run the uninstall command:
Powershell.exe -command "Start-Process 'SEI Excel Add-in.exe' -ArgumentList '-s', '-l UninstallLog.log', '/uninstall' -Wait -Verb RunAs"
To run a silent On-premise install (or update if it is already installed):
-
In the Command Prompt run the cd command to point to your path on the NEW package to install.
-
Run the install command:
Powershell.exe -command "Start-Process 'SEI Excel Add-in.exe' -ArgumentList '-s', '-l InstallLog.log' -Wait -Verb RunAs"
To run a silent Cloud install (or update if it is already installed):
-
In the Command Prompt run the cd command to point to your path on the NEW package to install.
-
Run the install command:
Powershell.exe -command "Start-Process 'SEI Excel Add-in.exe' -ArgumentList '-s', '-l InstallLog.log', 'ApplicationType=MultiTenant', 'WebServerUrl=https://clientAbc.nectari.com' -Wait -Verb RunAs"
Property | Description | Required |
---|---|---|
InstallFolder |
Folder where Excel Add-in is installed. |
No |
ApplicationType |
SingleTenant if application is Single-tenant, MultiTenant if Multi-tenant (default: SingleTenant). |
No |
WebServerUrl |
URL of the Web Server to which Excel Add-in will try to connect to. |
If ApplicationType = MultiTenant |