我有一个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任务,该任务通过如下所示的脚本路径和脚本参数进行配置
运行发行版时此操作失败,并显示以下错误:
任何帮助将不胜感激