Get-DPMHeadlessDataset

Get-DPMHeadlessDataset

Returns incomplete datasets on the archive tape.

構文

Parameter Set: Default
Get-DPMHeadlessDataset [-Tape] <Media[]> [ <CommonParameters>]

詳細説明

The Get-DPMHeadlessDataset cmdlet returns incomplete datasets on the archive tape.

パラメーター

-Tape<Media[]>

Specifies an array of tape objects.

エイリアス

none

必須?

true

位置は?

1

既定値

none

パイプライン入力を許可する

true (ByValue)

ワイルドカード文字を許可する

false

<CommonParameters>

このコマンドレットは次の共通パラメーターをサポートします。-Verbose、-Debug、-ErrorAction、-ErrorVariable、-OutBuffer、-OutVariable.詳細については、以下を参照してください。 about_CommonParameters (https://go.microsoft.com/fwlink/p/?LinkID=113216)。

入力

入力型は、コマンドレットにパイプできるオブジェクトの型です。

出力

出力型は、コマンドレットによって生成されるオブジェクトの型です。

  • For more information, type "Get-Help Get-DPMHeadlessDataset -detailed".

Example 1: Return an incomplete dataset

This example returns an incomplete dataset on the tape.

The first command uses the Get-DPMLibrary cmdlet to retrieve the library, and stores the result in the variable named $DPMLib.

The second command uses the Get-DPMTape cmdlet to get a list of tapes in the library, and stores the result in the variable named $Tape.

The third command uses the Get-DPMHeadlessDataset cmdlet to retrieve the dataset on the third tape.

PS C:\> $DPMLib = Get-DPMLibrary -DPMServerName "Contoso-DPMServer"
PS C:\> $Tape = Get-Tape -DPMLibrary $DPMLib
PS C:\> Get-DPMHeadlessDataset -Tape $Tape[2]