Excel Add-in Silent Installation and Uninstall

To run a silent uninstall:

  1. 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.

    Tip

    Holding the Shift key while right-clicking a folder in Windows Explorer, it will display the option Open PowerShell window here.

  2. Run the uninstall command:

    Powershell.exe -command "Start-Process 'Nectari 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):

  1. In the Command Prompt run the cd command to point to your path on the NEW package to install.

  2. Run the install command:

    Powershell.exe -command "Start-Process 'Nectari 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):

  1. In the Command Prompt run the cd command to point to your path on the NEW package to install.

  2. Run the install 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"

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