Skip to content

Instantly share code, notes, and snippets.

@neilboyd
Created May 19, 2015 07:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save neilboyd/0a0192472c900d7b4ef0 to your computer and use it in GitHub Desktop.
Save neilboyd/0a0192472c900d7b4ef0 to your computer and use it in GitHub Desktop.
Azure Cloud Service deployments
$services = Get-AzureService
foreach ($service in $services)
{
$deployment = Get-AzureDeployment $service.ServiceName
write-host $service.ServiceName $deployment.DeploymentId
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment