diff options
author | mail_redacted_for_web | 2025-07-30 18:20:41 +0200 |
---|---|---|
committer | mail_redacted_for_web | 2025-07-30 18:20:41 +0200 |
commit | 19d85ccf501096c4a7c1feb808fdd2342d577664 (patch) | |
tree | b9777db9fdbc2de9cc4c2cedfa8cbc464a02f879 | |
parent | 9a69931d5aa6a41168aba6d97b2553301432e8a2 (diff) | |
download | azure-helpers-19d85ccf501096c4a7c1feb808fdd2342d577664.tar.bz2 |
Rename Start and Stop Cmdlets to avoid collisions with Az.Compute
-rw-r--r-- | AzureHelpers/Public/Start-AzureVm.ps1 (renamed from AzureHelpers/Public/Start-AzVm.ps1) | 2 | ||||
-rw-r--r-- | AzureHelpers/Public/Stop-AzureVm.ps1 (renamed from AzureHelpers/Public/Stop-AzVm.ps1) | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/AzureHelpers/Public/Start-AzVm.ps1 b/AzureHelpers/Public/Start-AzureVm.ps1 index 49dd55a..258eb06 100644 --- a/AzureHelpers/Public/Start-AzVm.ps1 +++ b/AzureHelpers/Public/Start-AzureVm.ps1 @@ -1,4 +1,4 @@ -function Start-AzVm { +function Start-AzureVm { # Supply a VM name (or an unambiguous part of it) and start the machine. <# .SYNOPSIS diff --git a/AzureHelpers/Public/Stop-AzVm.ps1 b/AzureHelpers/Public/Stop-AzureVm.ps1 index f284ec8..2c1ce0f 100644 --- a/AzureHelpers/Public/Stop-AzVm.ps1 +++ b/AzureHelpers/Public/Stop-AzureVm.ps1 @@ -1,4 +1,4 @@ -function Stop-AzVm { +function Stop-AzureVm { # Supply a VM name (or an unambiguous part of it), stop, and deallocate the machine. <# .SYNOPSIS |