Jump to: navigation, search

Difference between revisions of "HowTo:Install UBIK Enterprise Service"


Line 1: Line 1:
The executable for the windows service ''UBIK.EnterpriseService.exe'' can be found in the installation directory of [[UBIK_Studio_Basics|{{UBIK}} Studio]]. A windows service can be added using the command line tool ''sc.exe'' from Microsoft, detailed information how to use this tool is provided as command line help or can be found on MSDN. Once a windows service has been created and started properly, the {{UBIKES}} processes the corresponding command files and carries out the operations. More about {{UBIK}} command files and interface operations see {{UBIKIF}}.
+
The executable for the windows service ''UBIK.EnterpriseService.exe'' can be found in the installation directory of [[UBIK_Studio_Basics|{{UBIK}} Studio]]. A windows service can be added using the command line tool ''sc.exe'' from Microsoft, detailed information how to use this tool is provided as command line help or can be found on MSDN. Once a windows service has been created and started properly, the {{UBIKES}} processes the corresponding command files and carries out the operations. For more information about command files and interfacing operations in general see {{UBIKIF}}.
  
 
To install {{UBIKES}}
 
To install {{UBIKES}}
Line 16: Line 16:
 
{{Hint|Use the command line tool sc.exe from Microsoft to add and configure an appropriate windows service!}}
 
{{Hint|Use the command line tool sc.exe from Microsoft to add and configure an appropriate windows service!}}
  
{{Attention|The user account configured for starting the Enterprise Service has to have sufficient permissions to access all necessary locations! If required the user can easilby be changed via the Windows Servicemanager!}}
+
{{Attention|The user account configured for starting the Enterprise Service has to have sufficient permissions to access all necessary locations! If required the user can easily be changed via the Windows Servicemanager!}}
  
 
[[Category:How-To]]
 
[[Category:How-To]]
 
[[Category:Installing]]
 
[[Category:Installing]]
 
[[Category:Interfacing]]
 
[[Category:Interfacing]]

Revision as of 14:18, 22 October 2013

The executable for the windows service UBIK.EnterpriseService.exe can be found in the installation directory of UBIK® Studio. A windows service can be added using the command line tool sc.exe from Microsoft, detailed information how to use this tool is provided as command line help or can be found on MSDN. Once a windows service has been created and started properly, the UBIK® Enterprise Service processes the corresponding command files and carries out the operations. For more information about command files and interfacing operations in general see UBIKIF.

To install UBIK® Enterprise Service

  1. Locate the UBIK.EnterpriseService.exe in your local UBIK® installation directory
  2. Add a windows service using the command line tool sc.exe where
<SERVERNAME> is the name of the local machine, eg. MYCOMPUTER
<PATH_TO> is the installation directory of UBIK®
sc delete "UBIK Enterprise Service"
sc \\<SERVERNAME> create "UBIK Enterprise Service" binPath= "<PATH_TO>\UBIK.EnterpriseService.exe" start= auto DisplayName= "UBIK Enterprise Service"
sc \\<SERVERNAME> description "UBIK Enterprise Service" "UBIK Enterprise Service"
sc \\<SERVERNAME> start "UBIK Enterprise Service"
IC Hint square.pngUse the command line tool sc.exe from Microsoft to add and configure an appropriate windows service!
IC Attention.pngThe user account configured for starting the Enterprise Service has to have sufficient permissions to access all necessary locations! If required the user can easily be changed via the Windows Servicemanager!