0

I found all Azure Management Cmdlets here:

Windows Azure Management Cmdlets.

My question is how can I use these cmdlets in C# to create, remove and deploy an Azure Website?

4

3 回答 3

1

Windows Azure managemnet cmdlet 已更新,现在它包括网站创建。在这里检查。

于 2013-06-04T11:40:14.827 回答
0

这是我的书 PowerShell for Developers 中示例的链接。

此示例将 PowerShell 引擎嵌入到 C# 应用程序中。然后,您可以调用包含您开发的工作流的 Azure PowerShell cmdlet 和/或外部 PowerShell 脚本。

http://goo.gl/4kiYa

于 2013-05-11T00:32:23.017 回答
0

如果没有 azure login,我们将无法触发任何命令。我们可以按照以下步骤创建网站。

  1. 登录 AzureAccount (Add-AzureAccount)
  2. 设置 Azure 订阅 (Get-AzureSubscription)
  3. 选择 Azure 订阅 (Select-AzureSubscription -Name AzureSubName)
  4. 然后我们可以在这里部署 Azure 站点

参考部署站点:http: //blogs.msdn.com/b/cdndevs/archive/2015/04/23/azure-powershell-azure-websites-for-the-command-line-junkies-part-1.aspx

于 2015-08-03T07:55:31.670 回答