- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想使用 Automation Runbook 中的 Get-AzureRm*
命令获取所有属性,但以下返回异常。如何编码才能正确运行这些命令?
Write-Output $PSVersionTable
$resourceGroupName = "(snipped)"
$appServicePlans = Get-AzureRmAppServicePlan -ResourceGroupName $resourceGroupName
$Cred = Get-AutomationPSCredential -Name "pscred" # works as expected
Add-AzureRmAccount -Credential $Cred
Add-AzureAccount -Credential $Cred
$appServicePlans = `
Get-AzureRmAppServicePlan -ResourceGroupName $resourceGroupName
$appServices = `
Get-AzureRmWebApp -ResourceGroupName $resourceGroupName
$storageAccounts = `
Get-AzureRmStorageAccount -ResourceGroupName $resourceGroupName
通过管理门户中的[测试]
Name Value
---- -----
PSVersion 5.0.10514.2
WSManStackVersion 3.0
SerializationVersion 1.1.0.1
CLRVersion 4.0.30319.19455
BuildVersion 10.0.10514.2
PSCompatibleVersions {1.0, 2.0, 3.0, 4.0...}
PSRemotingProtocolVersion 2.3
Get-AzureRmAppServicePlan : The term 'Get-AzureRmAppServicePlan' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
At (position in the source)
+ $appServicePlans = Get-AzureRmAppServicePlan -ResourceGroupName $reso ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : ObjectNotFound: (Get-AzureRmAppServicePlan:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException
Get-AzureRmWebApp : The term 'Get-AzureRmWebApp' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
At (position in the source)
+ $appServices = Get-AzureRmWebApp -ResourceGroupName $resourceGroupNam ...
+ ~~~~~~~~~~~~~~~~~
+ CategoryInfo : ObjectNotFound: (Get-AzureRmWebApp:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException
# $storageAccounts has got as expected
Azure
Azure.Storage
AzureRM.Automation
AzureRM.Compute
AzureRM.Profile
AzureRM.Resources
AzureRM.Sql
AzureRM.Storage
Microsoft.PowerShell.Core
Microsoft.PowerShell.Diagnostics
Microsoft.PowerShell.Management
Microsoft.PowerShell.Security
Microsoft.PowerShell.Utility
Microsoft.WSMan.Management
Orchestrator.AssetManagement.Cmdlets
最佳答案
因此,您需要做的是将适当的模块导入到您的 Azure 自动化帐户中。对于这些 cmdlet - AzureRM.Websites。
这可能需要几分钟的时间,因为需要提取每个事件。
您将收到模块正在部署的通知以及部署完成后的通知。导入模块后,您将看到可用的事件,并且可以在 Runbook 和所需状态配置中使用其资源。
以下是更多详细信息的链接:https://learn.microsoft.com/en-us/azure/automation/automation-runbook-gallery#modules-in-powershell-gallery
关于powershell - Get-AzureRmAppServicePlan 和 Get-AzureRmWebApp 在 Runbook 中返回异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41218196/
我尝试使用 cmdlet Get-AzureRmWebApp 运行 powershell 脚本,但收到错误 Get-AzureRmWebApp:术语“Get-AzureRmWebApp”未被识别为 c
我尝试使用 cmdlet Get-AzureRmWebApp 运行 powershell 脚本,但收到错误 Get-AzureRmWebApp:术语“Get-AzureRmWebApp”未被识别为 c
我一直在开发部署脚本来创建和自动化 Azure Web 应用程序,并且这些脚本运行良好。 今天,我尝试将它们转移到应用服务环境中,为生产做好准备。 我发现用于创建 Web 应用程序的命令不适用于 AS
我正在运行 Powershell 5 并尝试使用 Set-AzureRmWebApp(而不是 Set-AzureResource)操作我的 Azure WebApp 对象,以设置 Web 应用程序的“
我正在尝试通过 Powershell 将虚拟应用程序添加到 Azure 网站。尽管脚本运行时没有错误,但我的更改不会出现在 Portal.azure.com 中。最后我需要运行另一个命令来保存更改吗?
我正在尝试通过 Powershell 将虚拟应用程序添加到 Azure 网站。尽管脚本运行时没有错误,但我的更改不会出现在 Portal.azure.com 中。最后我需要运行另一个命令来保存更改吗?
我想使用 Automation Runbook 中的 Get-AzureRm* 命令获取所有属性,但以下返回异常。如何编码才能正确运行这些命令? 返回异常 获取 AzureRmAppServicePl
我正在尝试添加新绑定(bind)并从 Microsoft 收到指向以下指南的链接: https://learn.microsoft.com/en-us/powershell/module/azurer
我是一名优秀的程序员,十分优秀!