Panel | ||
---|---|---|
| ||
This article explains how to install and uninstall on the command line Applies to:Macrium Reflect version 5.x , and 6.x ,7.x, and 8.x.all editions and windows versions. |
...
About the Macrium installation process
...
Code Block | ||||
---|---|---|---|---|
| ||||
v8v6.X.XXX_reflect_server_setup_x64.exe /passive /l log.txt LICKEY=XX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXXXX |
...
Code Block | ||||
---|---|---|---|---|
| ||||
v8v6.X.XXX_reflect_server_setup_x64.exe /passive /l log.txt ORDERREF=NNNNNNNN [email protected] |
...
The above examples will display a progress bar. If you wish the install to be completely invisible, replace /passive with /qn.
...
Note |
---|
|
To make sure that the installation won't restart your computer on completion, a no restart parameter can be added.
Code Block | ||||
---|---|---|---|---|
| ||||
v8.X.XXX_reflect_server_setup_x64.exe /passive /l log.txt LICKEY=XX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXXXX /norestart |
Adding any parameters mentioned below to your install script will omit the feature from being installed.
The example below shows a version of the install script that will omit MIG from installing with Reflect:
Code Block | ||||
---|---|---|---|---|
| ||||
NOMIG=YES
NOVIBOOT=YES
NOCBT=YES
NODESKTOPSHORTCUT=YES
eg.
v8.X.XXX_reflect_server_setup_x64.exe /passive /l log.txt LICKEY=XX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXXXX NOMIG=YES |
...
...