Downloads:
493,264
Downloads of v 13.0.0:
2,363
Last Update:
19 Nov 2024
Package Maintainer(s):
Software Author(s):
- Microsoft
Tags:
admin azure azurerm powershell module- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Microsoft Azure PowerShell (Az PowerShell Module)
- 1
- 2
- 3
13.0.0 | Updated: 19 Nov 2024
- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
493,264
Downloads of v 13.0.0:
2,363
Maintainer(s):
Software Author(s):
- Microsoft
Microsoft Azure PowerShell (Az PowerShell Module) 13.0.0
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Microsoft. The inclusion of Microsoft trademark(s), if any, upon this webpage is solely to identify Microsoft goods or services and not for commercial purposes.
- 1
- 2
- 3
All Checks are Passing
3 Passing Tests
Deployment Method: Individual Install, Upgrade, & Uninstall
To install Microsoft Azure PowerShell (Az PowerShell Module), run the following command from the command line or from PowerShell:
To upgrade Microsoft Azure PowerShell (Az PowerShell Module), run the following command from the command line or from PowerShell:
To uninstall Microsoft Azure PowerShell (Az PowerShell Module), run the following command from the command line or from PowerShell:
Deployment Method:
This applies to both open source and commercial editions of Chocolatey.
1. Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
2. Setup Your Environment
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download az.powershell --internalize --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade az.powershell -y --source="'INTERNAL REPO URL'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade az.powershell -y --source="'INTERNAL REPO URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install az.powershell
win_chocolatey:
name: az.powershell
version: '13.0.0'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'az.powershell' do
action :install
source 'INTERNAL REPO URL'
version '13.0.0'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller az.powershell
{
Name = "az.powershell"
Version = "13.0.0"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'az.powershell':
ensure => '13.0.0',
provider => 'chocolatey',
source => 'INTERNAL REPO URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
4. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
This package was approved as a trusted package on 19 Nov 2024.
Contains PowerShell cmdlets for developers and administrators to develop, deploy, and manage Microsoft Azure applications.
You can pass the following parameters:
/core
- Installs the module in the AllUsers scope for PowerShell Core;/desktop
- Installs the module in the AllUsers scope for Windows PowerShell (ie. Desktop Edition);
You can pass both /core
and /desktop
parameters to install on both. If you pass no parameters then /desktop
is assumed.
NOTE: This module runs on Windows PowerShell with .NET Framework 4.7.2 or greater, or PowerShell Core.
NOTE: This Az module replaces AzureRM. You should not install Az side-by-side with AzureRM.
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.
md5: A99F8DA35DBF2D186BAB05F5BD80F904 | sha1: AA1DD445D59F4653038BBE11EE0A057061C44C2D | sha256: 8D14F82B3B1DAC00E48C56FE46D16182C086373E072DE93694D6A1B87B616EC5 | sha512: 7C7DF51309993D7917B895A7F37FF3B18B55E5D05240307F5BE3AA9B9FA2F74EC07678BF6D4D2DB234897ABBADFD1FA5E8538822AA6483C2EDB0E4C6413AECD0
$ErrorActionPreference = 'Stop'
$moduleName = 'az' # this could be different from package name
$toolsDir = Split-Path -parent $MyInvocation.MyCommand.Definition
$depModulesPath = Join-Path $toolsdir -ChildPath 'dependent.modules'
$modules = Get-Content -Path $depModulesPath
ForEach ($m in $modules) {
Remove-Module -Name $m -Force -ErrorAction SilentlyContinue
}
$ErrorActionPreference = 'Stop'
$toolsDir = Split-Path -parent $MyInvocation.MyCommand.Definition
$moduleName = 'az' # this may be different from the package name and different case
$savedParamsPath = Join-Path $toolsDir -ChildPath 'parameters.saved'
$depModulesPath = Join-Path $toolsdir -ChildPath 'dependent.modules'
if (Test-Path -Path $savedParamsPath) {
$removePath = Get-Content -Path $savedParamsPath
}
else {
$removePath = Join-Path -Path $env:ProgramFiles -ChildPath "WindowsPowerShell\Modules\"
}
ForEach ($path in $removePath) {
if (-not (Test-Path -Path $depModulesPath)) {
Write-Error "Cannot find the list of dependent modules to remove at '$depModulesPath'. Cannot uninstall."
}
Get-Content -Path $depModulesPath | ForEach-Object {
$pathToRemove = Join-Path -Path $path -ChildPath $_
Write-Verbose "Removing all version of '$_' from '$pathToRemove'."
Remove-Item -Path $pathToRemove -Recurse -Force -ErrorAction SilentlyContinue
}
}
From: https://github.com/Azure/azure-powershell/blob/master/LICENSE.txt
MICROSOFT SOFTWARE LICENSE TERMS
MICROSOFT AZURE POWERSHELL
These license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any.
BY USING THE SOFTWARE, YOU ACCEPT THESE TERMS. IF YOU DO NOT ACCEPT THEM, DO NOT USE THE SOFTWARE.
-----------------START OF LICENSE--------------------------
Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1. Definitions.
"License" shall mean the terms and conditions for use, reproduction,
and distribution as defined by Sections 1 through 9 of this document.
"Licensor" shall mean the copyright owner or entity authorized by
the copyright owner that is granting the License.
"Legal Entity" shall mean the union of the acting entity and all
other entities that control, are controlled by, or are under common
control with that entity. For the purposes of this definition,
"control" means (i) the power, direct or indirect, to cause the
direction or management of such entity, whether by contract or
otherwise, or (ii) ownership of fifty percent (50%) or more of the
outstanding shares, or (iii) beneficial ownership of such entity.
"You" (or "Your") shall mean an individual or Legal Entity
exercising permissions granted by this License.
"Source" form shall mean the preferred form for making modifications,
including but not limited to software source code, documentation
source, and configuration files.
"Object" form shall mean any form resulting from mechanical
transformation or translation of a Source form, including but
not limited to compiled object code, generated documentation,
and conversions to other media types.
"Work" shall mean the work of authorship, whether in Source or
Object form, made available under the License, as indicated by a
copyright notice that is included in or attached to the work
(an example is provided in the Appendix below).
"Derivative Works" shall mean any work, whether in Source or Object
form, that is based on (or derived from) the Work and for which the
editorial revisions, annotations, elaborations, or other modifications
represent, as a whole, an original work of authorship. For the purposes
of this License, Derivative Works shall not include works that remain
separable from, or merely link (or bind by name) to the interfaces of,
the Work and Derivative Works thereof.
"Contribution" shall mean any work of authorship, including
the original version of the Work and any modifications or additions
to that Work or Derivative Works thereof, that is intentionally
submitted to Licensor for inclusion in the Work by the copyright owner
or by an individual or Legal Entity authorized to submit on behalf of
the copyright owner. For the purposes of this definition, "submitted"
means any form of electronic, verbal, or written communication sent
to the Licensor or its representatives, including but not limited to
communication on electronic mailing lists, source code control systems,
and issue tracking systems that are managed by, or on behalf of, the
Licensor for the purpose of discussing and improving the Work, but
excluding communication that is conspicuously marked or otherwise
designated in writing by the copyright owner as "Not a Contribution."
"Contributor" shall mean Licensor and any individual or Legal Entity
on behalf of whom a Contribution has been received by Licensor and
subsequently incorporated within the Work.
2. Grant of Copyright License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
copyright license to reproduce, prepare Derivative Works of,
publicly display, publicly perform, sublicense, and distribute the
Work and such Derivative Works in Source or Object form.
3. Grant of Patent License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
(except as stated in this section) patent license to make, have made,
use, offer to sell, sell, import, and otherwise transfer the Work,
where such license applies only to those patent claims licensable
by such Contributor that are necessarily infringed by their
Contribution(s) alone or by combination of their Contribution(s)
with the Work to which such Contribution(s) was submitted. If You
institute patent litigation against any entity (including a
cross-claim or counterclaim in a lawsuit) alleging that the Work
or a Contribution incorporated within the Work constitutes direct
or contributory patent infringement, then any patent licenses
granted to You under this License for that Work shall terminate
as of the date such litigation is filed.
4. Redistribution. You may reproduce and distribute copies of the
Work or Derivative Works thereof in any medium, with or without
modifications, and in Source or Object form, provided that You
meet the following conditions:
(a) You must give any other recipients of the Work or
Derivative Works a copy of this License; and
(b) You must cause any modified files to carry prominent notices
stating that You changed the files; and
(c) You must retain, in the Source form of any Derivative Works
that You distribute, all copyright, patent, trademark, and
attribution notices from the Source form of the Work,
excluding those notices that do not pertain to any part of
the Derivative Works; and
(d) If the Work includes a "NOTICE" text file as part of its
distribution, then any Derivative Works that You distribute must
include a readable copy of the attribution notices contained
within such NOTICE file, excluding those notices that do not
pertain to any part of the Derivative Works, in at least one
of the following places: within a NOTICE text file distributed
as part of the Derivative Works; within the Source form or
documentation, if provided along with the Derivative Works; or,
within a display generated by the Derivative Works, if and
wherever such third-party notices normally appear. The contents
of the NOTICE file are for informational purposes only and
do not modify the License. You may add Your own attribution
notices within Derivative Works that You distribute, alongside
or as an addendum to the NOTICE text from the Work, provided
that such additional attribution notices cannot be construed
as modifying the License.
You may add Your own copyright statement to Your modifications and
may provide additional or different license terms and conditions
for use, reproduction, or distribution of Your modifications, or
for any such Derivative Works as a whole, provided Your use,
reproduction, and distribution of the Work otherwise complies with
the conditions stated in this License.
5. Submission of Contributions. Unless You explicitly state otherwise,
any Contribution intentionally submitted for inclusion in the Work
by You to the Licensor shall be under the terms and conditions of
this License, without any additional terms or conditions.
Notwithstanding the above, nothing herein shall supersede or modify
the terms of any separate license agreement you may have executed
with Licensor regarding such Contributions.
6. Trademarks. This License does not grant permission to use the trade
names, trademarks, service marks, or product names of the Licensor,
except as required for reasonable and customary use in describing the
origin of the Work and reproducing the content of the NOTICE file.
7. Disclaimer of Warranty. Unless required by applicable law or
agreed to in writing, Licensor provides the Work (and each
Contributor provides its Contributions) on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
implied, including, without limitation, any warranties or conditions
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
PARTICULAR PURPOSE. You are solely responsible for determining the
appropriateness of using or redistributing the Work and assume any
risks associated with Your exercise of permissions under this License.
8. Limitation of Liability. In no event and under no legal theory,
whether in tort (including negligence), contract, or otherwise,
unless required by applicable law (such as deliberate and grossly
negligent acts) or agreed to in writing, shall any Contributor be
liable to You for damages, including any direct, indirect, special,
incidental, or consequential damages of any character arising as a
result of this License or out of the use or inability to use the
Work (including but not limited to damages for loss of goodwill,
work stoppage, computer failure or malfunction, or any and all
other commercial damages or losses), even if such Contributor
has been advised of the possibility of such damages.
9. Accepting Warranty or Additional Liability. While redistributing
the Work or Derivative Works thereof, You may choose to offer,
and charge a fee for, acceptance of support, warranty, indemnity,
or other liability obligations and/or rights consistent with this
License. However, in accepting such obligations, You may act only
on Your own behalf and on Your sole responsibility, not on behalf
of any other Contributor, and only if You agree to indemnify,
defend, and hold each Contributor harmless for any liability
incurred by, or claims asserted against, such Contributor by reason
of your accepting any such warranty or additional liability.
-------------------END OF LICENSE------------------------------------------
----------------START OF THIRD PARTY NOTICE--------------------------------
The software includes the AutoMapper library ("AutoMapper"). The MIT License set out below is provided for informational purposes only. It is not the license that governs any part of the software.
Provided for Informational Purposes Only
AutoMapper
The MIT License (MIT)
Copyright (c) 2010 Jimmy Bogard
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
***************
The software includes Newtonsoft.Json. The MIT License set out below is provided for informational purposes only. It is not the license that governs any part of the software.
Newtonsoft.Json
The MIT License (MIT)
Copyright (c) 2007 James Newton-King
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-------------END OF THIRD PARTY NOTICE----------------------------------------
VERIFICATION
To verify the files using the project source:
1. Please go to the project source releases location (https://github.com/Azure/azure-powershell/releases) and download the source files;
2. Use Get-FileHash -Path <FILE TO VERIFY> to get the file hash value from both the built file (from step 1 above) and the file from the package and compare them;
Alternatively you can download the module from the PowerShell Gallery ...
Save-Module -Name az -Path <PATH TO DOWNLOAD TO>
... and compare the files from the package against those in the installed module. Again use Get-FileHash -Path <FILE TO VERIFY> to retrieve those hash values.
Log in or click on link to see number of positives.
- Microsoft.Extensions.Logging.Abstractions.dll (2fa497e70218) - ## / 72
- Microsoft.Extensions.Logging.dll (963bc5005186) - ## / 72
- System.Xml.ReaderWriter.dll (99a4abfe9675) - ## / 73
- System.Configuration.ConfigurationManager.dll (bac1ace21a5d) - ## / 70
- System.CodeDom.dll (cccbcdbd85af) - ## / 74
- System.Buffers.dll (72b10a7d4047) - ## / 72
- System.Numerics.Vectors.dll (1d3ef8698281) - ## / 73
- Hyak.Common.dll (aa962b946a90) - ## / 69
- Microsoft.Azure.Commerce.UsageAggregates.dll (4389a3a94d1e) - ## / 69
- Microsoft.Azure.Common.dll (beefbf11928c) - ## / 69
- Microsoft.Azure.Insights.dll (87b37b9e2dc3) - ## / 69
- Microsoft.Azure.KeyVault.dll (e007605294f6) - ## / 74
- Microsoft.Azure.KeyVault.WebKey.dll (dba8a1a9ef23) - ## / 74
- Microsoft.Azure.Management.Consumption.dll (c8550c07a1ee) - ## / 68
- Microsoft.Azure.Management.DataLake.Analytics.dll (ed5f01147124) - ## / 69
- Microsoft.Azure.Management.DataLake.Store.dll (a56df4013584) - ## / 74
- Microsoft.Azure.Management.DevTestLabs.dll (4a914b4a490e) - ## / 69
- Microsoft.Azure.Management.MachineLearning.dll (09137310d810) - ## / 68
- Microsoft.Azure.Management.Media.dll (fe557a048755) - ## / 69
- Microsoft.Azure.Management.NotificationHubs.dll (41f69761953c) - ## / 69
- Microsoft.Azure.Management.PowerBIDedicated.dll (68235eb0d583) - ## / 69
- Microsoft.Azure.Management.PowerBIEmbedded.dll (0e2dc677cb7b) - ## / 69
- Microsoft.WindowsAzure.Storage.dll (3e94a41db947) - ## / 74
- Microsoft.Extensions.DependencyInjection.Abstractions.dll (4cbafb5c80b1) - ## / 72
- Microsoft.Extensions.Options.dll (123766d210b9) - ## / 71
- Microsoft.Extensions.Primitives.dll (42bbc209a1a3) - ## / 72
- Microsoft.Win32.Registry.dll (2f9a0afdc4ff) - ## / 73
- Microsoft.Win32.Registry.dll (b29ffa2a4d6e) - ## / 72
- Microsoft.Extensions.Caching.Abstractions.dll (ec8ff200bf21) - ## / 74
- Microsoft.Extensions.Caching.Memory.dll (a22c63ed32c7) - ## / 74
- Microsoft.Rest.ClientRuntime.Azure.dll (403cde7e626b) - ## / 70
- Microsoft.Azure.Management.DataFactories.dll (6f39fa8dcc32) - ## / 69
- System.IO.FileSystem.AccessControl.dll (a38d84ee5f1d) - ## / 70
- Microsoft.Azure.Management.HDInsight.Job.dll (004421b88a9b) - ## / 70
- Microsoft.Azure.Management.Logic.dll (6745d5ee818c) - ## / 69
- Microsoft.Azure.KeyVault.Core.dll (76c243fbc55b) - ## / 74
- System.Management.dll (1c240dc8c8b7) - ## / 74
- System.Memory.dll (41b5e1a4c59a) - ## / 72
- Microsoft.AspNetCore.WebUtilities.dll (0f96a425e05d) - ## / 55
- Microsoft.Net.Http.Headers.dll (3fae9fb43ad7) - ## / 72
- Microsoft.Azure.Management.DataBoxEdge.dll (e5b38fe79fae) - ## / 69
- System.Security.Cryptography.ProtectedData.dll (a79ad1e9e720) - ## / 75
- System.Private.ServiceModel.dll (8191caef096c) - ## / 72
- System.Security.AccessControl.dll (6f4db849979d) - ## / 74
- System.Security.Permissions.dll (c202a33b315d) - ## / 74
- System.Security.Principal.Windows.dll (8fe540764553) - ## / 74
- Microsoft.Bcl.AsyncInterfaces.dll (32c3234ad06f) - ## / 74
- Microsoft.Azure.Management.DataShare.dll (a39ab64c74f8) - ## / 69
- Microsoft.Azure.Cosmos.Table.dll (909bbe7ff0ac) - ## / 72
- Microsoft.Azure.DocumentDB.Core.dll (7b82872f1333) - ## / 71
- Microsoft.OData.Core.dll (1eeaf431ad2f) - ## / 69
- Microsoft.OData.Edm.dll (92496b441126) - ## / 69
- Microsoft.Spatial.dll (df1bf09898ec) - ## / 68
- System.Buffers.dll (c65fff603b28) - ## / 73
- System.Threading.Tasks.Extensions.dll (09901f63ebc4) - ## / 73
- Microsoft.Azure.Management.Billing.dll (b3702693af4d) - ## / 69
- Microsoft.Azure.ContainerRegistry.dll (cfe9e9b3f5ec) - ## / 69
- Microsoft.Azure.DataLake.Store.dll (9ab716e5b2d6) - ## / 74
- DotNetty.Buffers.dll (faec17a6cf47) - ## / 69
- DotNetty.Codecs.dll (593e4cbffe8e) - ## / 72
- DotNetty.Codecs.Mqtt.dll (7d108ae10f2b) - ## / 70
- DotNetty.Common.dll (62be093ed8e8) - ## / 69
- DotNetty.Handlers.dll (305811776318) - ## / 68
- DotNetty.Transport.dll (d8b45a01c0a5) - ## / 68
- Microsoft.Azure.Amqp.dll (82486eb048f2) - ## / 69
- Microsoft.Azure.Devices.Client.dll (d33eb817ad9a) - ## / 69
- Microsoft.Azure.Devices.dll (2de58a7a723a) - ## / 69
- Microsoft.Azure.Devices.Shared.dll (9db636eb0b32) - ## / 72
- System.Security.Cryptography.Cng.dll (91f49a45cc0e) - ## / 71
- System.Text.Json.dll (1d078df997c7) - ## / 73
- System.Memory.Data.dll (293ca5d86358) - ## / 73
- System.Text.Encodings.Web.dll (09f7d7e7f98b) - ## / 75
- Microsoft.Azure.Management.SignalR.dll (846ee6d2fbb9) - ## / 68
- Microsoft.Azure.Attestation.dll (d0853b8f6e6b) - ## / 69
- Microsoft.Azure.Management.Authorization.dll (7fc10393a6b3) - ## / 69
- Microsoft.ApplicationInsights.dll (bad023a6bdcd) - ## / 58
- System.Runtime.CompilerServices.Unsafe.dll (37768488e8ef) - ## / 73
- Microsoft.Rest.ClientRuntime.dll (b2efe692cad4) - ## / 74
- Microsoft.Azure.Management.ResourceGraph.dll (6ff80dfeb989) - ## / 74
- Microsoft.Azure.Management.OperationalInsights.dll (8fcc36c80ef5) - ## / 69
- Microsoft.Azure.OperationalInsights.dll (5936e4ab6382) - ## / 68
- Microsoft.Azure.Management.ManagementGroups.dll (e2c5191ec5de) - ## / 74
- Microsoft.Azure.Management.ResourceManager.dll (eb855740dc23) - ## / 74
- System.IO.Hashing.dll (f8010fdfce8a) - ## / 69
- Azure.Analytics.Synapse.AccessControl.dll (e34d55d1dced) - ## / 74
- Azure.Analytics.Synapse.ManagedPrivateEndpoints.dll (03fac8a0f167) - ## / 74
- Azure.Analytics.Synapse.Spark.dll (5422ad4892f1) - ## / 73
- Microsoft.Azure.Management.Synapse.dll (47e86d88f0e3) - ## / 74
- Microsoft.Azure.Management.Websites.dll (3a1b4c60ce04) - ## / 69
- System.Reflection.DispatchProxy.dll (590c17a6f7b5) - ## / 71
- System.ServiceModel.Primitives.dll (3db09f5eec5d) - ## / 62
- Azure.Storage.Blobs.dll (60143459a6ad) - ## / 74
- Azure.Storage.Common.dll (b3238589e389) - ## / 68
- Azure.Containers.ContainerRegistry.dll (b09a8aa85e1a) - ## / 69
- Microsoft.Azure.Management.Monitor.dll (598e6038bb9c) - ## / 68
- Microsoft.Azure.Management.IotHub.dll (84222a57cc66) - ## / 48
- Microsoft.Azure.Management.PolicyInsights.dll (cb58f0f3a46d) - ## / 68
- Azure.Data.Tables.dll (c9aa0fba27b1) - ## / 70
- Microsoft.Azure.PowerShell.Cmdlets.DataLakeAnalytics.dll (b2997cfc4622) - ## / 70
- Microsoft.Azure.PowerShell.Cmdlets.Media.dll (aa618b10cfa8) - ## / 70
- System.Runtime.CompilerServices.Unsafe.dll (01748200f240) - ## / 73
- System.Diagnostics.DiagnosticSource.dll (19ba42737c1c) - ## / 75
- Microsoft.Azure.PowerShell.Automation.Sdk.dll (34f7b946eef2) - ## / 70
- Microsoft.Azure.PowerShell.Cmdlets.Automation.dll (ef6b0cbcfc46) - ## / 70
- Microsoft.Azure.PowerShell.Cmdlets.CognitiveServices.dll (0ceec051597d) - ## / 71
- Microsoft.Azure.PowerShell.CognitiveServices.Management.Sdk.dll (9db248618f7e) - ## / 71
- Microsoft.Azure.PowerShell.Cmdlets.PowerBI.dll (a383238c0430) - ## / 71
- Microsoft.Azure.PowerShell.Cmdlets.PowerBIEmbedded.dll (833e49a3c7de) - ## / 70
- Azure.Storage.Blobs.dll (62a0552ed6c0) - ## / 71
- Azure.Storage.Common.dll (4d283e3b09cd) - ## / 71
- Azure.Storage.Files.DataLake.dll (41f9cd9138b0) - ## / 71
- Azure.Storage.Files.Shares.dll (e5f9d10d14ba) - ## / 71
- Azure.Storage.Queues.dll (215e184a3e90) - ## / 71
- Microsoft.Azure.PowerShell.Cmdlets.TrafficManager.dll (e7f858dd68c8) - ## / 71
- Microsoft.Azure.PowerShell.TrafficManager.Management.Sdk.dll (f8b87cc3cc30) - ## / 69
- Azure.Security.KeyVault.Administration.dll (1543a0da7715) - ## / 74
- System.Net.Http.WinHttpHandler.dll (cd99c5d6d559) - ## / 71
- Microsoft.IdentityModel.JsonWebTokens.dll (deab29f3b521) - ## / 73
- Microsoft.IdentityModel.Logging.dll (812285440924) - ## / 73
- Microsoft.IdentityModel.Tokens.dll (dd8a7e140caa) - ## / 74
- Microsoft.Azure.Batch.dll (62d3a8f3aeae) - ## / 74
- Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistry.dll (44fbb71c6904) - ## / 73
- Azure.Security.KeyVault.Keys.dll (efbf7e8ea61b) - ## / 73
- Azure.Security.KeyVault.Certificates.dll (d03df5c1b450) - ## / 73
- Microsoft.Azure.PowerShell.Cmdlets.LogicApp.dll (a59b28ee6b59) - ## / 72
- Microsoft.Azure.PowerShell.Cmdlets.PolicyInsights.dll (02866e7354a1) - ## / 70
- Az.Advisor.private.dll (19201d25dc85) - ## / 73
- Az.ApplicationInsights.private.dll (2bd77c1e934d) - ## / 71
- Az.ArcResourceBridge.private.dll (d8553e84bedd) - ## / 73
- Az.CloudService.private.dll (3b6e1b1792be) - ## / 73
- Az.ConfidentialLedger.private.dll (8df1dd2edf42) - ## / 71
- Az.ContainerRegistry.private.dll (fc40d83c9c71) - ## / 73
- Az.HealthcareApis.private.dll (4f5a2dc0f4a7) - ## / 66
- Az.Kusto.private.dll (900396fa10b9) - ## / 73
- Az.LoadTesting.private.dll (cb91a36f27be) - ## / 73
- Az.ManagedServiceIdentity.private.dll (d077731c7206) - ## / 64
- Az.ManagedServices.private.dll (9689f94cfa45) - ## / 73
- Az.MarketplaceOrdering.private.dll (30a1a687edff) - ## / 73
- Az.RedisEnterpriseCache.private.dll (ee1cd8b215c8) - ## / 73
- Az.Relay.private.dll (a93d637118b9) - ## / 72
- Az.ResourceMover.private.dll (91f15d2a53a1) - ## / 71
- Az.SecurityInsights.private.dll (470b165e536f) - ## / 73
- Az.StreamAnalytics.private.dll (1aeceb318e1f) - ## / 73
- Microsoft.IdentityModel.Abstractions.dll (abddf06df6e8) - ## / 69
- Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.dll (0b0ed61e6d54) - ## / 74
- Microsoft.DataTransfer.Gateway.Encryption.dll (66146c244a51) - ## / 75
- Microsoft.Azure.PowerShell.Cmdlets.DataShare.dll (d28752a1a552) - ## / 74
- Microsoft.Azure.PowerShell.Cmdlets.DevTestLabs.dll (fcf10d41fa17) - ## / 73
- Microsoft.Azure.PowerShell.Cmdlets.MachineLearning.dll (c84ce7a0dcbb) - ## / 74
- Microsoft.Azure.PowerShell.Cmdlets.OperationalInsights.dll (2b224c50f05e) - ## / 73
- Azure.Identity.Broker.dll (f9a0666a83ab) - ## / 73
- System.ClientModel.dll (a3376615c94a) - ## / 74
- Az.Support.private.dll (9ce85c3dc175) - ## / 73
- Microsoft.Azure.PowerShell.Cmdlets.DataLakeStore.dll (1a15d99259c2) - ## / 74
- NLog.dll (9b3fe732ffba) - ## / 74
- Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.dll (5659c3ff274d) - ## / 74
- Microsoft.Azure.PowerShell.FrontDoor.Management.Sdk.dll (774671d08987) - ## / 74
- Azure.Analytics.Synapse.Artifacts.dll (6c36fc6acbe4) - ## / 74
- Azure.Identity.dll (bde6f7dc6230) - ## / 72
- Microsoft.Identity.Client.NativeInterop.dll (88f96b5fca78) - ## / 68
- msalruntime.dll (e27d3fe39da1) - ## / 73
- msalruntime_arm64.dll (a7adf1c32576) - ## / 72
- msalruntime_x86.dll (23f826bfe027) - ## / 73
- Az.StorageMover.private.dll (7032f80e9bbc) - ## / 74
- Microsoft.Azure.PowerShell.Cmdlets.RedisCache.dll (2b1c8bf14a4d) - ## / 74
- Microsoft.Azure.PowerShell.RedisCache.Management.Sdk.dll (f16972d26980) - ## / 75
- Microsoft.Azure.Storage.Blob.dll (fa05f0267135) - ## / 75
- Microsoft.Azure.Storage.Common.dll (b2212fc3ad45) - ## / 75
- Microsoft.Azure.Storage.DataMovement.dll (014a3c90401e) - ## / 73
- Microsoft.Azure.Storage.File.dll (d9262c5eb0a2) - ## / 66
- Microsoft.Azure.Storage.Queue.dll (9740c2fd9dcc) - ## / 71
- Azure.Core.dll (76d2c17e0678) - ## / 74
- Az.MachineLearningServices.private.dll (451ebad6262f) - ## / 75
- Az.Nginx.private.dll (e7d6ce6048e4) - ## / 75
- Microsoft.Azure.PowerShell.Aks.Management.Sdk.dll (f68dcb5dfcdf) - ## / 56
- Microsoft.Azure.PowerShell.Cmdlets.Aks.dll (f767a945cdc1) - ## / 43
- YamlDotNet.dll (332e8ff0ef71) - ## / 73
- Microsoft.Azure.PowerShell.AutoMapper.dll (656f732da223) - ## / 67
- Microsoft.Azure.PowerShell.Cmdlets.Billing.dll (34d32bf47ce0) - ## / 73
- Microsoft.Azure.PowerShell.Cmdlets.Consumption.dll (a73f381e3cb8) - ## / 73
- Microsoft.Azure.PowerShell.Cmdlets.UsageAggregates.dll (0921630ed94e) - ## / 71
- Microsoft.Azure.PowerShell.Cmdlets.CosmosDB.dll (119256bd58c8) - ## / 73
- Microsoft.Azure.PowerShell.CosmosDB.Management.Sdk.dll (96e33bcf6d82) - ## / 73
- Microsoft.Azure.PowerShell.Cmdlets.IotHub.dll (17f83c4e5d91) - ## / 73
- Microsoft.Azure.PowerShell.Cmdlets.Maintenance.dll (082655ed580c) - ## / 72
- Microsoft.Azure.PowerShell.Maintenance.Management.Sdk.dll (6e916d1b630e) - ## / 73
- Microsoft.Azure.PowerShell.Cmdlets.NotificationHubs.dll (6b973c9d5780) - ## / 73
- Microsoft.Azure.PowerShell.Cmdlets.Security.dll (6696df404f27) - ## / 73
- Microsoft.Azure.PowerShell.Security.Management.Sdk.dll (5b8f03c31415) - ## / 73
- Microsoft.Azure.PowerShell.Cmdlets.ServiceFabric.dll (43bb9b553633) - ## / 73
- Microsoft.Azure.PowerShell.ServiceFabric.Management.Sdk.dll (55b42d427c12) - ## / 70
- Microsoft.Azure.PowerShell.ServiceFabricManagedClusters.Management.Sdk.dll (f72f0f6f4150) - ## / 70
- Microsoft.Azure.PowerShell.Cmdlets.SignalR.dll (4fdd3b5003d7) - ## / 73
- Microsoft.Azure.PowerShell.Cmdlets.StorageSync.dll (42de8a8fa09a) - ## / 72
- Microsoft.Azure.PowerShell.StorageSync.Management.Sdk.dll (56536b2169a6) - ## / 73
- Microsoft.Azure.PowerShell.Cmdlets.Synapse.dll (58c4da024486) - ## / 73
- Microsoft.Azure.PowerShell.Cmdlets.Websites.dll (4647b0558c50) - ## / 73
- Microsoft.Azure.PowerShell.Cmdlets.Websites.Helper.dll (89444ea614d2) - ## / 71
- Az.Aks.private.dll (7ff28fa04dfb) - ## / 56
- Az.AppConfiguration.private.dll (37551dbe7e96) - ## / 62
- Az.AppConfigurationdata.private.dll (8402b1319714) - ## / 72
- Az.Automanage.private.dll (44d4036d8349) - ## / 53
- Az.Cdn.private.dll (32fef839e2ab) - ## / 58
- Az.Databricks.private.dll (8292fbd1a3df) - ## / 73
- Az.MySql.private.dll (807af861af0e) - ## / 73
- Az.NetworkCloud.private.dll (9bc19fc27413) - ## / 72
- Az.Oracle.private.dll (e9b77cd91133) - ## / 73
- Az.PostgreSql.private.dll (bbc9147332f4) - ## / 72
- Az.DefenderForStorage.private.dll (4112147f670f) - ## / 72
- Az.Security.private.dll (46d334c66a52) - ## / 73
- Az.SignalR.private.dll (0cd786bfc53e) - ## / 73
- Az.SqlVirtualMachine.private.dll (e4e36e0b2e92) - ## / 73
- Az.StackHCIVM.private.dll (713aeb9493f4) - ## / 73
- Az.Synapse.private.dll (62edf5daac96) - ## / 72
- Az.Websites.private.dll (faaf1c9c4c01) - ## / 73
- Microsoft.Azure.PowerShell.AnalysisServices.Management.Sdk.dll (bc44f04cd029) - ## / 72
- Microsoft.Azure.PowerShell.Cmdlets.AnalysisServices.Dataplane.dll (fbd081436507) - ## / 71
- Microsoft.Azure.PowerShell.Cmdlets.AnalysisServices.dll (595d00412809) - ## / 72
- Microsoft.Azure.PowerShell.ApiManagement.Management.Sdk.dll (5d7569854be9) - ## / 72
- Microsoft.Azure.PowerShell.AutoMapper.dll (5cbf87ebe31a) - ## / 72
- Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.dll (bcb2143eac1a) - ## / 72
- Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement.dll (ba42407a9cf5) - ## / 72
- Microsoft.Azure.PowerShell.Attestation.Management.Sdk.dll (04cd2ba20077) - ## / 72
- Microsoft.Azure.PowerShell.Cmdlets.Attestation.dll (721848fe80ef) - ## / 72
- Microsoft.Azure.PowerShell.Batch.Management.Sdk.dll (0d6d9e5b4998) - ## / 72
- Microsoft.Azure.PowerShell.Cmdlets.Batch.dll (478ad3f3c0be) - ## / 72
- Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV1.dll (d6f0c7e419de) - ## / 71
- Microsoft.Azure.PowerShell.Cmdlets.DataFactoryV2.dll (30c830fc55a6) - ## / 71
- Microsoft.Azure.PowerShell.DataFactory.Management.Sdk.dll (173eb1a021b8) - ## / 72
- Microsoft.Azure.PowerShell.Cmdlets.EventHub.dll (d395b03fa387) - ## / 72
- Microsoft.Azure.PowerShell.EventHub.Management.Sdk.dll (a2999d67760e) - ## / 71
- Microsoft.Azure.PowerShell.Cmdlets.PrivateDns.dll (23f0f22da165) - ## / 72
- Microsoft.Azure.PowerShell.PrivateDns.Management.Sdk.dll (3d63b37e81f1) - ## / 71
- Microsoft.Azure.PowerShell.Cmdlets.ResourceGraph.dll (f3a4341a5659) - ## / 72
- Microsoft.Azure.PowerShell.ResourceGraph.Management.Sdk.dll (1b7f746d2bfb) - ## / 72
- Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.dll (98084c6ae3dc) - ## / 72
- Microsoft.Azure.PowerShell.ServiceBus.Management.Sdk.dll (b41775944c6d) - ## / 72
- Microsoft.Identity.Client.Broker.dll (78c8353b0a78) - ## / 72
- Microsoft.Identity.Client.dll (68024849f662) - ## / 73
- Microsoft.Identity.Client.Extensions.Msal.dll (c4e34bfcc65a) - ## / 73
- Az.Attestation.private.dll (7125f8adb6ef) - ## / 71
- Az.DataProtection.private.dll (f9364e0e5206) - ## / 72
- Az.EventGrid.private.dll (1e696c9e7480) - ## / 72
- Az.EventHub.private.dll (dcb00283455f) - ## / 72
- Az.Functions.private.dll (38406b2844d1) - ## / 72
- Az.Migrate.private.dll (0de44558c124) - ## / 72
- Az.ResourceGraph.private.dll (0df9030659d3) - ## / 72
- Az.ServiceBus.private.dll (c8914a766db0) - ## / 71
- Az.StackHCI.private.dll (d8e210756137) - ## / 62
- az.powershell.13.0.0.nupkg (dde95a5b1eb9) - ## / 52
- az.zip (8d14f82b3b1d) - ## / 41
- FuzzySharp.dll (32bd6f9bc76b) - ## / 70
- Microsoft.Azure.PowerShell.AssemblyLoading.dll (ab4741641b0a) - ## / 73
- Microsoft.Azure.PowerShell.Authentication.Abstractions.dll (e83607d1552a) - ## / 73
- Microsoft.Azure.PowerShell.Authentication.dll (e7242f5ec112) - ## / 72
- Microsoft.Azure.PowerShell.Authentication.ResourceManager.dll (3cb36b709eda) - ## / 73
- Microsoft.Azure.PowerShell.AuthenticationAssemblyLoadContext.dll (beabd208fa8c) - ## / 71
- Microsoft.Azure.PowerShell.Authenticators.dll (219a7f1a464d) - ## / 70
- Microsoft.Azure.PowerShell.Clients.Aks.dll (195e907155ca) - ## / 72
- Microsoft.Azure.PowerShell.Clients.Authorization.dll (204586e31025) - ## / 73
- Microsoft.Azure.PowerShell.Clients.Compute.dll (4adc4b64061b) - ## / 71
- Microsoft.Azure.PowerShell.Clients.Graph.Rbac.dll (777452387171) - ## / 73
- Microsoft.Azure.PowerShell.Clients.KeyVault.dll (148190843010) - ## / 73
- Microsoft.Azure.PowerShell.Clients.Monitor.dll (ed14ddd506fb) - ## / 72
- Microsoft.Azure.PowerShell.Clients.Network.dll (93e93cb5f3b9) - ## / 73
- Microsoft.Azure.PowerShell.Clients.PolicyInsights.dll (c7bc743ac74f) - ## / 73
- Microsoft.Azure.PowerShell.Clients.ResourceManager.dll (84c584c14927) - ## / 73
- Microsoft.Azure.PowerShell.Clients.Storage.Management.dll (1fd55e47893c) - ## / 73
- Microsoft.Azure.PowerShell.Clients.Websites.dll (9573bcfa2f1e) - ## / 72
- Microsoft.Azure.PowerShell.Cmdlets.Accounts.dll (e84f282cf168) - ## / 73
- Microsoft.Azure.PowerShell.Common.dll (218e33a6b122) - ## / 73
- Microsoft.Azure.PowerShell.Common.Share.dll (134a6fb0eacd) - ## / 72
- Microsoft.Azure.PowerShell.Storage.dll (c0b76ec6afe9) - ## / 73
- Microsoft.Azure.PowerShell.Strategies.dll (fde3ea56f0c1) - ## / 72
- Microsoft.Azure.PowerShell.AutoMapper.dll (4326cb3f0096) - ## / 73
- Microsoft.Azure.PowerShell.Cmdlets.Compute.dll (5cc5744e033b) - ## / 72
- Microsoft.Azure.PowerShell.Cmdlets.Compute.Helpers.dll (74a69be673aa) - ## / 73
- Microsoft.Azure.PowerShell.Compute.Management.Sdk.dll (941460374ca1) - ## / 71
- Microsoft.Azure.PowerShell.Cmdlets.Dns.dll (79d51a8848ef) - ## / 73
- Microsoft.Azure.PowerShell.Dns.Management.Sdk.dll (d71c06c0b80d) - ## / 73
- Microsoft.Azure.PowerShell.Cmdlets.HDInsight.dll (1b7b7b4f451f) - ## / 73
- Microsoft.Azure.PowerShell.HDInsight.Management.Sdk.dll (e363c9b0ab75) - ## / 72
- BouncyCastle.Crypto.dll (634205634fd5) - ## / 72
- Microsoft.Azure.PowerShell.Cmdlets.KeyVault.dll (5481848cbfbc) - ## / 71
- Microsoft.Azure.PowerShell.KeyVault.Management.Sdk.dll (b19f09c24795) - ## / 71
- Microsoft.Azure.PowerShell.Cmdlets.Monitor.dll (c09abf4f2633) - ## / 73
- Microsoft.Azure.PowerShell.Cmdlets.Network.dll (1df38aa2e4d4) - ## / 72
- Microsoft.Azure.PowerShell.Network.Management.Sdk.dll (ebd4ad17d5ec) - ## / 72
- Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.dll (006bcb586a63) - ## / 73
- Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Helpers.dll (b284d93711e7) - ## / 72
- Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Logger.dll (d17c7a3b7c1a) - ## / 73
- Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Models.dll (39057fc860f0) - ## / 73
- Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.Providers.dll (575792287677) - ## / 73
- Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.ServiceClientAdapter.dll (809912eb3f91) - ## / 73
- Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.dll (72e5500521da) - ## / 72
- Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.SiteRecovery.dll (0adb0521a579) - ## / 73
- Microsoft.Azure.PowerShell.RecoveryServices.Backup.CrossRegionRestore.Management.Sdk.dll (5b97300ecea2) - ## / 70
- Microsoft.Azure.PowerShell.RecoveryServices.Backup.Management.Sdk.dll (db0394c3c15d) - ## / 72
- Microsoft.Azure.PowerShell.RecoveryServices.Management.Sdk.dll (2cc9bd6fb329) - ## / 73
- Microsoft.Azure.PowerShell.RecoveryServices.SiteRecovery.Management.Sdk.dll (b22a70f601b8) - ## / 71
- TimeZoneConverter.dll (6afbc46849d8) - ## / 72
- Microsoft.Azure.PowerShell.Authorization.Management.Sdk.dll (f4d80f8de0a3) - ## / 73
- Microsoft.Azure.PowerShell.Cmdlets.ResourceManager.dll (13a187d28844) - ## / 73
- Microsoft.Azure.PowerShell.Cmdlets.Resources.dll (4c79faab1fda) - ## / 73
- Microsoft.Azure.PowerShell.Cmdlets.Tags.dll (0f8f4cf9529c) - ## / 73
- Microsoft.Azure.PowerShell.Resources.Management.Sdk.dll (6afd4f6205cb) - ## / 71
- Microsoft.Azure.PowerShell.Cmdlets.Sql.dll (a304fcbd1c63) - ## / 73
- Microsoft.Azure.PowerShell.Cmdlets.Sql.LegacySdk.dll (28dc9ae6af0a) - ## / 72
- Microsoft.Azure.PowerShell.Sql.Management.Sdk.dll (f7d01edf12d4) - ## / 73
- Microsoft.Azure.PowerShell.Cmdlets.Storage.dll (3f643c5afc7d) - ## / 72
- Microsoft.Azure.PowerShell.Cmdlets.Storage.Management.dll (ed808f80b6c8) - ## / 49
- Microsoft.Azure.PowerShell.Storage.Common.dll (52befc6badcf) - ## / 72
- Microsoft.Azure.PowerShell.Storage.Management.Sdk.dll (0e634a8a1b6f) - ## / 72
- Microsoft.Azure.Commands.Compute.AlcWrapper.dll (4f0d3f8dee87) - ## / 73
- Newtonsoft.Json.dll (650eab05d184) - ## / 73
- Az.App.private.dll (1f58c431cc6c) - ## / 73
- Az.Compute.private.dll (f0a79b95b354) - ## / 73
- Az.ConnectedMachine.private.dll (6810a5d464f7) - ## / 72
- Az.ContainerInstance.private.dll (4b84e619ae8d) - ## / 71
- Az.DesktopVirtualization.private.dll (3a2eb920d74e) - ## / 70
- Az.DevCenter.private.dll (b2813e0ad533) - ## / 72
- Az.DevCenterdata.private.dll (95f452755c7a) - ## / 71
- Az.Dns.private.dll (cbac5bc82a0f) - ## / 67
- Az.DnsResolver.private.dll (24aac4e07e52) - ## / 72
- Az.ElasticSan.private.dll (8fb48b449b6c) - ## / 73
- Az.KeyVault.private.dll (a27d403d28b0) - ## / 73
- Az.ActionGroup.private.dll (900aacf9cd1c) - ## / 73
- Az.ActivityLogAlert.private.dll (c7a26c3df245) - ## / 73
- Az.Autoscale.private.dll (a4924d0a5e07) - ## / 72
- Az.DataCollectionRule.private.dll (a0692bc67aec) - ## / 73
- Az.DiagnosticSetting.private.dll (d994a9fe66f9) - ## / 73
- Az.Metricdata.private.dll (cb48112509f5) - ## / 69
- Az.MonitorWorkspace.private.dll (380654d67b44) - ## / 72
- Az.PipelineGroup.private.dll (9f54f5a4e867) - ## / 72
- Az.ScheduledQueryRule.private.dll (99f8d9bd2ebb) - ## / 72
- Az.Authorization.private.dll (9958dbc3600a) - ## / 69
- Az.DataBoundary.private.dll (84ee0c920959) - ## / 73
- Az.MSGraph.private.dll (41acb62974bc) - ## / 73
- Az.Policy.private.dll (20186ea7de46) - ## / 72
- Az.Storage.private.dll (d3b5278db688) - ## / 73
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
2019 Microsoft
-
- chocolatey (≥ 0.10.8)
Ground Rules:
- This discussion is only about Microsoft Azure PowerShell (Az PowerShell Module) and the Microsoft Azure PowerShell (Az PowerShell Module) 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 (Az PowerShell Module), 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.