This topic contains information relating to installing or uninstalling CM4D without the installer user interface via command line, referred to as a 'silent' or 'quiet' installation. This installation option is compatible with CM4D v24 and up.
Some recommendations:
Option |
Description |
Command |
|
Disable Reboot |
Prevents the automatic reboot that is triggered when the installation is finished. A manual system reboot is highly recommended. |
/norestart |
|
Logging |
Generates an installation log file. |
||
|
Relative Path |
The log file is created wherever the installer is located. |
/L*V "example.log" |
Absolute Path |
The log file is created in the location specified by the path. |
/L*V "C:\installs\example.log" |
|
Service User |
Set the type and credentials of the user that will be configured to run the CM4D Services, such as Scheduler or Results. | ||
Local System |
Installs the CM4D services with the default 'Local System' user. This is equivalent to the 'Quick Install' method during manual installation. |
QUICK_INSTALL_OR_INVALIDUSER="1" |
|
Domain User |
Install the CM4D services with a Domain user account by providing a user and password, with the user name including the domain name. |
CM4D_SERVICE_USER="domain\username" CM4D_SERVICE_USER_PASS="password" |
|
Windows User |
Install the CM4D services with a local Windows user account by providing a user and password. |
CM4D_SERVICE_USER=".\cm4dservice" CM4D_SERVICE_USER_PASS="password" |
|
User Interface |
Runs as a silent installation with no user interface (GUI). |
/qn |
"ATS CM4D Server 64 Bit v24.x.xxxxx.x.exe" QUICK_INSTALL_OR_INVALIDUSER="1" /qn /norestart /L*V "example.log"
"ATS CM4D Server 64 Bit v24.x.xxxxx.x.exe" CM4D_SERVICE_USER="ats-global\hmiyazaki" CM4D_SERVICE_USER_PASS="password" /qn /norestart /L*V "example.log"
Option |
Description |
Command |
|
Disable Reboot |
Prevents the automatic reboot that is triggered when the uninstall is finished. A manual system reboot is highly recommended. |
/norestart |
|
Logging |
Generates a log file with information relating to the uninstallation. |
||
|
Relative Path |
The log file is created wherever the installer is located. |
/L*V "example.log" |
Absolute Path |
The log file is created in the location specified by the path. |
/L*V "C:\installs\example.log" |
|
Uninstall |
Executes a silent uninstall. |
/x |
|
Uninstall |
Instructs the bootstrapper to call the MSI inside the EXE to initiate the uninstall protocol. |
// |
|
User Interface |
Runs as a silent uninstallation with no user interface (GUI). |
/qn |
"ATS CM4D Server 64 Bit v24.x.xxxxx.x.exe" /x // /qn /norestart /l*v “install.log”
Can we improve this topic?