This is an archive version of the document. To get the most up-to-date information, see the current version.

Get-VBRPublishedBackupContentInfo

Short Description

Returns details on the mounted content of backup files.

Applies to

Product Edition: Standard, Enterprise, Enterprise Plus

Syntax

Get-VBRPublishedBackupContentInfo [-Session] <VBRBackupContentPublicationSession>  [<CommonParameters>]

Detailed Description

This cmdlet returns details on the mounted content of backup files.

Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Session

Specifies a session that is running to mount the content of backup files. The cmdlet will return details on the content of backup files that are mounted during this session.

Accepts the VBRBackupContentPublicationSession object. To get this object, run the Get-VBRPublishedBackupContentSession cmdlet.

True

0

False

<CommonParameters>

This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the About CommonParameters section of Microsoft Docs.

Output Object

The cmdlet returns the VBRPublishedBackupContentSession object that contains details on the mounted content of backup files.

Examples

Getting Details on Content of Backup Files

This example shows how to get details on the mounted content of backup files.

$session = Get-VBRPublishedBackupContentSession

Get-VBRPublishedBackupContentInfo -Session $session

Mode       : ISCSI

ServerIps  : {198.51.100.0}

ServerPort : 3261

Disks      : {000c93d7-4773-4a55-96e7-8f007b27a62c (vm-97654)\windsrv2034_2-flat.vmdk}

Perform the following steps:

  1. Run the Get-VBRPublishedBackupContentSession cmdlet. Save the result to the $session variable.
  2. Run the Get-VBRPublishedBackupContentInfo cmdlet. Set the $session variable as the Session parameter value.

The cmdlet output will contain the following details on the mounted content of backup files: Mode, ServerIps, ServerPort and the Disks.

Related Commands

Get-VBRPublishedBackupContentSession