Apache HTTP Server 2.2.6
Submitted by galennighthawk
Silent installation of Apache HTTP Server 2.2.6:
msiexec /i "path-to-apache-installer.msi" /passive INSTALLDIR=C:\Apache ALLUSERS=1 SERVERNAME=localhost SERVERDOMAIN=localhost SERVERADMIN=test@test.com SERVERPORT=8000
Explanation:
INSTALLDIR= C:\Apache
This is used to install Apache into a directory of your choosing. May be left out if you wish to use the default installation directory.
ALLUSERS=1
This is used to install Apache as a service for all users. THIS PROPERTY MUST BE PRESENT IF YOU WISH TO HAVE APACHE RUN AS A SERVICE.
SERVERNAME=localhost
This names the server. I recommend this be left as is.
SERVERDOMAIN=localhost
This assigns the server a domain. I recommend this be left as is.
SERVERPORT=8000
This specifies the port that Apache listens on. May be left out if you wish to use the default of Port 80.
NOTE: Some ISP's block port 80. In which case, it is necessary to change the port Apache listens on. If your ISP blocks port 80, then special DNS configuration is also necessary.
Last updated 2007-10-15 02:29:24 by galennighthawk [Edit]



