Forum Moderators: phranque
I'm using a Delphi program to configure the httpd.conf file (InstallShield only supports INI files) and install and start several services.
This program basically runs:
apache.exe -k install
apache.exe -k start
But after the installation, the service is installed, but not started. I would like the entire product to be ready to use after installation so it's important that the service is started.
I also tried
apache.exe -k install
net.exe start Apache2
But that too fails to start the service. Can anyone help me out?
Thanks in advance,
-Drogyn