是否可以重命名windows azure的托管服务?我用错误的名字创建了它,我想重命名它。
答案 0 :(得分:12)
似乎不可能。您可能必须删除并重新创建。
答案 1 :(得分:4)
您可以使用Azure Powershell SDK重新标记Azure托管云服务。您只需要下载发布设置,然后才能执行任何Azure Cmdlets。使用Set-AzureService
更新Azure Cloud Service名称。
import-module Azure
# download publish settings
Get-AzurePublishSettingsFile
# import settings you just downloaded
Import-AzurePublishSettingsFile "C:\Users\<user>\Downloads\MySub-DATE-credentials.publishsettings"
# view subscription details
Get-AzureSubscription
# select active subscription
Select-AzureSubscription 'MySub'
# view cloud services for selected sub
Get-AzureService
# update cloud service name/description
Set-AzureService 'myServiceName' 'Friendly Service Name' 'Detailed Service Description'