Skip to main content

Net Express Application Server silent install script

  • February 15, 2013
  • 0 replies
  • 0 views

Problem:

Is there a script or utility to do this.

Resolution:

For information on installation and use of Application Server, open Net Express Help and these folders and books:

Contents

  Using Net Express

    Shipping Applications

      How to...

        various scripts, etc.

Script to install silently

rem This script installs Enterprise Server or Application Server silently

rem Where d:\\mfserver is the installation directory

rem Where d:\\mfserver\\licensdb is the location of the license database

rem Where NXDEVAS5 01280 ... is the license key

rem Before running this script:

rem      modify the file MicroFocusAppServ??.ini or MicroFocusEServ??.ini as appropriate,

rem      so that setup does not prompt for a license key.

rem      Set the entry ASLMNoLicensePrompt=Yes

echo off

echo ***** Starting installation *****

setup INSTALLDIR=d:\\mfserver  -s

aslmpclocate -q

if errorlevel 0 goto FOUNDDB

aslmpclocate -q d:\\mfserver\\licensdb

aslmpcsilent 1 NXDEVAS5 01280 10780 05C04 D5E09 55C0

if errorlevel 0 goto END

echo ***** License not set. Call Support *****

goto END

:FOUNDDB

aslmpcsilent 2 NXDEVAS5 01280 10780 05C04 D5E09 55C0

if errorlevel 0 goto END

echo ***** License not set. Call Support *****

goto END

:END

echo ***** Installation completed *****

Old KB# 5174