Name Property (Service class)
Published: June 20, 2005
Name Property (Service class)
Gets and sets the unique name for this service.
obj.Name = string
| Part | Description |
|---|---|
| obj | An instance of the Service class. |
| string | A string that specifies the name of the service. |
Windows Management Instrumentation (WMI) Script Example
The following code sample lists the properties of all services in the default deployment.
strDeploymentName = "Default"
' Connect to MSS namespace on the specified computer.
Set objLocator = CreateObject("WbemScripting.SWbemLocator")
Set objNamespace = objLocator.ConnectServer("localhost", "root/MSS")
' Get the WMI deployment object.
Set objDeployment = objNamespace.Get("Deployment.Name='" & strDeploymentName & "'")
' Display the server names.
WScript.Echo "Services:" & vbCrLf
If IsArray(objDeployment.Services) Then
For Each service In objDeployment.Services
Set objCurrService = GetObject("winmgmts:" & service)
WScript.Echo objCurrService.Name
WScript.Echo objCurrService.DeploymentName
WScript.Echo objCurrService.Type
WScript.Echo objCurrService.AppServerUrl
Next
End If
