
92,794
Downloads
21,134
Downloads of v 6.9.0
9/25/2018
Last update
Microsoft Azure PowerShell
6.9.0
Azure PowerShell provides a set of cmdlets that use the Azure Resource Manager model for managing your Azure resources. You can use it in your browser with Azure Cloud Shell, or you can install it on your local machine and use it in any PowerShell session.
Azure PowerShell requires PowerShell 3.0 or later, which can be installed using the powershell package. This package does not define a dependency on that package to avoid causing a potentially undesired update to the newest PowerShell.
NOTE: This is an automatically updated package. If you find it is out of date by more than a week, please contact the maintainer(s) and let them know the package is no longer updating correctly.
To install Microsoft Azure PowerShell, run the following command from the command line or from PowerShell:
C:\> choco install azurepowershell
To upgrade Microsoft Azure PowerShell, run the following command from the command line or from PowerShell:
C:\> choco upgrade azurepowershell
Files
Hide- tools\ChocolateyInstall.ps1
Show
$ErrorActionPreference = 'Stop' Set-StrictMode -Version 2 $packageName = 'azurepowershell' $moduleVersion = [version]'6.9.0' $url = 'https://github.com/Azure/azure-powershell/releases/download/v6.9.0-September2018/azure-powershell.6.9.0.msi' $checksum = '6938baf0cee2448665bd2d2c88840491b2203758ac2a589f844b6889e774e6d6' $checksumType = 'SHA256' . (Join-Path -Path (Split-Path -Path $MyInvocation.MyCommand.Path) -ChildPath helpers.ps1) Ensure-RequiredPowerShellVersionPresent -RequiredVersion '5.0' if (Test-AzurePowerShellInstalled -RequiredVersion $moduleVersion) { return } $scriptDirectory = $PSScriptRoot # safe to use because we test for PS 3.0+ earlier $originalMsiLocalPath = Join-Path -Path $scriptDirectory -ChildPath "azure-powershell.${moduleVersion}.msi" $downloadArguments = @{ packageName = $packageName fileFullPath = $originalMsiLocalPath url = $url checksum = $checksum checksumType = $checksumType } Set-StrictMode -Off # unfortunately, builtin helpers are not guaranteed to be strict mode compliant Get-ChocolateyWebFile @downloadArguments | Out-Null Set-StrictMode -Version 2 $instArguments = @{ packageName = $packageName installerType = 'msi' file = $originalMsiLocalPath silentArgs = '/Quiet /NoRestart /Log "{0}\{1}_{2:yyyyMMddHHmmss}.log"' -f $Env:TEMP, $packageName, (Get-Date) validExitCodes = @( 0, # success 3010 # success, restart required ) } Set-StrictMode -Off Install-ChocolateyInstallPackage @instArguments Write-Warning 'You may need to close and reopen PowerShell before the Azure PowerShell modules become available.'
- tools\helpers.ps1
Show
$ErrorActionPreference = 'Stop' Set-StrictMode -Version 2 Set-Variable -Option Constant -Scope Script -Name msiOpenDatabaseModeReadOnly -Value 0 Set-Variable -Option Constant -Scope Script -Name msiOpenDatabaseModeTransact -Value 1 Set-Variable -Option Constant -Scope Script -Name msiTransformErrorNone -Value 0 Set-Variable -Option Constant -Scope Script -Name msiTransformValidationNone -Value 0 function Ensure-RequiredPowerShellVersionPresent { [CmdletBinding()] Param ( [Parameter(Mandatory = $true)] [version] $RequiredVersion ) # 3.0 is the absolute minimum requirement, but future packages might require a newer version if (-not (Test-Path -Path "HKLM:\Software\Microsoft\PowerShell\3") -or $PSVersionTable -eq $null -or $PSVersionTable.PSVersion -lt [version]$RequiredVersion) { throw "Azure PowerShell requires PowerShell version $RequiredVersion or greater. You can install it using the 'powershell' package." } else { Write-Debug "Running on PowerShell $RequiredVersion or later (actually: $($PSVersionTable.PSVersion))" } } function Test-AzurePowerShellInstalled { [CmdletBinding()] Param ( [Parameter(Mandatory = $true)] [version] $RequiredVersion ) $newestModule = Get-Module -Name AzureRM.* -ListAvailable | Sort-Object -Property Version -Descending | Select-Object -First 1 if ($newestModule -ne $null -and $newestModule.Version -ge $RequiredVersion) { Write-Host "Azure PowerShell version $RequiredVersion or later is already installed (detected module $($newestModule.Name) version $($newestModule.Version))." return $true } else { if ($newestModule -ne $null) { Write-Debug "Azure PowerShell version $RequiredVersion or later is not installed (detected module $($newestModule.Name) version $($newestModule.Version))." } else { Write-Debug "Azure PowerShell version $RequiredVersion or later is not installed (no modules detected)." } return $false } }
Virus Scan Results
- AzurePowerShell.6.9.0.nupkg (2d9508f1e559) - ## / 60 - Log in or click on link to see number of positives
Dependencies
-
- dotnet4.5.2 (≥ 4.5.2.20140902)
Package Maintainer(s)
Software Author(s)
Tags
Release Notes
Software
Azure PowerShell release notes
Package
6.9.0: Initial package release for software version 6.9.0.
Version History
Version | Downloads | Last updated | Status |
---|---|---|---|
Microsoft Azure PowerShell 6.9.0 | 21134 | Tuesday, September 25, 2018 | approved |
Microsoft Azure PowerShell 6.8.1 | 4355 | Thursday, August 30, 2018 | approved |
Microsoft Azure PowerShell 6.6.0 | 14076 | Friday, July 27, 2018 | approved |
Microsoft Azure PowerShell 6.4.0 | 19622 | Tuesday, July 3, 2018 | approved |
Microsoft Azure PowerShell 6.3.0 | 6652 | Tuesday, June 19, 2018 | approved |
Microsoft Azure PowerShell 6.2.1 | 2198 | Wednesday, June 6, 2018 | approved |
Microsoft Azure PowerShell 6.1.0 | 3564 | Tuesday, May 22, 2018 | approved |
Microsoft Azure PowerShell 6.0.0 | 2469 | Monday, May 7, 2018 | approved |
Microsoft Azure PowerShell 5.7.0 | 11865 | Tuesday, April 10, 2018 | approved |
Microsoft Azure PowerShell 5.6.0 | 236 | Tuesday, March 27, 2018 | approved |
Discussion for the Microsoft Azure PowerShell Package
Ground rules:
- This discussion is only about Microsoft Azure PowerShell and the Microsoft Azure PowerShell package. If you have feedback for Chocolatey, please contact the google group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or Microsoft Azure PowerShell, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.