在注册 AzureStack 时,我遇到了这个错误:
未加载指定的模块“C:\CloudDeployment\ECEngine\EnterpriseCloudEngine.psm1”,因为在任何模块目录中都找不到有效的模块文件。
我检查了目录,没有C:\CloudDeployment\
目录。
有没有人对此有任何线索或从哪里获得上述目录和 PowerShell 脚本?
在注册 AzureStack 时,我遇到了这个错误:
未加载指定的模块“C:\CloudDeployment\ECEngine\EnterpriseCloudEngine.psm1”,因为在任何模块目录中都找不到有效的模块文件。
我检查了目录,没有C:\CloudDeployment\
目录。
有没有人对此有任何线索或从哪里获得上述目录和 PowerShell 脚本?
您需要安装使用 Azure Stack 的工具,这些工具列在项目Github 自述文件中:
要使用这些工具,请获取与 Azure Stack 兼容的 Azure PowerShell 模块。除非您从其他来源安装,否则一种方法是从公共软件包存储库获取,如下所示。请注意,这两者仍可用于针对 Azure 和 Azure Stack 进行操作,但可能缺少一些最新的 Azure 功能。
对于 PowerShell,请安装以下内容:
Install-Module -Name 'AzureRm.Bootstrapper' -Scope CurrentUser Install-AzureRmProfile -profile '2017-03-09-profile' -Force -Scope CurrentUser Install-Module -Name AzureStack -RequiredVersion 1.2.9 -Scope CurrentUser
通过克隆 git 存储库获取工具。
git clone https://github.com/Azure/AzureStack-Tools.git --recursive cd AzureStack-Tools
否则下载工具如下:
invoke-webrequest https://github.com/Azure/AzureStack-Tools/archive/master.zip -OutFile master.zip expand-archive master.zip -DestinationPath . -Force cd AzureStack-Tools-master