1
Reply

Which are two compulsory parameters to create azure website using azure PowerShell?

Ganesh Sattawan

Ganesh Sattawan

Jul 12, 2016
511
0

    Location and Name Location : name of location where the website will be hosted. Name : a unique name of website among azurewebsites.netex: $wsLocation = "West US" $wsName = "TestWebsite" New-AzureWebsite -Location $wsLocation -Name $wsName

    Ganesh Sattawan
    July 12, 2016
    1