Sign up for the ITPro Today newsletter
Stay on top of the IT universe with commentary, news analysis, how-to's, and tips delivered to your inbox daily.
Use PowerShell to easily check whether a cloud service name is available in Azure.
October 15, 2014
Q: How can I check whether a specific cloud service name is available in Azure?
A: Cloud service names must be unique in Azure. To test whether a name is available, run the following PowerShell code:
Test-AzureName -Service 'CloudServiceNameToTestFor'
If the result is False, the name is available.
You May Also Like