diff --git a/docs-conceptual/azps-10.0.0/zone-pivot-groups.yml b/docs-conceptual/azps-10.0.0/zone-pivot-groups.yml deleted file mode 100644 index 53ec0a5969..0000000000 --- a/docs-conceptual/azps-10.0.0/zone-pivot-groups.yml +++ /dev/null @@ -1,10 +0,0 @@ -# YamlMime:ZonePivotGroups -groups: -- id: install-azps-windows - title: Install Azure PowerShell on Windows - prompt: Choose an installation method - pivots: - - id: windows-psgallery - title: PowerShell Gallery - - id: windows-msi - title: MSI Installer diff --git a/docs-conceptual/azps-10.1.0/authenticate-azureps.md b/docs-conceptual/azps-10.1.0/authenticate-azureps.md index 62477773de..27ff65d911 100644 --- a/docs-conceptual/azps-10.1.0/authenticate-azureps.md +++ b/docs-conceptual/azps-10.1.0/authenticate-azureps.md @@ -1,7 +1,7 @@ --- description: How to sign in with Azure PowerShell as a user, service principal, or with managed identities for Azure resources. ms.custom: devx-track-azurepowershell -ms.date: 06/30/2023 +ms.date: 07/05/2023 ms.devlang: powershell ms.service: azure-powershell ms.topic: conceptual diff --git a/docs-conceptual/azps-10.1.0/az-powershell-proxy.md b/docs-conceptual/azps-10.1.0/az-powershell-proxy.md index 0506b4c93d..7365022a5a 100644 --- a/docs-conceptual/azps-10.1.0/az-powershell-proxy.md +++ b/docs-conceptual/azps-10.1.0/az-powershell-proxy.md @@ -1,7 +1,7 @@ --- description: How to use the Azure Az PowerShell module behind a proxy server ms.custom: devx-track-azurepowershell -ms.date: 06/30/2023 +ms.date: 07/05/2023 ms.devlang: powershell ms.service: azure-powershell ms.topic: conceptual diff --git a/docs-conceptual/azps-10.1.0/az-predictor.md b/docs-conceptual/azps-10.1.0/az-predictor.md index c72cc5b41c..af92b6cdee 100644 --- a/docs-conceptual/azps-10.1.0/az-predictor.md +++ b/docs-conceptual/azps-10.1.0/az-predictor.md @@ -1,7 +1,7 @@ --- description: Using Az Predictor for intelligent context-aware command completion in Azure PowerShell. ms.custom: devx-track-azurepowershell -ms.date: 06/30/2023 +ms.date: 07/05/2023 ms.devlang: powershell ms.service: azure-powershell ms.topic: conceptual diff --git a/docs-conceptual/azps-10.1.0/azps-msgraph-migration-changes.md b/docs-conceptual/azps-10.1.0/azps-msgraph-migration-changes.md index 151dda8e1c..411c11451b 100644 --- a/docs-conceptual/azps-10.1.0/azps-msgraph-migration-changes.md +++ b/docs-conceptual/azps-10.1.0/azps-msgraph-migration-changes.md @@ -1,7 +1,7 @@ --- description: This migration guide contains a list of Azure PowerShell changes for the Azure AD to Microsoft Graph migration in Az.Resources 5.1.0. ms.custom: devx-track-azurepowershell -ms.date: 06/30/2023 +ms.date: 07/05/2023 ms.devlang: powershell ms.service: azure-powershell ms.topic: conceptual diff --git a/docs-conceptual/azps-10.1.0/azps-versioning-release-cadence.md b/docs-conceptual/azps-10.1.0/azps-versioning-release-cadence.md index 23177a8654..cc4ebc2055 100644 --- a/docs-conceptual/azps-10.1.0/azps-versioning-release-cadence.md +++ b/docs-conceptual/azps-10.1.0/azps-versioning-release-cadence.md @@ -1,7 +1,7 @@ --- description: This article contains Azure PowerShell versioning, release cadence, and breaking change information for the Az PowerShell module. ms.custom: devx-track-azurepowershell -ms.date: 06/30/2023 +ms.date: 07/05/2023 ms.devlang: powershell ms.service: azure-powershell ms.topic: conceptual diff --git a/docs-conceptual/azps-10.1.0/azureps-in-docker.md b/docs-conceptual/azps-10.1.0/azureps-in-docker.md index db7759e473..2b147b3568 100644 --- a/docs-conceptual/azps-10.1.0/azureps-in-docker.md +++ b/docs-conceptual/azps-10.1.0/azureps-in-docker.md @@ -1,89 +1,13 @@ --- description: Learn how to run a Docker container hosting Azure PowerShell. Docker gets you started quickly with an isolated environment in which to run Azure PowerShell. ms.custom: devx-track-azurepowershell -ms.date: 06/30/2023 +ms.date: 07/05/2023 ms.devlang: powershell ms.service: azure-powershell ms.topic: conceptual title: How to run Azure PowerShell in a Docker container --- -# Using Azure PowerShell in a Docker container - -We publish Docker images with Azure PowerShell preinstalled. You can use Docker to run a standalone -Linux container with Azure PowerShell preinstalled. This article shows you how to use Azure -PowerShell in the Docker container. - -## Finding available images - -The released images require Docker 17.05 or newer. You must be able to run Docker without `sudo` or -local administrative rights. Follow Docker's official [instructions][install] to install Docker. - -The release containers derive from the official distribution image, install dependencies, and -install the Azure PowerShell module. - -The latest container image contains the latest version of PowerShell and the latest Azure PowerShell -modules supported with the Az PowerShell module. - -You can find a complete list of Azure PowerShell Docker images on our [Docker image][az image] page. - -## Using Azure PowerShell in a container - -The following steps show the Docker commands required to download the image and start an interactive -PowerShell session. - -# [amd64](#tab/amd64) - -1. Download the latest azure-powershell image. - - ```console - docker pull mcr.microsoft.com/azure-powershell - ``` - -1. Run the azure-powershell container in interactive mode: - - ```console - docker run -it mcr.microsoft.com/azure-powershell pwsh - ``` - -# [arm64](#tab/arm64) - -1. Download the latest azure-powershell image. - - ```console - docker pull mcr.microsoft.com/azure-powershell:mariner-2-arm64 - ``` - -1. Run the azure-powershell container in interactive mode: - - ```console - docker run -it mcr.microsoft.com/azure-powershell:mariner-2-arm64 pwsh - ``` - ---- - -For Windows Docker hosts, you must enable Docker file sharing to allow local drives on Windows to be -shared with Linux containers. For more information, see -[Get started with Docker for Windows][file-sharing]. - -### Remove the image when no longer needed - -The following command deletes the Docker container when you no longer need it. - -# [amd64](#tab/amd64) - -```console -docker rmi mcr.microsoft.com/azure-powershell -``` - -# [arm64](#tab/arm64) - -```console -docker rmi mcr.microsoft.com/azure-powershell:mariner-2-arm64 -``` - ---- - ## Next steps To learn more about the Azure PowerShell modules and their features, see diff --git a/docs-conceptual/azps-10.1.0/azureps-support-lifecycle.md b/docs-conceptual/azps-10.1.0/azureps-support-lifecycle.md index afb9a6c529..b2f94d6e5b 100644 --- a/docs-conceptual/azps-10.1.0/azureps-support-lifecycle.md +++ b/docs-conceptual/azps-10.1.0/azureps-support-lifecycle.md @@ -1,7 +1,7 @@ --- description: Details about the support lifecycle of the Azure PowerShell modules ms.custom: devx-track-azurepowershell -ms.date: 06/30/2023 +ms.date: 07/05/2023 ms.devlang: powershell ms.service: azure-powershell ms.topic: conceptual diff --git a/docs-conceptual/azps-10.1.0/azureps-vm-tutorial.yml b/docs-conceptual/azps-10.1.0/azureps-vm-tutorial.yml index c3f69001cd..0b0164461a 100644 --- a/docs-conceptual/azps-10.1.0/azureps-vm-tutorial.yml +++ b/docs-conceptual/azps-10.1.0/azureps-vm-tutorial.yml @@ -7,7 +7,7 @@ metadata: level: Beginner displayType: two-column interactive: azurepowershell - ms.date: 06/30/2023 + ms.date: 07/05/2023 ms.devlang: powershell ms.custom: devx-track-azurepowershell ms.service: azure-powershell diff --git a/docs-conceptual/azps-10.1.0/command-line-tools-survey-guidance.md b/docs-conceptual/azps-10.1.0/command-line-tools-survey-guidance.md index f4101ec699..f525752596 100644 --- a/docs-conceptual/azps-10.1.0/command-line-tools-survey-guidance.md +++ b/docs-conceptual/azps-10.1.0/command-line-tools-survey-guidance.md @@ -1,7 +1,7 @@ --- description: This article contains guidance about the Azure command line tools survey. ms.custom: devx-track-azurepowershell -ms.date: 06/30/2023 +ms.date: 07/05/2023 ms.devlang: powershell ms.service: azure-powershell ms.topic: conceptual diff --git a/docs-conceptual/azps-10.1.0/configure-global-settings.md b/docs-conceptual/azps-10.1.0/configure-global-settings.md index 03c999db76..0b0759bb40 100644 --- a/docs-conceptual/azps-10.1.0/configure-global-settings.md +++ b/docs-conceptual/azps-10.1.0/configure-global-settings.md @@ -1,7 +1,7 @@ --- description: Configure Azure PowerShell global settings using centralized and granular AzConfig cmdlets ms.custom: devx-track-azurepowershell -ms.date: 06/30/2023 +ms.date: 07/05/2023 ms.devlang: powershell ms.service: azure-powershell ms.topic: conceptual diff --git a/docs-conceptual/azps-10.1.0/context-persistence.md b/docs-conceptual/azps-10.1.0/context-persistence.md index db19130e39..e30ff425c1 100644 --- a/docs-conceptual/azps-10.1.0/context-persistence.md +++ b/docs-conceptual/azps-10.1.0/context-persistence.md @@ -1,7 +1,7 @@ --- description: Learn how to reuse Azure credentials and other information across multiple PowerShell sessions. ms.custom: devx-track-azurepowershell -ms.date: 06/30/2023 +ms.date: 07/05/2023 ms.devlang: powershell ms.service: azure-powershell ms.topic: conceptual diff --git a/docs-conceptual/azps-10.1.0/create-azure-service-principal-azureps.md b/docs-conceptual/azps-10.1.0/create-azure-service-principal-azureps.md index 526ed12355..1562f72adb 100644 --- a/docs-conceptual/azps-10.1.0/create-azure-service-principal-azureps.md +++ b/docs-conceptual/azps-10.1.0/create-azure-service-principal-azureps.md @@ -1,7 +1,7 @@ --- description: Learn how to create and use service principals with Azure PowerShell. ms.custom: devx-track-azurepowershell -ms.date: 06/30/2023 +ms.date: 07/05/2023 ms.devlang: powershell ms.service: azure-powershell ms.topic: conceptual diff --git a/docs-conceptual/azps-10.1.0/faq.yml b/docs-conceptual/azps-10.1.0/faq.yml index 7ea3faefc7..03cecf9a19 100644 --- a/docs-conceptual/azps-10.1.0/faq.yml +++ b/docs-conceptual/azps-10.1.0/faq.yml @@ -4,7 +4,7 @@ metadata: description: Frequently Asked Questions about Azure PowerShell. ms.devlang: powershell ms.topic: faq - ms.date: 06/30/2023 + ms.date: 07/05/2023 ms.custom: devx-track-azurepowershell ms.service: azure-powershell diff --git a/docs-conceptual/azps-10.1.0/formatting-output.md b/docs-conceptual/azps-10.1.0/formatting-output.md index 439d6da1d7..9ed437360f 100644 --- a/docs-conceptual/azps-10.1.0/formatting-output.md +++ b/docs-conceptual/azps-10.1.0/formatting-output.md @@ -1,7 +1,7 @@ --- description: How to format cmdlet output for Azure PowerShell. ms.custom: devx-track-azurepowershell -ms.date: 06/30/2023 +ms.date: 07/05/2023 ms.devlang: powershell ms.service: azure-powershell ms.topic: conceptual diff --git a/docs-conceptual/azps-10.1.0/get-started-azureps.md b/docs-conceptual/azps-10.1.0/get-started-azureps.md index f2544dd60b..93bdf4db4e 100644 --- a/docs-conceptual/azps-10.1.0/get-started-azureps.md +++ b/docs-conceptual/azps-10.1.0/get-started-azureps.md @@ -1,7 +1,7 @@ --- description: Get started with Azure PowerShell ms.custom: devx-track-azurepowershell -ms.date: 06/30/2023 +ms.date: 07/05/2023 ms.devlang: powershell ms.service: azure-powershell ms.topic: get-started-article diff --git a/docs-conceptual/azps-10.1.0/install-azps-linux.md b/docs-conceptual/azps-10.1.0/install-azps-linux.md index eef169588d..8d60a797ca 100644 --- a/docs-conceptual/azps-10.1.0/install-azps-linux.md +++ b/docs-conceptual/azps-10.1.0/install-azps-linux.md @@ -1,7 +1,7 @@ --- description: Learn how to install and run Azure PowerShell on Linux. You can install Azure PowerShell on Linux with one command. ms.custom: devx-track-azurepowershell -ms.date: 06/30/2023 +ms.date: 07/05/2023 ms.devlang: powershell ms.service: azure-powershell ms.topic: conceptual diff --git a/docs-conceptual/azps-10.1.0/install-azps-macos.md b/docs-conceptual/azps-10.1.0/install-azps-macos.md index 44830475db..a708fea79b 100644 --- a/docs-conceptual/azps-10.1.0/install-azps-macos.md +++ b/docs-conceptual/azps-10.1.0/install-azps-macos.md @@ -1,7 +1,7 @@ --- description: Learn how to install and run Azure PowerShell on macOS. You can install Azure PowerShell on macOS with one command. ms.custom: devx-track-azurepowershell -ms.date: 06/30/2023 +ms.date: 07/05/2023 ms.devlang: powershell ms.service: azure-powershell ms.topic: conceptual diff --git a/docs-conceptual/azps-10.1.0/install-azps-windows.md b/docs-conceptual/azps-10.1.0/install-azps-windows.md index ec6a80d0d3..44da7e4c68 100644 --- a/docs-conceptual/azps-10.1.0/install-azps-windows.md +++ b/docs-conceptual/azps-10.1.0/install-azps-windows.md @@ -1,69 +1,15 @@ --- description: Learn how to install and run Azure PowerShell on Windows. You can install Azure PowerShell on Windows with one command. ms.custom: devx-track-azurepowershell -ms.date: 06/30/2023 +ms.date: 07/05/2023 ms.devlang: powershell ms.service: azure-powershell ms.topic: conceptual -title: Install Azure PowerShell on Windows | Microsoft Docs +title: Install Azure PowerShell on Windows zone_pivot_group_filename: azure/zone-pivot-groups.json zone_pivot_groups: install-azps-windows --- -# Install Azure PowerShell on Windows - -The Azure PowerShell Az module is a rollup module. Installing the Az PowerShell module downloads the -generally available modules and makes their cmdlets available for use. - -The recommended installation method and PowerShell version for the Az PowerShell module: - -- Install from the PowerShell Gallery -- Use with PowerShell version 7 or higher - -::: zone pivot="windows-psgallery" - -This article explains how to install the Az PowerShell module on Windows from the -[PowerShell Gallery](/powershell/scripting/gallery/overview). - -## Prerequisites - -- Run the following command from PowerShell to determine your PowerShell version: - - ```powershell - $PSVersionTable.PSVersion - ``` - -- Determine if you have the AzureRM PowerShell module installed: - - ```powershell - Get-Module -Name AzureRM -ListAvailable - ``` - - > [!IMPORTANT] - > If you have the AzureRM PowerShell module installed, see - > [Az and AzureRM coexistence](troubleshooting.md#az-and-azurerm-coexistence) before proceeding. - -# [PowerShell 7](#tab/powershell) - -- Install a supported version of - [PowerShell version 7 or higher](/powershell/scripting/install/installing-powershell-on-windows) - -# [Windows PowerShell](#tab/windowspowershell) - -- Update to - [Windows PowerShell 5.1](/powershell/scripting/windows-powershell/install/installing-windows-powershell#upgrading-existing-windows-powershell) -- Install [.NET Framework 4.7.2 or later](/dotnet/framework/install) -- Update PowerShellGet - - Launch Windows PowerShell 5.1 elevated as an administrator and run the following command to - update PowerShellGet: - - ```powershell - Install-Module -Name PowerShellGet -Force - ``` - ---- - - Set the PowerShell execution policy to remote signed or less restrictive - Check the PowerShell execution policy: diff --git a/docs-conceptual/azps-10.1.0/install-azure-powershell.md b/docs-conceptual/azps-10.1.0/install-azure-powershell.md index 421b7026d3..6cf89bfbf6 100644 --- a/docs-conceptual/azps-10.1.0/install-azure-powershell.md +++ b/docs-conceptual/azps-10.1.0/install-azure-powershell.md @@ -1,7 +1,7 @@ --- description: Azure PowerShell is available to install for Windows, Linux, and macOS. It can also be run from Azure Cloud Shell and in a Docker container. ms.custom: devx-track-azurepowershell -ms.date: 06/30/2023 +ms.date: 07/05/2023 ms.devlang: powershell ms.service: azure-powershell ms.topic: conceptual diff --git a/docs-conceptual/azps-10.1.0/manage-azure-resources-invoke-azrestmethod.md b/docs-conceptual/azps-10.1.0/manage-azure-resources-invoke-azrestmethod.md index d064bfc014..8e9e3e31c7 100644 --- a/docs-conceptual/azps-10.1.0/manage-azure-resources-invoke-azrestmethod.md +++ b/docs-conceptual/azps-10.1.0/manage-azure-resources-invoke-azrestmethod.md @@ -1,7 +1,7 @@ --- description: How to use Azure PowerShell to manage resources with the Invoke-AzRestMethod cmdlet. ms.custom: devx-track-azurepowershell -ms.date: 06/30/2023 +ms.date: 07/05/2023 ms.devlang: powershell ms.service: azure-powershell ms.topic: conceptual diff --git a/docs-conceptual/azps-10.1.0/manage-subscriptions-azureps.md b/docs-conceptual/azps-10.1.0/manage-subscriptions-azureps.md index 6ce48f25b2..87b1ebe73e 100644 --- a/docs-conceptual/azps-10.1.0/manage-subscriptions-azureps.md +++ b/docs-conceptual/azps-10.1.0/manage-subscriptions-azureps.md @@ -1,7 +1,7 @@ --- description: Manage Azure subscriptions with Azure PowerShell ms.custom: devx-track-azurepowershell -ms.date: 06/30/2023 +ms.date: 07/05/2023 ms.devlang: powershell ms.service: azure-powershell ms.topic: conceptual diff --git a/docs-conceptual/azps-10.1.0/migrate-az-1.0.0.md b/docs-conceptual/azps-10.1.0/migrate-az-1.0.0.md index cedaeb08d3..6378ab9c5c 100644 --- a/docs-conceptual/azps-10.1.0/migrate-az-1.0.0.md +++ b/docs-conceptual/azps-10.1.0/migrate-az-1.0.0.md @@ -1,7 +1,7 @@ --- description: This migration guide contains a list of breaking changes made to Azure PowerShell in the Az version 1 release. ms.custom: devx-track-azurepowershell -ms.date: 06/30/2023 +ms.date: 07/05/2023 ms.devlang: powershell ms.service: azure-powershell ms.topic: conceptual diff --git a/docs-conceptual/azps-10.1.0/migrate-az-10.0.0.md b/docs-conceptual/azps-10.1.0/migrate-az-10.0.0.md index 0c98a535b4..5cf32ff629 100644 --- a/docs-conceptual/azps-10.1.0/migrate-az-10.0.0.md +++ b/docs-conceptual/azps-10.1.0/migrate-az-10.0.0.md @@ -1,7 +1,7 @@ --- description: This migration guide contains a list of breaking changes made to Azure PowerShell in the Az version 10.0.0 release. ms.custom: devx-track-azurepowershell -ms.date: 06/30/2023 +ms.date: 07/05/2023 ms.devlang: powershell ms.service: azure-powershell ms.topic: conceptual diff --git a/docs-conceptual/azps-10.1.0/migrate-az-2.0.0.md b/docs-conceptual/azps-10.1.0/migrate-az-2.0.0.md index e3ac300032..0ad392b78d 100644 --- a/docs-conceptual/azps-10.1.0/migrate-az-2.0.0.md +++ b/docs-conceptual/azps-10.1.0/migrate-az-2.0.0.md @@ -1,7 +1,7 @@ --- description: This migration guide contains a list of breaking changes made to Azure PowerShell in the Az version 2.0 release. ms.custom: devx-track-azurepowershell -ms.date: 06/30/2023 +ms.date: 07/05/2023 ms.devlang: powershell ms.service: azure-powershell ms.topic: conceptual diff --git a/docs-conceptual/azps-10.1.0/migrate-az-3.0.0.md b/docs-conceptual/azps-10.1.0/migrate-az-3.0.0.md index 705e0aba1c..9f65dc5648 100644 --- a/docs-conceptual/azps-10.1.0/migrate-az-3.0.0.md +++ b/docs-conceptual/azps-10.1.0/migrate-az-3.0.0.md @@ -1,7 +1,7 @@ --- description: This migration guide contains a list of breaking changes made to Azure PowerShell in the Az version 3.0 release. ms.custom: devx-track-azurepowershell -ms.date: 06/30/2023 +ms.date: 07/05/2023 ms.devlang: powershell ms.service: azure-powershell ms.topic: conceptual diff --git a/docs-conceptual/azps-10.1.0/migrate-az-4.1.0.md b/docs-conceptual/azps-10.1.0/migrate-az-4.1.0.md index 5b2338982e..5fb6b87fd8 100644 --- a/docs-conceptual/azps-10.1.0/migrate-az-4.1.0.md +++ b/docs-conceptual/azps-10.1.0/migrate-az-4.1.0.md @@ -1,7 +1,7 @@ --- description: This migration guide contains a list of breaking changes made to Azure PowerShell in the Az version 4.1.0 release. ms.custom: devx-track-azurepowershell -ms.date: 06/30/2023 +ms.date: 07/05/2023 ms.devlang: powershell ms.service: azure-powershell ms.topic: conceptual diff --git a/docs-conceptual/azps-10.1.0/migrate-az-5.0.0.md b/docs-conceptual/azps-10.1.0/migrate-az-5.0.0.md index 612582882d..53547d7574 100644 --- a/docs-conceptual/azps-10.1.0/migrate-az-5.0.0.md +++ b/docs-conceptual/azps-10.1.0/migrate-az-5.0.0.md @@ -1,7 +1,7 @@ --- description: This migration guide contains a list of breaking changes made to Azure PowerShell in the Az version 5.0.0 release. ms.custom: devx-track-azurepowershell -ms.date: 06/30/2023 +ms.date: 07/05/2023 ms.devlang: powershell ms.service: azure-powershell ms.topic: conceptual diff --git a/docs-conceptual/azps-10.1.0/migrate-az-6.0.0.md b/docs-conceptual/azps-10.1.0/migrate-az-6.0.0.md index 14f30d1ab8..23afb62e67 100644 --- a/docs-conceptual/azps-10.1.0/migrate-az-6.0.0.md +++ b/docs-conceptual/azps-10.1.0/migrate-az-6.0.0.md @@ -1,7 +1,7 @@ --- description: This migration guide contains a list of breaking changes made to Azure PowerShell in the Az version 6.0.0 release. ms.custom: devx-track-azurepowershell -ms.date: 06/30/2023 +ms.date: 07/05/2023 ms.devlang: powershell ms.service: azure-powershell ms.topic: conceptual diff --git a/docs-conceptual/azps-10.1.0/migrate-az-7.0.0.md b/docs-conceptual/azps-10.1.0/migrate-az-7.0.0.md index 9503ee6cdf..6086ca5152 100644 --- a/docs-conceptual/azps-10.1.0/migrate-az-7.0.0.md +++ b/docs-conceptual/azps-10.1.0/migrate-az-7.0.0.md @@ -1,7 +1,7 @@ --- description: This migration guide contains a list of breaking changes made to Azure PowerShell in the Az version 7.0.0 release. ms.custom: devx-track-azurepowershell -ms.date: 06/30/2023 +ms.date: 07/05/2023 ms.devlang: powershell ms.service: azure-powershell ms.topic: conceptual diff --git a/docs-conceptual/azps-10.1.0/migrate-az-8.0.0.md b/docs-conceptual/azps-10.1.0/migrate-az-8.0.0.md index 3e25ad1270..ae3fa6014a 100644 --- a/docs-conceptual/azps-10.1.0/migrate-az-8.0.0.md +++ b/docs-conceptual/azps-10.1.0/migrate-az-8.0.0.md @@ -1,7 +1,7 @@ --- description: This migration guide contains a list of breaking changes made to Azure PowerShell in the Az version 8.0.0 release. ms.custom: devx-track-azurepowershell -ms.date: 06/30/2023 +ms.date: 07/05/2023 ms.devlang: powershell ms.service: azure-powershell ms.topic: conceptual diff --git a/docs-conceptual/azps-10.1.0/migrate-az-9.0.1-eventhub.md b/docs-conceptual/azps-10.1.0/migrate-az-9.0.1-eventhub.md index 212383dc51..747cc45466 100644 --- a/docs-conceptual/azps-10.1.0/migrate-az-9.0.1-eventhub.md +++ b/docs-conceptual/azps-10.1.0/migrate-az-9.0.1-eventhub.md @@ -1,7 +1,7 @@ --- description: This migration guide contains a list of breaking changes made to the Az.EventHub module in the Azure PowerShell 9.0.1 release. ms.custom: devx-track-azurepowershell -ms.date: 06/30/2023 +ms.date: 07/05/2023 ms.devlang: powershell ms.service: azure-powershell ms.topic: conceptual diff --git a/docs-conceptual/azps-10.1.0/migrate-az-9.0.1-servicebus.md b/docs-conceptual/azps-10.1.0/migrate-az-9.0.1-servicebus.md index 2351de5675..9a10aaf155 100644 --- a/docs-conceptual/azps-10.1.0/migrate-az-9.0.1-servicebus.md +++ b/docs-conceptual/azps-10.1.0/migrate-az-9.0.1-servicebus.md @@ -1,7 +1,7 @@ --- description: This migration guide contains a list of breaking changes made to the Az.ServiceBus module in the Azure PowerShell 9.0.1 release. ms.custom: devx-track-azurepowershell -ms.date: 06/30/2023 +ms.date: 07/05/2023 ms.devlang: powershell ms.service: azure-powershell ms.topic: conceptual diff --git a/docs-conceptual/azps-10.1.0/migrate-az-9.0.1.md b/docs-conceptual/azps-10.1.0/migrate-az-9.0.1.md index ec20a3d9f6..82c1838a8e 100644 --- a/docs-conceptual/azps-10.1.0/migrate-az-9.0.1.md +++ b/docs-conceptual/azps-10.1.0/migrate-az-9.0.1.md @@ -1,7 +1,7 @@ --- description: This migration guide contains a list of breaking changes made to Azure PowerShell in the Az version 9.0.1 release. ms.custom: devx-track-azurepowershell -ms.date: 06/30/2023 +ms.date: 07/05/2023 ms.devlang: powershell ms.service: azure-powershell ms.topic: conceptual diff --git a/docs-conceptual/azps-10.1.0/migrate-from-azurerm-to-az.md b/docs-conceptual/azps-10.1.0/migrate-from-azurerm-to-az.md index b4dd3813cc..ffc43fa61e 100644 --- a/docs-conceptual/azps-10.1.0/migrate-from-azurerm-to-az.md +++ b/docs-conceptual/azps-10.1.0/migrate-from-azurerm-to-az.md @@ -1,7 +1,7 @@ --- description: Learn the steps and tools for migrating Azure PowerShell scripts from AzureRM to the new Az PowerShell module. ms.custom: devx-track-azurepowershell, contperf-fy21q2 -ms.date: 06/30/2023 +ms.date: 07/05/2023 ms.devlang: powershell ms.service: azure-powershell ms.topic: conceptual diff --git a/docs-conceptual/azps-10.1.0/new-azureps-module-az.md b/docs-conceptual/azps-10.1.0/new-azureps-module-az.md index d9a380ea6f..a3c009a70a 100644 --- a/docs-conceptual/azps-10.1.0/new-azureps-module-az.md +++ b/docs-conceptual/azps-10.1.0/new-azureps-module-az.md @@ -1,7 +1,7 @@ --- description: Introducing the Az PowerShell module, recommended for interacting with Azure, and the replacement for the AzureRM PowerShell module. ms.custom: devx-track-azurepowershell -ms.date: 06/30/2023 +ms.date: 07/05/2023 ms.devlang: powershell ms.service: azure-powershell ms.topic: conceptual diff --git a/docs-conceptual/azps-10.1.0/queries-azureps.md b/docs-conceptual/azps-10.1.0/queries-azureps.md index 883f241722..6bfba670ed 100644 --- a/docs-conceptual/azps-10.1.0/queries-azureps.md +++ b/docs-conceptual/azps-10.1.0/queries-azureps.md @@ -1,7 +1,7 @@ --- description: How to query for resources in Azure and format the results. ms.custom: devx-track-azurepowershell -ms.date: 06/30/2023 +ms.date: 07/05/2023 ms.devlang: powershell ms.service: azure-powershell ms.topic: conceptual diff --git a/docs-conceptual/azps-10.1.0/quickstart-migrate-azurerm-to-az-automatically.md b/docs-conceptual/azps-10.1.0/quickstart-migrate-azurerm-to-az-automatically.md index 51ad25eaf4..48fbeb0e89 100644 --- a/docs-conceptual/azps-10.1.0/quickstart-migrate-azurerm-to-az-automatically.md +++ b/docs-conceptual/azps-10.1.0/quickstart-migrate-azurerm-to-az-automatically.md @@ -3,7 +3,7 @@ author: mikefrobbins description: Learn how to automatically migrate PowerShell scripts from AzureRM to the Az PowerShell module. ms.author: mirobb ms.custom: devx-track-azurepowershell, mode-api -ms.date: 06/30/2023 +ms.date: 07/05/2023 ms.service: azure-powershell ms.topic: quickstart title: Automatically migrate PowerShell scripts from AzureRM to the Az PowerShell module diff --git a/docs-conceptual/azps-10.1.0/release-notes-azureps.md b/docs-conceptual/azps-10.1.0/release-notes-azureps.md index 4783824544..5c471c1615 100644 --- a/docs-conceptual/azps-10.1.0/release-notes-azureps.md +++ b/docs-conceptual/azps-10.1.0/release-notes-azureps.md @@ -1,7 +1,7 @@ --- description: Learn about all of the latest updates to the Azure PowerShell modules. ms.custom: devx-track-azurepowershell -ms.date: 06/30/2023 +ms.date: 07/05/2023 ms.devlang: powershell ms.service: azure-powershell ms.topic: conceptual diff --git a/docs-conceptual/azps-10.1.0/troubleshooting.md b/docs-conceptual/azps-10.1.0/troubleshooting.md index 53f9e97c1e..ee697d81f8 100644 --- a/docs-conceptual/azps-10.1.0/troubleshooting.md +++ b/docs-conceptual/azps-10.1.0/troubleshooting.md @@ -1,7 +1,7 @@ --- description: Troubleshooting the Azure Az PowerShell module. ms.custom: devx-track-azurepowershell -ms.date: 06/30/2023 +ms.date: 07/05/2023 ms.devlang: powershell ms.service: azure-powershell ms.topic: conceptual diff --git a/docs-conceptual/azps-10.1.0/uninstall-az-ps.md b/docs-conceptual/azps-10.1.0/uninstall-az-ps.md index 479712e9bc..b7f82533e7 100644 --- a/docs-conceptual/azps-10.1.0/uninstall-az-ps.md +++ b/docs-conceptual/azps-10.1.0/uninstall-az-ps.md @@ -1,7 +1,7 @@ --- description: How to perform a complete uninstall of Azure PowerShell ms.custom: devx-track-azurepowershell -ms.date: 06/30/2023 +ms.date: 07/05/2023 ms.devlang: powershell ms.service: azure-powershell ms.topic: conceptual diff --git a/docs-conceptual/azps-10.1.0/upcoming-breaking-changes.md b/docs-conceptual/azps-10.1.0/upcoming-breaking-changes.md index cc0c248679..0f5c7e93c9 100644 --- a/docs-conceptual/azps-10.1.0/upcoming-breaking-changes.md +++ b/docs-conceptual/azps-10.1.0/upcoming-breaking-changes.md @@ -1,7 +1,7 @@ --- description: Learn about upcoming breaking changes to the Azure Az PowerShell module ms.custom: devx-track-azurepowershell -ms.date: 06/30/2023 +ms.date: 07/05/2023 ms.devlang: powershell ms.service: azure-powershell ms.topic: conceptual @@ -10,4 +10,4 @@ title: Upcoming breaking changes in Azure PowerShell # Upcoming breaking changes in Azure PowerShell -There is currently no planned breaking change for the next major release of Azure PowerShell - Az 11. \ No newline at end of file +There is currently no planned breaking change for the next major release of Azure PowerShell - Az 11. diff --git a/docs-conceptual/azps-10.1.0/using-psjobs.md b/docs-conceptual/azps-10.1.0/using-psjobs.md index bc5d3323ff..2484c290ea 100644 --- a/docs-conceptual/azps-10.1.0/using-psjobs.md +++ b/docs-conceptual/azps-10.1.0/using-psjobs.md @@ -1,7 +1,7 @@ --- description: Learn how to run Azure PowerShell cmdlets in parallel or as background tasks, using -AsJob and Start-Job. ms.custom: devx-track-azurepowershell -ms.date: 06/30/2023 +ms.date: 07/05/2023 ms.devlang: powershell ms.service: azure-powershell ms.topic: conceptual diff --git a/docs-conceptual/azps-10.1.0/what-is-azure-powershell.md b/docs-conceptual/azps-10.1.0/what-is-azure-powershell.md index f411f1a8f8..42fdf3eaab 100644 --- a/docs-conceptual/azps-10.1.0/what-is-azure-powershell.md +++ b/docs-conceptual/azps-10.1.0/what-is-azure-powershell.md @@ -1,7 +1,7 @@ --- description: This article is an introduction to Azure PowerShell and its features. ms.custom: devx-track-azurepowershell -ms.date: 06/30/2023 +ms.date: 07/05/2023 ms.devlang: powershell ms.service: azure-powershell ms.topic: overview