From 99d35146eff5bbd8eaffac91c075e436e789fb32 Mon Sep 17 00:00:00 2001 From: Sean Wheeler Date: Wed, 28 Aug 2024 09:18:48 -0500 Subject: [PATCH] Fix anchors and ms.date in setup articles (#11361) --- .../install/Installing-PowerShell-on-Windows.md | 12 ++++++------ .../docs-conceptual/install/PowerShell-on-ARM.md | 10 +++++----- reference/docs-conceptual/install/install-alpine.md | 2 +- reference/docs-conceptual/install/install-debian.md | 2 +- .../docs-conceptual/install/install-other-linux.md | 2 +- reference/docs-conceptual/install/install-rhel.md | 2 +- reference/docs-conceptual/install/install-ubuntu.md | 2 +- .../docs-conceptual/install/microsoft-update-faq.yml | 2 +- 8 files changed, 17 insertions(+), 17 deletions(-) diff --git a/reference/docs-conceptual/install/Installing-PowerShell-on-Windows.md b/reference/docs-conceptual/install/Installing-PowerShell-on-Windows.md index 08eb74f35af9..196d91d77c05 100644 --- a/reference/docs-conceptual/install/Installing-PowerShell-on-Windows.md +++ b/reference/docs-conceptual/install/Installing-PowerShell-on-Windows.md @@ -1,6 +1,6 @@ --- description: Information about installing PowerShell on Windows -ms.date: 07/24/2024 +ms.date: 08/20/2024 title: Installing PowerShell on Windows --- # Installing PowerShell on Windows @@ -29,7 +29,7 @@ different scenarios and workflows. Choose the method that best suits your needs. > Download links for every package are found in the **Assets** section of the Release page. The > **Assets** section may be collapsed, so you may need to click to expand it. -## Install PowerShell using Winget (recommended) +## Install PowerShell using Winget (recommended) Winget, the Windows Package Manager, is a command-line tool enables users to discover, install, upgrade, remove, and configure applications on Windows client computers. This tool is the client @@ -71,7 +71,7 @@ winget install --id Microsoft.Powershell.Preview --source winget > the Arm64 processor, `winget` installs the Microsoft Store (MSIX) package. For more information, > see [Installing from the Microsoft Store][17]. -## Installing the MSI package +## Installing the MSI package To install PowerShell on Windows, use the following links to download the install package from GitHub. @@ -153,7 +153,7 @@ msiexec.exe /package PowerShell-7.4.5-win-x64.msi /quiet ADD_EXPLORER_CONTEXT_ME For a full list of command-line options for `Msiexec.exe`, see [Command line options][12]. -## Installing the ZIP package +## Installing the ZIP package PowerShell binary ZIP archives are provided to enable advanced deployment scenarios. Download one of the following ZIP archives from the [current release][23] page. @@ -171,7 +171,7 @@ Use this method to install the ARM-based version of PowerShell on computers like Surface Pro X. For best results, install PowerShell to the to `$env:ProgramFiles\PowerShell\7` folder. -## Install as a .NET Global tool +## Install as a .NET Global tool If you already have the [.NET Core SDK][05] installed, you can install PowerShell as a [.NET Global tool][06]. @@ -184,7 +184,7 @@ The dotnet tool installer adds `$HOME\.dotnet\tools` to your `$env:PATH` environ However, the currently running shell doesn't have the updated `$env:PATH`. You can start PowerShell from a new shell by typing `pwsh`. -## Installing from the Microsoft Store +## Installing from the Microsoft Store PowerShell can be installed from the Microsoft Store. You can find the PowerShell release in the [Microsoft Store][33] site or in the Store application in Windows. diff --git a/reference/docs-conceptual/install/PowerShell-on-ARM.md b/reference/docs-conceptual/install/PowerShell-on-ARM.md index a2dd35b915e9..747f6a47d7bc 100644 --- a/reference/docs-conceptual/install/PowerShell-on-ARM.md +++ b/reference/docs-conceptual/install/PowerShell-on-ARM.md @@ -1,6 +1,6 @@ --- description: PowerShell on Arm-based systems -ms.date: 05/16/2024 +ms.date: 08/28/2024 title: PowerShell on Arm-based systems --- @@ -22,8 +22,8 @@ Arm versions of PowerShell 7.4 can be installed on the following platforms: | Windows 11 Client Version 22000+ | Arm64 | [Windows][05] | | Windows 10 Client Version 1607+ | Arm64 | [Windows][05] | | macOS | Arm64 | [macOS][04] | -| Raspberry Pi OS (Debian 10) | Arm32 | [Raspberry Pi OS][08] and [Debian][06] | -| Ubuntu 22.04, 20.04, 18.04 | Arm32 | [Ubuntu][07] | +| Raspberry Pi OS (Debian 12) | Arm32 | [Raspberry Pi OS][08] and [Debian][06] | +| Ubuntu 22.04, 20.04 | Arm32 | [Ubuntu][07] | Support is based on the [.NET 8.0 Supported OS Lifecycle Policy][03]. @@ -36,8 +36,8 @@ Arm versions of PowerShell 7.2 can be installed on the following platforms: | Windows 11 Client Version 22000+ | Arm64 | [Windows][05] | | Windows 10 Client Version 1607+ | Arm64 | [Windows][05] | | macOS | Arm64 | [macOS][04] | -| Raspberry Pi OS (Debian 10) | Arm32 | [Raspberry Pi OS][08] and [Debian][06] | -| Ubuntu 22.04, 20.04, 18.04 | Arm32 | [Ubuntu][07] | +| Raspberry Pi OS (Debian 12) | Arm32 | [Raspberry Pi OS][08] and [Debian][06] | +| Ubuntu 22.04, 20.04 | Arm32 | [Ubuntu][07] | Support is based on the [.NET 6.0 Supported OS Lifecycle Policy][02]. diff --git a/reference/docs-conceptual/install/install-alpine.md b/reference/docs-conceptual/install/install-alpine.md index 1b6903664d17..975330a1387c 100644 --- a/reference/docs-conceptual/install/install-alpine.md +++ b/reference/docs-conceptual/install/install-alpine.md @@ -1,6 +1,6 @@ --- description: Information about installing PowerShell on Alpine Linux -ms.date: 07/24/2024 +ms.date: 08/20/2024 title: Installing PowerShell on Alpine Linux --- # Installing PowerShell on Alpine Linux diff --git a/reference/docs-conceptual/install/install-debian.md b/reference/docs-conceptual/install/install-debian.md index 2fc505ae02ec..c3a5720581ae 100644 --- a/reference/docs-conceptual/install/install-debian.md +++ b/reference/docs-conceptual/install/install-debian.md @@ -1,6 +1,6 @@ --- description: Information about installing PowerShell on Debian Linux -ms.date: 07/24/2024 +ms.date: 08/20/2024 title: Installing PowerShell on Debian --- # Installing PowerShell on Debian diff --git a/reference/docs-conceptual/install/install-other-linux.md b/reference/docs-conceptual/install/install-other-linux.md index 2d008dce1cf0..a2dc968d0488 100644 --- a/reference/docs-conceptual/install/install-other-linux.md +++ b/reference/docs-conceptual/install/install-other-linux.md @@ -1,6 +1,6 @@ --- description: Information about installing PowerShell on various Linux distributions -ms.date: 07/24/2024 +ms.date: 08/20/2024 title: Alternate ways to install PowerShell on Linux --- # Alternate ways to install PowerShell on Linux diff --git a/reference/docs-conceptual/install/install-rhel.md b/reference/docs-conceptual/install/install-rhel.md index a9df78e088fb..7f5da52a1d41 100644 --- a/reference/docs-conceptual/install/install-rhel.md +++ b/reference/docs-conceptual/install/install-rhel.md @@ -1,6 +1,6 @@ --- description: Information about installing PowerShell on Red Hat Enterprise Linux (RHEL) -ms.date: 07/24/2024 +ms.date: 08/20/2024 title: Installing PowerShell on Red Hat Enterprise Linux (RHEL) --- # Installing PowerShell on Red Hat Enterprise Linux (RHEL) diff --git a/reference/docs-conceptual/install/install-ubuntu.md b/reference/docs-conceptual/install/install-ubuntu.md index 3e8fe6e1e694..e01e6d5a9eb2 100644 --- a/reference/docs-conceptual/install/install-ubuntu.md +++ b/reference/docs-conceptual/install/install-ubuntu.md @@ -1,6 +1,6 @@ --- description: Information about installing PowerShell on Ubuntu -ms.date: 07/24/2024 +ms.date: 08/20/2024 title: Installing PowerShell on Ubuntu --- # Installing PowerShell on Ubuntu diff --git a/reference/docs-conceptual/install/microsoft-update-faq.yml b/reference/docs-conceptual/install/microsoft-update-faq.yml index 9d20e8bde732..20d04e557055 100644 --- a/reference/docs-conceptual/install/microsoft-update-faq.yml +++ b/reference/docs-conceptual/install/microsoft-update-faq.yml @@ -1,6 +1,6 @@ ### YamlMime:FAQ metadata: - ms.date: 07/24/2024 + ms.date: 08/20/2024 title: Microsoft Update for PowerShell FAQ description: Frequently asked questions about the using Microsoft Update to update PowerShell ms.topic: faq