IShellDispatch2.ServiceStop method
Stops a named service.
Syntax
Parameters
- sServiceName [in]
-
Type: BSTR
A String that contains the name of the service.
- vPersistent [in]
-
Type: Variant
Set to true to have the service started by the service control manager when ServiceStart is called. To leave the service configuration unchanged, set vPersistent to false.
Return value
JScript
Type: Variant*
Returns true if successful; otherwise, false.
VB
Type: Variant*
Returns true if successful; otherwise, false.
Remarks
This method is implemented and accessed through the Shell.ServiceStop method.
The method returns false if the service has already been stopped. Before calling this method, you can call Shell.IsServiceRunning to ascertain the status of the service.
This method is not currently available in Microsoft Visual Basic.
Examples
The following examples show the use of ServiceStop to stop the Messenger service. Usage is shown for JScript and VBScript.
JScript:
<script language="JScript">
function fnServiceStopJ()
{
var objShell = new ActiveXObject("shell.application");
var bReturn;
bReturn = objShell.ServiceStop("Messenger", true);
}
</script>
VBScript:
<script language="VBScript"> function fnServiceStopVB() dim objShell dim bReturn set objShell = CreateObject("shell.application") bReturn = objShell.ServiceStop("Messenger", true) set objShell = nothing end function </script>
Requirements
|
Minimum supported client | Windows 2000 Professional, Windows XP [desktop apps only] |
|---|---|
|
Minimum supported server | Windows Server 2003 [desktop apps only] |
|
Header |
|
|
IDL |
|
|
DLL |
|
Send comments about this topic to Microsoft
Build date: 11/28/2012