- 19 Dec 2024
- 1 Minute to read
- PDF
Installing MSI file using CLI
- Updated on 19 Dec 2024
- 1 Minute to read
- PDF
Installing Sanas Noise Cancellation MSI through CLI
This article provides step-by-step instructions for installing the Sanas Noise Cancellation MSI file through the Command Line Interface (CLI) in Admin mode.
Open CLI/Command Prompt in Admin Mode
To begin installation, open the Command Line Interface (CLI) in Administrator mode to ensure proper permissions.
Locate Sanas MSI File
Navigate to the directory where the Sanas MSI file is located. This step is essential for the CLI to locate and execute the installation package.
Execute Command
Execute the following command to install the Sanas Noise Cancellation MSI file using the provided Installer ID.
msiexec /i Sanas.NoiseCancellation-V2-2.24.XXXX.X-nc-prod.msi /q INSTALLERID=<InstallerId> /L*V install.txt
This is the method for silent mode installation.
Run the following command for a UI mode installation:
msiexec /i Sanas.NoiseCancellation-V2-2.24.XXXX.X-nc-prod.msi /L*V install.txt
This will launch the installer in UI mode since the /q (quiet) flag was not provided, following the standard flow as outlined earlier.
For a silent mode installation, use the following:
msiexec /i Sanas.NoiseCancellation-V2-2.24.XXXX.X-nc-prod.msi /q /L*V install.txt
This will run the installer in silent mode, but it will fail because the /INSTALLERID= flag was not included.
Note1: The Installer ID can be found on ‘App Releases’ Section on Sanas Admin Portal by the name ‘App Installation Key’ as shown below:-
Note2: The
INSTALLERID
argument differs between.msi
and.exe
command-line installations:For
.exe
: Use/installerid=
or/INSTALLERID=
For
.msi
: UseINSTALLERID=
(without the/
)