		OpenText FirstClass Web Services 16.1

		Running FCWS as a Windows Service
		
Creating FCWS Service(s)
------------------------
To create windows service run the utility program fcws_svc.pyc as follows:

python fcws_svc.py [options] install"

	options:
		 	--username 	domain\\username 	: The Username the service is to run under
 	 		--password 	password 			: The password for the username"
 	 		--servicename name 				: Service name in Registry.
 	 		
If options are omitted the service will run under the Local System account with the default name FCWSSvc.

NOTE: If FCWS is installed in "Program Files" directory the user account MUST be either
	  Local System account or administrator account to be able to create and write to the log file.

To create additional instances of FirstClass Web Services Windows Service use install command with
the option "--servicename" and give it a new service name. 

Starting/Stopping Service(s)
----------------------------
Instances of FCWS service can be started and stopped with the Windows "sc" utility.

To start service    : sc start svcName <list of CherryPy command line arguments>"
To stop service     : sc stop svcName"
To delete service   : sc delete svcName"

Alternatively, a list of CherryPy command line arguments can be appended to the "ImagePath"
entry in the service Registry entry. Once appended the service can be set to start Automatically
or with the Windows "Services" utility.
All FCWS services instances will be created in HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\<fcws service name>.		