ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / WLanguage functions / Standard functions / Service functions
  • Operating mode
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
ServiceContinue (Function)
In french: ServiceRelance
Restarts a paused service.
Example
// Relance le service présent dans la table TABLE_Service
IF ServiceContinue(COL_Nom[TABLE_Service]) = False THEN
	Error(ErrorInfo(errMessage))
END
Syntax
<Result> = ServiceContinue(<Service name> [, <Remote computer>])
<Result>: Boolean
  • True if the restart of the service was requested,
  • False otherwise. To get more details on the error, use ErrorInfo.
<Service name>: Character string
Name of the service to restart.
<Remote computer>: Optional character string
IP address of the remote computer in xxx.xxx.xxx.xxx format (returned by NetIPAddress) or name of the remote computer (returned by NetMachineName). This parameter is used to restart a service on another computer. To use this option, the user must be administrator of remote computer.
If this parameter is not specified or is an empty string (""), the service is handled locally.
Remarks
WINDEVWindowsUser code (UMC)

Operating mode

ServiceContinue sends a request to restart a service to the service manager. This operation may not be performed immediately. To find out the status of the service, use ServiceWaitStatus.
Component: wd300std.dll
Minimum version required
  • Version 12
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 03/27/2025

Send a report | Local help