NSIS Simple Service Plugin: Difference between revisions
From NSIS Wiki
Jump to navigationJump to search
(→Links) |
|||
Line 9: | Line 9: | ||
== Donation == | == Donation == | ||
If you believe that I am doing a good job and you want to support | If you believe that I am doing a good job and you want to support the development of this plugin please [http://www.speed-soft.de/donation/index.php?language=en donate] any amount via PayPal. | ||
== Short Reference == | == Short Reference == |
Revision as of 15:10, 21 May 2009
This plugin contains basic service functions like start, stop the service or checking the service status. It also contains advanced service functions for example setting the service description, changed the logon account, granting or removing the service logon privilege.
This plugin is using the MPL License or alternatively the LGPL License.
Links
NSIS_Simple_Service_Plugin_1.25.zip (41 KB) The ZIP file containing a precompiled plugin DLL (to be saved in NSIS' plugin directory) and the sources. If you update from a previous version it is strongly recommend to take look at the changelog.
Donation
If you believe that I am doing a good job and you want to support the development of this plugin please donate any amount via PayPal.
Short Reference
SimpleSC::InstallService [name_of_service] [display_name] [service_type] [start_type] [binary_path] [dependencies] [account] [password] SimpleSC::RemoveService [name_of_service] SimpleSC::StartService [name_of_service] [arguments] SimpleSC::StopService [name_of_service] SimpleSC::PauseService [name_of_service] SimpleSC::ContinueService [name_of_service] SimpleSC::RestartService [name_of_service] [arguments] SimpleSC::ExistsService [name_of_service] SimpleSC::GetServiceDisplayName [name_of_service] SimpleSC::GetServiceName [display_name] SimpleSC::GetServiceStatus [name_of_service] SimpleSC::GetServiceBinaryPath [name_of_service] SimpleSC::SetServiceDescription [name_of_service] [service_description] SimpleSC::SetServiceStartType [name_of_service] [start_type] SimpleSC::SetServiceLogon [name_of_service] [account] [password] SimpleSC::SetServiceBinaryPath [name_of_service] [binary_path] SimpleSC::GrantServiceLogonPrivilege [account] SimpleSC::RemoveServiceLogonPrivilege [account] SimpleSC::ServiceIsPaused [name_of_service] SimpleSC::ServiceIsRunning [name_of_service] SimpleSC::ServiceIsStopped [name_of_service] SimpleSC::GetErrorMessage [error_code]
Parameters:
- name_of_service - The name of the service used for Start/Stop commands and all further commands
- display_name - The name as shown in the service control manager applet in system control
- service_type - One of the following codes
- 1 - SERVICE_KERNEL_DRIVER - Driver service.
- 2 - SERVICE_FILE_SYSTEM_DRIVER - File system driver service.
- 16 - SERVICE_WIN32_OWN_PROCESS - Service that runs in its own process. (Should be used in most cases)
- 32 - SERVICE_WIN32_SHARE_PROCESS - Service that shares a process with one or more other services.
- 256 - SERVICE_INTERACTIVE_PROCESS - The service can interact with the desktop.
- Note: If you specify either SERVICE_WIN32_OWN_PROCESS or SERVICE_WIN32_SHARE_PROCESS, and the service is running in the context of the LocalSystem account, you can also specify this value. Example: SERVICE_WIN32_OWN_PROCESS or SERVICE_INTERACTIVE_PROCESS - (16 or 256) = 272
- Note: Services cannot directly interact with a user as of Windows Vista. Therefore, this technique should not be used in new code. See for more information: http://msdn2.microsoft.com/en-us/library/ms683502(VS.85).aspx
- start_type - one of the following codes
- 0 - SERVICE_BOOT_START - Driver boot stage start
- 1 - SERVICE_SYSTEM_START - Driver scm stage start
- 2 - SERVICE_AUTO_START - Service auto start (Should be used in most cases)
- 3 - SERVICE_DEMAND_START - Driver/service manual start
- 4 - SERVICE_DISABLED - Driver/service disabled
- binary_path - The path to the binary including all necessary parameters
- dependencies - Needed services, controls which services have to be started before this one; use the forward slash "/" to add more more than one service
- account - The username/account which should be used
- password - Password of the aforementioned account to be able to logon as a service
- Note: If you do not specify account/password, the local system account will be used to run the service
- arguments - Arguments passed to the service main function.
- Note: Driver services do not receive these arguments.
- error_code - Error code of a function
- service_description - The description as shown in the service control manager applet in system control
The Sample Script
; Install a service - ServiceType own process - StartType automatic - NoDependencies - Logon as ; System Account SimpleSC::InstallService "MyService" "My Service Display Name" "16" "2" "C:\MyPath\MyService.exe" "" "" "" Pop $0 ; returns an errorcode (<>0) otherwise success (0) ; Install a service - ServiceType interact with desktop - StartType automatic - Dependencies on ; "Windows Time Service" (w32time) and "WWW Publishing Service" (w3svc) - Logon as System Account SimpleSC::InstallService "MyService" "My Service Display Name" "272" "2" "C:\MyPath\MyService.exe" "w32time/w3svc" "" "" Pop $0 ; returns an errorcode (<>0) otherwise success (0) ; Remove a service SimpleSC::RemoveService "MyService" Pop $0 ; returns an errorcode (<>0) otherwise success (0) ; Start a service SimpleSC::StartService "MyService" "" Pop $0 ; returns an errorcode (<>0) otherwise success (0) ; Start a service with two arguments "/param1=true" "/param2=1" SimpleSC::StartService "MyService" "/param1=true /param2=1" Pop $0 ; returns an errorcode (<>0) otherwise success (0) ; Start a service with two arguments "-p param1" "-param2" SimpleSC::StartService "MyService" '"-p param1" -param2' Pop $0 ; returns an errorcode (<>0) otherwise success (0) ; Stop a service SimpleSC::StopService "MyService" Pop $0 ; returns an errorcode (<>0) otherwise success (0) ; Pause a service SimpleSC::PauseService "MyService" Pop $0 ; returns an errorcode (<>0) otherwise success (0) ; Continue a service SimpleSC::ContinueService "MyService" Pop $0 ; returns an errorcode (<>0) otherwise success (0) ; Restart a service SimpleSC::RestartService "MyService" "" Pop $0 ; returns an errorcode (<>0) otherwise success (0) ; Restart a service with two arguments "/param1=true" "/param2=1" SimpleSC::RestartService "MyService" "/param1=true /param2=1" Pop $0 ; returns an errorcode (<>0) otherwise success (0) ; Start a service with two arguments "-p param1" "-param2" SimpleSC::RestartService "MyService" '"-p param1" -param2' Pop $0 ; returns an errorcode (<>0) otherwise success (0) ; Check if the service exists SimpleSC::ExistsService "MyService" Pop $0 ; returns an errorcode if the service doesn´t exists (<>0)/service exists (0) ; Get the displayname of a service SimpleSC::GetServiceDisplayName "MyService" Pop $0 ; returns an errorcode (<>0) otherwise success (0) Pop $1 ; return the displayname of the service ; Get the servicename of a service by the displayname SimpleSC::GetServiceName "MyService" Pop $0 ; returns an errorcode (<>0) otherwise success (0) Pop $1 ; return the servicename of the service ; Get the current status of a service SimpleSC::GetServiceStatus "MyService" Pop $0 ; returns an errorcode (<>0) otherwise success (0) Pop $1 ; return the status of the service ; Valid values are: ; 1 - SERVICE_STOPPED ; 2 - SERVICE_START_PENDING ; 3 - SERVICE_STOP_PENDING ; 4 - SERVICE_RUNNING ; 5 - SERVICE_CONTINUE_PENDING ; 6 - SERVICE_PAUSE_PENDING ; 7 - SERVICE_PAUSED ; Get the binary path of a service SimpleSC::GetServiceBinaryPath "MyService" Pop $0 ; returns an errorcode (<>0) otherwise success (0) Pop $1 ; return the binary path of the service ; Get the service logon user of the service SimpleSC::GetServiceLogon "MyService" Pop $0 ; returns an errorcode (<>0) otherwise success (0) Pop $1 ; return the logon username of the service ; Set the description of a service (Not supported on Windows NT 4.0) SimpleSC::SetServiceDescription "MyService" "Sample Description" Pop $0 ; returns an errorcode (<>0) otherwise success (0) ; Set the starttype to automatic of a service SimpleSC::SetServiceStartType "MyService" "2" Pop $0 ; returns an errorcode (<>0) otherwise success (0) ; Sets the service logon to a user and grant the user the "SeServiceLogonPrivilege" SimpleSC::SetServiceLogon "MyService" ".\MyServiceUser" "MyServiceUserPassword" Pop $0 ; returns an errorcode (<>0) otherwise success (0) IntCmp $0 0 +1 Done Done ; If successful grant the service logon privilege to "MyServiceUser" ; Note: Every serviceuser must have the ServiceLogonPrivilege to start the service SimpleSC::GrantServiceLogonPrivilege "MyServiceUser" Pop $0 ; returns an errorcode (<>0) otherwise success (0) Done: ; Sets the service binary path SimpleSC::SetServiceBinaryPath "MyService" "C:\MySoftware\MyService.exe" Pop $0 ; returns an errorcode (<>0) otherwise success (0) ; Remove the "SeServiceLogonPrivilege" from a user SimpleSC::RemoveServiceLogonPrivilege "MyServiceUser" Pop $0 ; returns an errorcode (<>0) otherwise success (0) ; Check if the service is paused SimpleSC::ServiceIsPaused "MyService" Pop $0 ; returns an errorcode (<>0) otherwise success (0) Pop $1 ; return 1 (service is paused) - return 0 (service is not paused) ; Check if the service is running SimpleSC::ServiceIsRunning "MyService" Pop $0 ; returns an errorcode (<>0) otherwise success (0) Pop $1 ; return 1 (service is running) - return 0 (service is not running) ; Check if the service is stopped SimpleSC::ServiceIsStopped "MyService" Pop $0 ; returns an errorcode (<>0) otherwise success (0) Pop $1 ; return 1 (service is stopped) - return 0 (service is not stopped) ; Show the error message if a function fails SimpleSC::StopService "MyService" Pop $0 ; returns an errorcode (<>0) otherwise success (0) IntCmp $0 0 Done +1 +1 Push $0 SimpleSC::GetErrorMessage Pop $0 MessageBox MB_OK|MB_ICONSTOP "Stopping fails - Reason: $0" Done:
Changelog
- From Version 1.24 to 1.25
- SimpleSC::SetServiceLogon supports now non-domain username without the ".\"-Prefix
- SimpleSC::SetServiceBinaryPath function added
- From Version 1.23 to 1.24
- Fixed wait for status bug if the service status changed. Now, if a service stops, starts aso. the plugin will work like the recommendations in the MSDN.
- From Version 1.22 to 1.23
- Removed compiler optimization to avoid a false-positive virusscan.
- From Version 1.21 to 1.22
- SimpleSC::GrantServiceLogonPrivilege and SimpleSC::RemoveServiceLogonPrivilege works now correct with domain names like MyDomain\MyUser.
- Added function SimpleSC::GetServiceLogon to get the logon username of a service.
- From Version 1.20 to 1.21
- SimpleSC::ExistsService results now 0 if the service exists and <> 0 if the service doensn´t exists.
- From Version 1.10 to 1.20
- Every function now returns <> 0 if there is an error. Use SimpleSC::GetErrorMessage to get the message of a function result.
- Added function SimpleSC::GetErrorMessage to get the message of a function result.
- SimpleSC::ExistsService results now 0 if the service exists and <> 0 if the service doensn´t exists.
- SimpleSC::RestartService supports now arguments.
- Note: The signature has been changed. If you update from a previous version you must check your parameters.
- From Version 1.05 to 1.10
- SimpleSC::InstallService supports now more than one dependencies (delimitter is the forward slash).
- Note: The signature has been changed. If you update from a previous version you must check your parameters.
- SimpleSC::InstallService supports now more service types e.g. to create an interactive service.
- Note: The signature has been changed. If you update from a previous version you must check your parameters.
- SimpleSC::StartService supports now arguments.
- Note: The signature has been changed. If you update from a previous version you must check your parameters.
- SimpleSC::InstallService supports now more than one dependencies (delimitter is the forward slash).
- From Version 1.04 to Version 1.05
- The functions SimpleSC::StopService and SimpleSC::RestartService are now improved. Now all dependent services are stopping recursively too.
- From Version 1.03 to Version 1.04
- Fixed bug for possible endless loops. This concerns to the functions StartService, StopService, ContinueService and PauseService.
- From Version 1.02 to Version 1.03
- Added function SimpleSC::GetServiceBinaryPath to get the binary path of a specified service.
- From Version 1.01 to Version 1.02
- Changed wrong documentation informations about the functions SimpleSC::InstallService and SimpleSC::RemoveService.
- From Version 1.0 to Version 1.01
- Changed wrong status-results in Readme.txt. This concerns to the functions ServiceIsPaused, ServiceIsRunning and ServiceIsStopped.
- Changed the access privileges of the plugin. The plugin now uses the lowest privlege of each function to execute.
Important Notes
- You need a ".\"-prefix (e.g. ".\MyServiceUser") for a non-domain account if you use the function "SetServiceLogon"
- The function "SetServiceLogon" only works if the servicetype is "SERVICE_WIN32_OWN_PROCESS"
- The functions "GetServiceDisplayName" or "SetServiceDisplayName" are only available on systems higher than Windows NT.
- If you change the logon of an service to a new user you have to grant him the Service Logon Privilege. Otherwise the service cannot be started by the user you have assigned.
- The functions StartService, StopService, PauseService and ContinueService uses a timeout of 30 seconds. This means the function must be executed within 30 seconds, otherwise the functions will return an error.
- If you have any suggestions, comments or questions please mail me: mailto:rainer@speed-soft.de