Skip to content

Instantly share code, notes, and snippets.

View neilboyd's full-sized avatar

Neil Boyd neilboyd

View GitHub Profile
@neilboyd
neilboyd / deployments
Created May 19, 2015 07:56
Azure Cloud Service deployments
$services = Get-AzureService
foreach ($service in $services)
{
$deployment = Get-AzureDeployment $service.ServiceName
write-host $service.ServiceName $deployment.DeploymentId
}