--- title: "Get-VBRNASServerPath" description: "This cmdlet returns files paths to NFS network shared folders." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vbrnasserverpath.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Unstructured Data Backup > Working with Unstructured Data Source > Adding File Shares > Get-VBRNASServerPath" dateModified: "2026-08-19" --- # Get-VBRNASServerPath ## Short Description Returns files paths to NFS network shared folders. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Get-VBRNASServerPath -Server [] ``` ## 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 VBRUnstructuredServer object. To create this object, run the Get-VBRUnstructuredServer cmdlet.

VBRUnstructuredServer

True

Named

True (ByPropertyName, ByValue)

`` This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see [ Microsoft Docs](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_commonparameters?view=powershell-7). ## Output Object The cmdlet returns the `VBRNASServerPath` object that contains settings returns files paths to NFS network shared folders. ## Examples ::: example ### 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`](get-vbrunstructuredserver.md) 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`](get-vbrunstructuredserver.md)