Question
How do I make a silent installation of a MIKE product?
Answer
A silent installation is the ability to install a software product without any user interaction. The silent installation is especially useful for businesses that want to deploy the application on multiple computers without needing user intervention.
MIKE product supports silent installation as well. Instead of going through the installation wizard, the application will be installed automatically by calling the installer with specific silent install parameters.
#01 - Installing MIKE (version 2017 and onwards) with default settings
Use the following syntax when installing MIKE with default settings:
<path to installation file>\Setup.exe /v”/qn” (no user interaction, no UI)
or
<path to installation file>\Setup.exe /v”/qr” (no user interaction, reduced UI)
#02 - Changing the installation directory
When changing the installation directory you can use the following parameters:
<path to installation file>\Setup.exe /v”INSTALLDIR=C:\MyPreferredPath /qn”
<path to installation file>\Setup.exe /v”DHILICENSEOPTIONS=network DHINETWORKSERVERNAME=MyLicenseServer /qn”
<path to installation file>\Setup.exe /v”DHILICENSEOPTIONS=local DHINETWORKSERVERNAME=localhost /qn”
"c:\Program Files (x86)\Common Files\DHI\bin\NetlmAdmin.exe" /silent /import License.dhilic2.
<path to installation file>\Setup.exe /v”DHILICENSEOPTIONS=network DHINETWORKSERVERNAME=localhost /qn”
msiexec.exe /I <path to installation files>\ArcGISPro.msi /qn ALLUSERS=1 ACCEPTEULA=YES (no UI, no user interaction)
or
msiexec.exe /I <path to installation files>\ArcGISPro.msi /qr ALLUSERS=1 ACCEPTEULA=YES (reduced UI, no user interaction)
If you are using a floating/concurrent ArcGIS license, you can use the following syntax to set up the license during a silent installation:
msiexec.exe /I <path to installation files>\ArcGISPro.msi /qn ALLUSERS=1 ACCEPTEULA=YES ESRI_LICENSE_HOST= MyESRILicenseServer SOFTWARE_CLASS=Professional AUTHORIZATION_TYPE=CONCURRENT_USE
FURTHER INFORMATION AND USEFUL LINKS