Cuir in eagar

Comhroinn trí


Use an Azure PowerShell command to create an empty cloud service (classic) container

Important

Cloud Services (classic) is now deprecated for all customers as of September 1st, 2024. Any existing running deployments will be stopped and shut down by Microsoft and the data will be permanantly lost starting October 2024. New deployments should use the new Azure Resource Manager based deployment model Azure Cloud Services (extended support).

This article explains how to quickly create a Cloud Services container using Azure PowerShell cmdlets. Use the following steps:

  1. Install the Microsoft Azure PowerShell cmdlet from the Azure PowerShell downloads page.

  2. Open the PowerShell command prompt.

  3. Use the Add-AzureAccount to sign in.

    Note

    For further instruction on installing the Azure PowerShell cmdlet and connecting to your Azure subscription, refer to How to install and configure Azure PowerShell.

  4. Use the New-AzureService cmdlet to create an empty Azure cloud service container.

    New-AzureService [-ServiceName] <String> [-AffinityGroup] <String> [[-Label] <String>] [[-Description] <String>] [[-ReverseDnsFqdn] <String>] [<CommonParameters>]
    New-AzureService [-ServiceName] <String> [-Location] <String> [[-Label] <String>] [[-Description] <String>] [[-ReverseDnsFqdn] <String>] [<CommonParameters>]
    
  5. Follow this example to invoke the cmdlet:

    New-AzureService -ServiceName "mytestcloudservice" -Location "Central US" -Label "mytestcloudservice"
    

For more information about creating the Azure cloud service, run:

Get-help New-AzureService

Next steps