How to create an NFS Share in server 2019

Recently needed to create an NFS share to hosts some ISO’s for Xen server

New-NfsShare -Name "NFSshare01" -Path "C:\NFSshare" -EnableUnmappedAccess $True -Authentication Sys


Grant-NfsSharePermission -Name "NFSshare01" -ClientName "10.0.0.110" -ClientType "host" -Permission "readwrite" -AllowRootAccess $True
1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
Loading...