Mounting NFS on Windows OS as Client

Mounting NFS on Windows OS as Client

·

1 min read

Using the NFS protocol, you can transfer files between computers running Windows and other non-Windows operating systems, such as Linux or UNIX.

NFS in Windows Server includes Server for NFS and Client for NFS. A computer running Windows Server can use Server for NFS to act as a NFS file server for other non-Windows client computers. Client for NFS allows a Windows-based computer running Windows Server to access files stored on a non-Windows NFS server.

Requirements

Windows and Windows Server versions

Windows supports multiple versions ofthe NFS client and server, depending on operating system version and family.

Operating SystemsNFS Server VersionsNFS Client Versions
Windows 7, Windows 8.1, Windows 10N/ANFSv2, NFSv3
Windows Server 2008, Windows Server 2008 R2NFSv2, NFSv3NFSv2, NFSv3
Windows Server 2012, Windows Server 2012 R2, Windows Server 2016, Windows Server 2019NFSv2, NFSv3, NFSv4.1NFSv2, NFSv3

Installation

  • Server OS:

    Install-WindowsFeature NFS-Client
    
  • Desktop OS:

    Enable-WindowsOptionalFeature -FeatureName ServicesForNFS-ClientOnly, ClientForNFS-Infrastructure -Online -NoRestart
    

Configuration