Get-VBRNASServerPath

Short Description

Returns files paths to NFS network shared folders.

Applies to

Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License

Syntax

Get-VBRNASServerPath -Server <VBRNASServer>  [<CommonParameters>]

Detailed Description

This cmdlet returns files paths to NFS network shared folders.

Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Server

Specifies NFS network shared folders. The cmdlet will return file paths to these shared folders.

Accepts the VBRNASServer object. To create this object, run the Get-VBRUnstructuredServer cmdlet.

True

Named

True (ByValue, ByPropertyName)

<CommonParameters>

This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.

Output Object

The cmdlet returns the VBRNASServerPath object that contains settings returns files paths to NFS network shared folders.

Examples

Getting Files Paths to NFS Network Shared Folders

This example shows how to get file path to the \\LinuxSRV2049\November share folder.

$server = Get-VBRUnstructuredServer -Name "\\LinuxSRV2049\November"

Get-VBRNASServerPath -Server $server

Perform the following steps:

  1. Run the Get-VBRUnstructuredServer cmdlet. Specify the Name parameter value. Save the result to the $server parameter.
  2. Run the Get-VBRNASServerPath cmdlet. Set the $server variable as the Server parameter value.

Related Commands

Get-VBRUnstructuredServer