'Where are the Windows Powershell NFS commands?

I'm following the following tutorials on setting up NFS mapping on Windows 10, but am unable to get the Get-NFS* commands working:

https://stealthbits.com/blog/mounting-nfs-exports-unix-server/

What I have done so far:

  1. Opened up Power Shell. Running the version query shows the following:
PS C:\> $PSversionTable

Name                           Value
----                           -----
PSVersion                      5.1.19041.1645
PSEdition                      Desktop
PSCompatibleVersions           {1.0, 2.0, 3.0, 4.0...}
BuildVersion                   10.0.19041.1645
CLRVersion                     4.0.30319.42000
WSManStackVersion              3.0
PSRemotingProtocolVersion      2.3
SerializationVersion           1.1.0.1
  1. Installed NFS utilities as described in the tutorial:

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

  1. Ran Get-NfsMappingStore, which produces an error:
Get-NfsMappingStore : The term 'Get-NfsMappingStore' is not recognized as the name of a cmdlet, function, script file,
or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and
try again.
At line:1 char:1
+ Get-NfsMappingStore
+ ~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : ObjectNotFound: (Get-NfsMappingStore:String) [], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException

Any idea what am I missing?



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source