├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── PULL_REQUEST_TEMPLATE.md ├── Archive-AzureRMvm.ps1 ├── Backup-AzureRMvm.ps1 ├── Clone-AzureRMresourceGroup.ps1 ├── Copy-AzureRMresourceGroup.ps1 ├── LICENSE ├── New-AzureServicePrincipal.ps1 ├── README.md ├── Restore-AzureRMvm.ps1 ├── Start-AzureV2VM.ps1 ├── Stop-AzureV2VM.ps1 └── Stop-AzureV2vmRunbook.ps1 /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffBow/AzurePowerShell/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffBow/AzurePowerShell/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffBow/AzurePowerShell/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /Archive-AzureRMvm.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffBow/AzurePowerShell/HEAD/Archive-AzureRMvm.ps1 -------------------------------------------------------------------------------- /Backup-AzureRMvm.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffBow/AzurePowerShell/HEAD/Backup-AzureRMvm.ps1 -------------------------------------------------------------------------------- /Clone-AzureRMresourceGroup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffBow/AzurePowerShell/HEAD/Clone-AzureRMresourceGroup.ps1 -------------------------------------------------------------------------------- /Copy-AzureRMresourceGroup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffBow/AzurePowerShell/HEAD/Copy-AzureRMresourceGroup.ps1 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffBow/AzurePowerShell/HEAD/LICENSE -------------------------------------------------------------------------------- /New-AzureServicePrincipal.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffBow/AzurePowerShell/HEAD/New-AzureServicePrincipal.ps1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffBow/AzurePowerShell/HEAD/README.md -------------------------------------------------------------------------------- /Restore-AzureRMvm.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffBow/AzurePowerShell/HEAD/Restore-AzureRMvm.ps1 -------------------------------------------------------------------------------- /Start-AzureV2VM.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffBow/AzurePowerShell/HEAD/Start-AzureV2VM.ps1 -------------------------------------------------------------------------------- /Stop-AzureV2VM.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffBow/AzurePowerShell/HEAD/Stop-AzureV2VM.ps1 -------------------------------------------------------------------------------- /Stop-AzureV2vmRunbook.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffBow/AzurePowerShell/HEAD/Stop-AzureV2vmRunbook.ps1 --------------------------------------------------------------------------------