Hello
Thank you for your question and reaching out. I can understand you are having issues related to NFS mount on Windows.
- Mounting the NFS Share
Make sure that the NFS Client is installed.
Open a Powershell command prompt.
Run the appropriate command for your situation:
Server OS: Install-WindowsFeature NFS-Client
Desktop OS: Enable-WindowsOptionalFeature -FeatureName ServicesForNFS-ClientOnly, ClientForNFS-Infrastructure -Online -NoRestart
- Mount the share using the following command, after making the required modifications:
mount -o anon nfs.share.server.name:/share-name X:
Replace nfs.share.server.name with the name of the server the NFS share is on (eg. files.umn.edu)
Replace share-name with the name of the NFS share (eg. OIT-Test)
Replace X: with the desired drive letter.
-----------------------------------------------------------------------------------------------------------------------------
--If the reply is helpful, please Upvote and Accept as answer--