Skip to content
Follow
Ubuntu Linux Windows

How to Mount NFS Shares on Windows 11

Richard
Written by
Richard
May 9, 2018 Updated Sep 15, 2026 3 min read
How to Mount NFS Shares on Windows 11
How to Mount NFS Shares on Windows 11

Mounting an NFS share on Windows 11 lets your PC open and edit files stored on a remote server or NAS device over a local network as if they are on your own hard drive. NFS, or Network File System, is a standard protocol that lets Windows talk directly to Linux and Unix machines without extra file transfer software.

Advertisement

You can set up this connection in under 5 minutes by turning on the built-in Windows feature called Client for NFS and running a quick command in PowerShell.

⚡ Quick Answer

Enable the NFS Client feature via Windows Optional Features. Then, use Command Prompt with administrator privileges and the `mount` command to connect to the NFS server and assign a drive letter.

Advertisement

Set Up an NFS Share First

Setting up an NFS share on your server is the first step before you can mount NFS shares Windows 11 on your PC. You need a properly configured and exported share on your network storage or Linux server so your Windows computer can connect to it over the network without permission errors.

How to install and export NFS share on Ubuntu

📝Good to KnowOnce your NFS share is ready on the server, come back and continue with the steps below.

Enable NFS Services on 🪟 Windows 11

Turning on Services for NFS (a built-in Windows tool for connecting to network file systems) lets your PC talk to Linux and network servers. Windows 11 hides this feature by default, so you must open the Windows Features menu in Control Panel to check the box and install it before you can mount NFS shares Windows 11.

Advertisement
  1. Open your Windows machine.
  2. Go to Settings > Programs > Programs and Features.
  3. Click on "Turn Windows features on or off" on the left side.
Windows 11 Programs and Features NFS option
Windows 11 Programs and Features NFS option
  1. A window will open. Look for NFS Services in the list.
  2. Check the box next to NFS Services to enable it.
Enabling NFS Services in Windows 11 features
Enabling NFS Services in Windows 11 features
  1. Click OK and wait for Windows to install the feature.
  2. Close the window when done.

Mount the NFS Share Using Command Prompt

Using Command Prompt to mount NFS shares Windows 11 links your network folder to a local drive letter. You open Command Prompt with administrator rights and type the mount command using your server IP address and folder path to make the remote files show up on your computer.

Now your Windows machine is ready to access NFS shares. Follow these steps:

  1. Open Command Prompt as Administrator. (Right-click on Command Prompt and select "Run as administrator.")
  2. Type the following command to mount the NFS share. Replace the server address and paths with your actual NFS server details:
    mount 192.168.1.100:/home/nfsshare Z:

  3. Press Enter.

What happens? Windows connects to your NFS server and links the shared folder to drive letter Z. You should see a message confirming the mount was successful.

Command prompt for mounting NFS share on Windows
Command prompt for mounting NFS share on Windows

Access Your Mounted NFS Share

Opening File Explorer is the easiest way to view and edit files after you mount NFS shares Windows 11. Your connected network folder appears under This PC with the drive letter you picked during the command prompt step, letting you open documents and save files just like a normal hard drive.

Advertisement
  1. Open File Explorer on your Windows machine.
  2. Look for the mounted drive (labeled as Z: or whatever letter you chose).
  3. Click on it to view and use the files stored on your NFS server.
NFS share mount command in Windows terminal
NFS share mount command in Windows terminal

That's it! You can now read, write, and manage files on the NFS share just like any other folder on your computer.

Summary

NFS lets computers share files over a network, and you can mount NFS shares on Windows 11 by enabling NFS Services and using the Command Prompt.

Can 🪟 Windows 11 mount an NFS share?

The Network File System (NFS) is a widely used file-sharing protocol in Linux environments. However, many Windows administrators may not know you can mount an NFS share easily on Windows 11 and Windows Server.

How do I mount NFS persistently in 🪟 Windows 11?

Mount NFS Share Persistently: Open Command Prompt as an administrator. Create a directory where you want to mount the NFS share, e.g., C:\NFS_Share. To make the mount persistent, add the mount command to the Startup folder or create a scheduled task that runs at startup.

Was this guide helpful?

Was this helpful?
Richard

About the Author

Richard

Tech Writer, IT Professional

Richard, a writer for Geek Rewind, is a tech enthusiast who loves breaking down complex IT topics into simple, easy-to-understand ideas. With years of hands-on experience in system administration and enterprise IT operations, he’s developed a knack for offering practical tips and solutions. Richard aims to make technology more accessible and actionable. He's deeply committed to the Geek Rewind community, always ready to answer questions and engage in discussions.

Advertisement

📚 Related Tutorials

How to Display Full Path in Windows 11 File Explorer
Windows How to Display Full Path in Windows 11 File Explorer
How to Access Control Panel in Windows 11
Windows How to Access Control Panel in Windows 11
How to Mount Linux File System on Windows 11 via WSL
Ubuntu Linux How to Mount Linux File System on Windows 11 via WSL
How to Access Settings in Windows 11
Windows How to Access Settings in Windows 11

0 Comments

  • steve Spence

    The mount command in windows 10 gives returns an error without the \\ before the ip address

    Reply
  • Hi! Thank you for the article! Could you change from `mount 10.0.2.7/home Z:\` to `mount 10.0.2.7:/home Z:\` how on your screenshot, please.

    Reply
  • carlos perez

    on my W10, after mounting my share it did not appear under “This PC” I just mapped manually

    thanks

    Reply
  • Didn’t really work for my needs, not possible to edit existing files. I tried for hours to get real write permissions but it isn’t possible

    Reply
  • @Kross – try this to enable write permissions – refer https://graspingtech.com/mount-nfs-share-windows-10/

    Reply
  • Jay Kavanaugh

    I can see the directory but the files in the directory are not visible from windows. I have a network with a couple of linux machines and the 2nd linux box can see the files but windows cannot:

    T:\>dir
    Volume in drive T has no label.
    Volume Serial Number is 0000-0000

    Directory of T:\

    17/11/2018 01:15 ..
    17/11/2018 01:15 .
    0 File(s) 8,192 bytes
    2 Dir(s) 160,240,812,032 bytes free

    T:\>mount \\192.168.1.5\export\video T:

    fred@HTPC-A:/mnt/video$ ls -al
    total 48
    drwxrwxr-x 12 fred fred 4096 May 3 2019 .
    drwxr-xr-x 7 root root 4096 Nov 7 2018 ..
    drwxrwxr-x 2 fred fred 4096 May 8 2019 CNNs
    drwxrwxr-x 9 fred fred 4096 Mar 23 2017 GoPro
    drwxrwxr-x 13 fred fred 4096 Mar 23 2017 Music
    drwxrwxr-x 14 fred fred 4096 Mar 23 2017 TV
    fred@HTPC-A:/mnt/video$

    Reply
  • Really thank you I have passed my exam because of your tutorial 🙂

    Reply

Leave a Comment

Your email address will not be published. Required fields are marked *