Difference between revisions of "Azure Powershell Install"
Jump to navigation
Jump to search
(Created page with "``` https://www.powershellgallery.com/packages/Az.Resources/6.11.2 ```") |
|||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
+ | https://learn.microsoft.com/en-us/powershell/azure/install-azps-windows?view=azps-10.4.1&tabs=powershell&pivots=windows-psgallery | ||
+ | ``` | ||
+ | Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser | ||
+ | Install-Module -Name Az -Repository PSGallery -Force | ||
+ | ``` | ||
+ | |||
+ | ``` | ||
+ | Connect-AzAccount | ||
+ | Get-AzRemoteDesktopFile -ResourceGroupName "foo" -Name "bar" -Launch | ||
+ | ``` | ||
+ | |||
``` | ``` | ||
https://www.powershellgallery.com/packages/Az.Resources/6.11.2 | https://www.powershellgallery.com/packages/Az.Resources/6.11.2 | ||
``` | ``` |
Latest revision as of 14:18, 26 October 2023
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser Install-Module -Name Az -Repository PSGallery -Force
Connect-AzAccount Get-AzRemoteDesktopFile -ResourceGroupName "foo" -Name "bar" -Launch
https://www.powershellgallery.com/packages/Az.Resources/6.11.2