Skip to content

Latest commit

 

History

History
61 lines (44 loc) · 1.43 KB

File metadata and controls

61 lines (44 loc) · 1.43 KB

Get-DeviceAutoVerify

SYNOPSIS

Retrieves auto-verify information for one or more devices.

SYNTAX

Get-DeviceAutoVerify [-Device] <Object[]> [-ProgressAction <ActionPreference>] [<CommonParameters>]

DESCRIPTION

Returns information about auto-verify tests. Each device returns an auto-verify object with one or more runs detailed.

EXAMPLES

EXAMPLE 1

Get-DeviceAutoVerify -Device $device1, $device2

Retrieves auto-verify information for $device1 and $device2.

EXAMPLE 2

PS > $clientDevices = Get-Device -Client 12
PS > $clientDevices | Get-DeviceAutoVerify

Returns auto-verify information for all devices for a client.

PARAMETERS

-Device

The device or devices to retrieve auto-verify information. Accepts integer IDs or Device objects. Accepts from the pipeline.

Type: Object[]
Parameter Sets: (All)
Aliases:

Required: True
Position: 1
Default value: None
Accept pipeline input: True (ByValue)
Accept wildcard characters: False

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

INPUTS

Device objects

OUTPUTS

An Autoverify object or array of Autoverify objects.