Staged Deployment on Microsoft Azure Websites
http://azure.microsoft.com/en-us/documentation/articles/web-sites-staged-publishing/
New-AzureWebsite
http://msdn.microsoft.com/en-us/library/azure/dn495157.aspx
Azure Web Sites β Continuous Deployment with Staged Publishing
http://ruslany.net/2014/03/azure-web-sites-continuous-deployment-with-staged-publishing/
Azure Powershell Script to list Sites / Staging / Deployment Slots for Web Hosting Plans
Azure Websites Web Hosting Plans In-Depth Overview
Changing Azure Hosting Plans with PowerShell
Creating Azure Web Site using PowerShell
$WebSiteTitle = "TestWebSiteJY" $Location = "East US" New-AzureWebsite -Location $Location -Name $WebSiteTitle - $WebSiteTitle = "azuretestjy123(staging)" $WebSite = Get-AzureWebSite -Name $WebSiteTitle $WebSite | Select Name, NetFrameworkVersion, AppSettings #Adding App Setting to Azure Web Site Staging Slot $CustomerAppSetting = @{"SiteUrl"="http://portal.contoso.com"} Set-AzureWebsite $WebSiteTitle -AppSettings $CustomerAppSetting Restart-AzureWebsite $WebSiteTitle