Difference between revisions of "HowTo:Install UBIK Enterprise Service"
Line 1: | Line 1: | ||
− | The executable for the windows service ''UBIK.EnterpriseService.exe'' can | + | The executable for the windows service ''UBIK.EnterpriseService.exe'' can be found in the installation directory of [[Installation UBIK Studio|{{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}}. |
− | < | + | <source lang="dos"> |
− | @echo off sc delete "UBIK Enterprise Service" | + | @echo off 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> 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> description "UBIK Enterprise Service" "UBIK Enterprise Service" |
− | sc \\<SERVERNAME> start "UBIK Enterprise Service" | + | sc \\<SERVERNAME> start "UBIK Enterprise Service" |
− | </ | + | </source> |
{{Attention|Please make sure that you execute the EnterpriseService with a user that has sufficient user rights for your automation tasks! The user can be changed in the Windows Servicemanager!}} | {{Attention|Please make sure that you execute the EnterpriseService with a user that has sufficient user rights for your automation tasks! The user can be changed in the Windows Servicemanager!}} |
Revision as of 08:27, 3 September 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. More about UBIK® command files and interface operations see UBIKIF.
@echo off 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"
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"
Please make sure that you execute the EnterpriseService with a user that has sufficient user rights for your automation tasks! The user can be changed in the Windows Servicemanager! |