Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/powershell/12.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Powershell 获取帮助找不到ServiceFabric模块的帮助文件_Powershell_Azure Service Fabric - Fatal编程技术网

Powershell 获取帮助找不到ServiceFabric模块的帮助文件

Powershell 获取帮助找不到ServiceFabric模块的帮助文件,powershell,azure-service-fabric,Powershell,Azure Service Fabric,我安装了Azure Service Fabric SDK,希望获得有关某些命令的帮助信息: Get-Help Connect-ServiceFabricCluster 它在备注下返回以下输出: REMARKS Get-Help cannot find the Help files for this cmdlet on this computer. It is displaying only partial help. -- To download and install H

我安装了Azure Service Fabric SDK,希望获得有关某些命令的帮助信息:

Get-Help Connect-ServiceFabricCluster
它在备注下返回以下输出:

REMARKS
    Get-Help cannot find the Help files for this cmdlet on this computer. It is displaying only partial help.
      -- To download and install Help files for the module that includes this cmdlet, use Update-Help.
我在管理员窗口中运行了更新帮助-模块ServiceFabric,但仍然出现此错误


如何获得ServiceFabric powershell命令的帮助?

我刚刚从管理窗口成功运行了更新帮助,您是否仍看到此问题?您可以尝试运行更新帮助-模块ServiceFabric-强制更新


听起来好像PowerShell更新帮助有问题。提供了更多的信息和解决方法。

我在核心命令方面也遇到了类似的问题,即我无法获得get命令的详细帮助

在我的例子中,它有助于在运行更新帮助时为en-US指定区域设置,因为在找不到其他帮助文件时,返回en-US似乎有问题

它使用的命令:

Update-Help -UICulture en-US
另见:

我知道我可以在MSDN上获得帮助。我想在powershell中得到帮助。