DeploymentName Property

DeploymentName Property

Gets and sets the name of the deployment that this service belongs to.

obj.DeploymentName = string

Part

Description

obj

An instance of the Service class.

string

A string that specifies the deployment name.

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 service 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

Member Of

Service class