尝试将参数传递给Azure Powershell任务时出错

时间:2018-10-26 14:09:43

标签: azure powershell azure-devops

我有一个PowerShell脚本,试图使用Azure PowerShell任务在Azure DevOps中运行。该脚本采用以下四个参数:

param([string] $webappname = "Null", 
      [string] $storagename = "Null", 
    [string] $container = "Null", 
    [string] $resourcegroup = "Null")

# Get the storage account.
$storage = Get-AzureRmStorageAccount -ResourceGroupName $resourcegroup `
-Name $storagename

在我的发行版中,我使用的是Azure PowerShell脚本FilePath任务,该任务通过如下所示的脚本路径和脚本参数进行配置

enter image description here

运行发行版时此操作失败,并显示以下错误:

enter image description here

任何帮助将不胜感激

0 个答案:

没有答案