在哪里可以找到似乎缺失的 PowerShell 5.1 模块?

在哪里可以找到似乎缺失的 PowerShell 5.1 模块?

我一直在尝试将旧的 NAS 连接到我的 Windows 10 Pro 笔记本电脑。

我通过 启用了 NFS 客户端Programs and Features->Turn Windows features on or off。因此,我可以mount 192.168.x.x:/share Y:从 成功运行CMD。但这存在权限问题,因此我试图弄清楚如何使用 PowerShell (v5.1) 来执行此操作,以查看它是否有允许我在安装共享时设置权限的选项。不幸的是,我没有任何 NFS cmdlet。例如,运行Get-NfsShare会抛出无法识别的名称错误:

The term 'Get-NfsShare' 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

是否有一个官方的 Microsoft 存储库可供安装模块?NFS 模块应该叫什么?它似乎不是NFSnfs

编辑:Powershell 5.1(主题和正文已更新)

编辑2:我甚至无法导入 NFS 模块。可能是因为我甚至不知道我是否用正确的名称调用了它。如果是这样,那么我肯定需要安装一些东西,是吗?

> Import-Module NFS
The specified module 'NFS' was not loaded because no valid module file was found in any module directory

编辑3:我无法使用 安装任何东西Add-WindowsFeature。看来 cmdlet 是由servermanagerWindows 10 未提供的模块提供的。

我还运行了Get-Module -list查看哪些模块可供我使用。没有任何迹象表明存在任何 NFS 模块。我还尝试运行Get-Command查看哪个模块可能提供我需要的任何命令,但即使这样也返回了无法识别的 cmdlet,等等。

相关内容