Last active
August 29, 2015 14:25
-
-
Save ebibibi/b6b0c1ce51f42e9548a6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| workflow StopAllVMs | |
| { | |
| $azureCredential = Get-AutomationPSCredential -Name "Default Automation Credential" | |
| # Connect to Azure | |
| Add-AzureAccount -Credential $azureCredential | Write-Verbose | |
| # Select the Azure subscription | |
| $SubscriptionName = 'xxx Subscription Name xxx' | |
| Select-AzureSubscription -SubscriptionName $SubscriptionName | |
| Write-Output "-------------------------------------------------------------------------" | |
| Write-Output "Starting the Shutdown NOW!" | |
| Get-AzureVM | Stop-AzureVM -Force | |
| Write-Output "-------------------------------------------------------------------------" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment