<DllImport("advapi32.dll", SetLastError:=True)> _
Public Function DeleteService(ByVal hService As IntPtr) As Boolean
End Function
VB Signature:
Declare Function DeleteService Lib "advapi32.dll" (ByVal hService As Integer) As Integer
User-Defined Types:
None.
Notes:
Use the System.ServiceProcess.ServiceInstaller and System.ServiceProcess.ServiceProcessInstaller when ever possible; however, there are a some cases, such as the state file being corrupted or lost, they do not handel and ended up having to use the API to remove the service.
One could use the System.ServiceProcess.ServiceInstaller and System.ServiceProcess.ServiceProcessInstaller, but doing so will create an InstallState file that may be undesirable.
The DeleteService function marks the specified service for deletion from the service control manager database.
11/3/2008 1:28:43 PM - -212.44.20.206
The installed state for a product. Declared in Msi.h.
10/30/2008 4:18:43 PM - -216.37.220.61
Please edit this page!
Do you have...
helpful tips or sample code to share for using this API in managed code?
corrections to the existing content?
variations of the signature you want to share?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more).