2.4 Silently Installing the Module

To silently (without user intervention) install a module using the default settings, run the following command from the folder in which you saved the module installer:

msiexec.exe /i "AM70-SharePoint-7.x.x.0.msi" /qn

where x.x is the actual version number of the module installer.

To create a log file that describes the operations of the module installer, add the following flag to the command noted above:

/L* "AM70-SharePoint-7.x.x.0.msi.log"

The log file is created in the folder in which you saved the module installer.

NOTE:To perform a silent install on an AppManager agent running Windows 2008 R2 or Windows 2012 R2, open a command prompt at the administrative level and select Run as administrator before you run the silent install command listed above.

To silently install the module on a remote AppManager repository, you can use Windows authentication or SQL authentication.

In a 32-bit environment, the default path to the NetIQ_Debug folder is:

C:\Program Files\NetIQ\Temp\

Windows authentication:

msiexec /i "MSIFilePath \AM70-SharePoint-7.x.x.0.msi" /Lv "DebugFolderPath \NetIQ_Debug\SharePoint7.x.x.msi.log" /qn MO_B_QDBINSTALL=1 MO_B_MOINSTALL=0 AM_B_CALLED_FRM_AMSETUP=1 MO_B_SQLSVR_WINAUTH=1 MO_SQLSVR_NAME=SQL Server\Instance MO_QDBNAME=AMRepositoryName

SQL authentication:

msiexec /i "MSIFilePath \AM70-SharePoint-7.x.x.0.msi" /Lv "DebugFolderPath \NetIQ_Debug\SharePoint7.x.x.msi.log" /qn MO_B_QDBINSTALL=1 MO_B_MOINSTALL=0 AM_B_CALLED_FRM_AMSETUP=1 MO_B_SQLSVR_WINAUTH=0 MO_SQLSVR_USER= SQLLogin MO_SQLSVR_PWD=SQLLoginPassword MO_SQLSVR_NAME=SQL Server\Instance MO_QDBNAME=AMRepositoryName