Implementing Cisco Collaboration Applications (CLICA) — Question 68
An engineer must create a Cisco Jabber installation switch. The engineer created the installation file and named it CiscoJabberSetup.msi. Which CLI command installs Jabber silently on a Windows machine and deletes any existing bootstrap?
Answer options
- A. msiexec.exe /i CiscoJabberSetup.msi /silent CLEAR=0
- B. msiexec.exe /t CiscoJabberSetup.msi /s CLEAN=1
- C. msiexec.exe /t CiscoJabberSetup.msi /silent CLEAN=1
- D. msiexec.exe /i CiscoJabberSetup.msi /quiet CLEAR=1
Correct answer: D
Explanation
The correct command is option D because it uses '/i' to install the package and '/quiet' for a silent installation, while also including 'CLEAR=1' to remove any existing bootstrap. Options A and C incorrectly use 'CLEAR=0' and 'CLEAN=1', which are not valid for the specified requirements. Option B uses '/t', which is not appropriate for installation.