ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Standard functions / Service functions
  • Special case
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
ServiceUninstall (Function)
In french: ServiceDésinstalle
Uninstalls a service. This service can be found on the local computer or on a remote computer.
Linux Disables all the "runlevels" of the service but erases no file (including the startup scripts).
Example
// Uninstalls the service found in the TABLE_Service table
IF ServiceUninstall(COL_Name[TABLE_Service]) = False THEN
Error(ErrorInfo(errMessage))
END
Syntax
<Result> = ServiceUninstall(<Service name> [, <Remote computer>])
<Result>: Boolean
  • True if the service was uninstalled,
  • False otherwise. To get more details on the error, use ErrorInfo.
<Service name>: Character string
Name of the service to uninstall.
<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 uninstall a service on another computer. To use this option, the user must be administrator of remote computer.
If this parameter is not specified or if it corresponds to an empty string, the service is handled locally.
Remarks

Special case

The service is not uninstalled immediately. A request is sent to the system. This request will be processed when the service is over. The service can be ended only when no instance of the service is used.
If the service is currently run, it will be automatically stopped before it is uninstalled.
Component: wd290std.dll
Minimum version required
  • Version 12
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help