Invoke-WASJob

Invoke-WASJob

Creates and runs a job instance.

Sintaxis

Parameter Set: Default
Invoke-WASJob [-Job] <WASJob[]> [[-Runtag] <String> ] [[-Testpass] <String> ] [ <CommonParameters>]

Descripción detallada

The Invoke-WASJob cmdlet creates a new job instance in . It also initiates a run of the job instance. The Job parameter is required.

Parámetros

-Job<WASJob[]>

Specifies the job to invoke. This is a required parameter.

Alias

ninguno

¿Requerido?

true

¿Posición?

1

Valor predeterminado

ninguno

¿Aceptar canalización?

true (ByValue)

¿Aceptar caracteres comodín?

false

-Runtag<String>

Specifies the run tag you want to add to the job. If not specified, the default run tag is used.

Alias

ninguno

¿Requerido?

false

¿Posición?

2

Valor predeterminado

ninguno

¿Aceptar canalización?

false

¿Aceptar caracteres comodín?

false

-Testpass<String>

Specifies the test pass you want to label the job with. If not specified, the default test pass is used.

Alias

ninguno

¿Requerido?

false

¿Posición?

3

Valor predeterminado

ninguno

¿Aceptar canalización?

false

¿Aceptar caracteres comodín?

false

<CommonParameters>

Este cmdlet admite los siguientes parámetros comunes: -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer y -OutVariable. Para obtener más información, consulte about_CommonParameters (https://go.microsoft.com/fwlink/p/?LinkID=113216).

Entradas

El tipo de entrada es el tipo de los objetos que se pueden canalizar al cmdlet.

Salidas

El tipo de resultado es el tipo de objetos que emite el cmdlet.

Ejemplos

Example 1: Run a job

This command gets all the jobs with "automated" in the job name, saves it as a variable, and runs the jobs.

PS C:\> $job = Get-WASJob -JobName *automated*
PS C:\> Invoke-WASJob -Job $job

Example 2: Run a job specifying runtag and testpass

This command gets all the jobs with "automated" in the job name, saves it as a variable, and runs the jobs adding run tag and test pass metadata to the job.

PS C:\> $job = Get-WASJob -JobName *automated*
PS C:> Invoke-WASJob -Job $job -RunTag "Test iteration 5" -TestPass "Spring 2012"

Temas relacionados

Get-WASJob

Update-WASJob

Windows Assessment Services Technical Reference