我在 powershell 脚本中使用了 Az 模块,该脚本从 powershell 核心执行,但在从应用程序(.Net 核心 SDK 2.1)执行脚本时出错。
我检查了 Az.Compute 模块是否已在那里导入。
我也在脚本中添加了 Import-Module Az.compute -verbose -force
。
使用 runspace(System.Management.Automation, Version=6.1.0.0) 从应用程序调用脚本时出现以下错误:
“Get-Module -ListAvailable”显示 Az.Compute 模块是可用的,但是当使用 Powershell 6 执行命令“import-module Az.Compute”时,没有导入任何内容。
最佳答案
Install-Module -Name Az -AllowClobber -Scope CurrentUser
运行那个命令。重新启动 Powershell。再次运行
import-module az.compute
关于powershell - 在 'Get-azVM' 模块中找到了 'Az.Compute' 命令,但是模块无法加载,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/55357865/