Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than advapi32, prefix the name with the module name and a period.
<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.
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.
Do you know one? Please contribute it!
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 6:28:43 AM - -192.128.133.68
The installed state for a product. Declared in Msi.h.
10/30/2008 10:18:43 AM - -216.37.220.61
The installed state for a product. Declared in Msi.h.
10/30/2008 10:18:43 AM - -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).