Services - Get State

Declaration

<AMSERVICES ACTIVITY="state" SERVICE="text" REMOTEMACHINE="text" REMOTEDOMAIN="text" REMOTEUSERNAME="text" REMOTEPASSWORD="text (encrypted)" RESULTVARIABLE="text" />

Related Topics   

Description

Retrieves the state (i.e. stopped, running, paused, etc.) of a particular service and populates a variable with the result. This activity supports local or remote services.

Practical Usage

Ideally used to determine the current status of a local or remote service. With this activity, a task can be created to open an Excel file of computer names and check the service state on each of them. Thereafter, it can save the results in another log file.

Parameters

Service

Property

Type

Required

Default

Markup

Description

Service name

Text

Yes

(Empty)

SERVICENAME="Task Scheduler"

The name of the service in which to retrieve information about. This value can be entered manually or by pressing the down arrow to allow selection from a drop-down list of currently running services. This parameter supports entry of the "Service Name" or "Display Name" as specified in the Services console (services.msc) under the General tab properties of the service.

Include devices in the list of services (local connection only)

---

---

---

---

If enabled, indicates that device drivers will be included in the Service name parameter's drop-down list of services. This parameter is disabled by default and is not available if a remote service is specified. This is a design time parameter and therefore includes no markups.

Place result into variable

Text

Yes

(Empty)

RESULTVARIABLE="VariableName"

The Automate variable to populate with the state of the service. Possible values for a service state are:

  • Stopped - The service is not running.

  • StartPending - The service is starting.

  • StopPending - The service is stopping.

  • Running - The service is running.

  • ContinuePending - The service is pending continuation.

  • PausePending - The service pause is pending.

  • Paused - The service is paused.

Computer

Property

Type

Required

Default

Markup

Description

Local computer

---

---

---

---

If enabled, indicates that this activity will be performed on a service located on the local computer. This parameter is enabled by default. If this parameter is selected, the Another computer parameter becomes inactive. This is a visual mode parameter used during design time only, therefore, it contains no markups.

Another computer

---

---

---

---

If enabled, indicates that this activity will be performed on a service located on a remote computer. The parameters below become active if this parameter is enabled. This is a visual mode parameter used during design time only, therefore, it contains no markups.

Computer

Text

Yes if set to Another computer

(Empty)

REMOTEMACHINE="MachineName"

The computer name of the remote machine in which to connect to.

Domain

Text

Yes if set to Another computer

(Empty)

REMOTEDOMAIN="DomainName"

The domain that the remote machine belongs to.

Username

Text

Yes if set to Another computer

(Empty)

REMOTEUSERNAME="Username"

A valid username used to log onto the remote machine. This user must have proper permissions to modify services on the remote machine.

Password

Text

Yes if set to Another computer

(Empty)

REMOTEPASSWORD="password"

The password associated with the username entered above.

 

Description

Error Causes

On Error

Examples

NOTE:
  • The sample AML code below can be copied and pasted directly into the Steps Panel of the Task Builder.
  • Parameters containing user credentials, files, file paths, and/or other information specific to the task must be customized before the sample code can run successfully.

Description

This task gets the current state of the "DNS Client" service and displays it in a message dialog.

<AMVARIABLE NAME="theState" />

<AMSERVICES ACTIVITY="state" SERVICE="DNS Client" RESULTVARIABLE="theState" />

<AMSHOWDIALOG WINDOWTITLE="Service State">The "DNS Client" service is in the following state: %theState%   </AMSHOWDIALOG>