From c008694ce80a1b5f0ff8c80223100b2a5305c97e Mon Sep 17 00:00:00 2001 From: Sean Wheeler Date: Wed, 24 Sep 2025 14:09:23 -0500 Subject: [PATCH 1/3] Upcase H2 headers --- .../About/about_Environment_Variables.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/reference/5.1/Microsoft.PowerShell.Core/About/about_Environment_Variables.md b/reference/5.1/Microsoft.PowerShell.Core/About/about_Environment_Variables.md index 93286cd1f36..ca8de9debe7 100644 --- a/reference/5.1/Microsoft.PowerShell.Core/About/about_Environment_Variables.md +++ b/reference/5.1/Microsoft.PowerShell.Core/About/about_Environment_Variables.md @@ -25,6 +25,8 @@ programs. PowerShell creates the following environment variables: For full descriptions of these variables, see the [PowerShell environment variables][03] of this article. +## LONG DESCRIPTION + PowerShell can access and manage environment variables in any of the supported operating system platforms. The PowerShell Environment provider lets you get, add, change, clear, and delete environment variables in the current console. From 2ce5cb69fd0822a9b3b5be39943045dadcf4ade6 Mon Sep 17 00:00:00 2001 From: Sean Wheeler Date: Wed, 24 Sep 2025 14:29:10 -0500 Subject: [PATCH 2/3] Fix structure of About files --- .../About/about_Environment_Variables.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/reference/5.1/Microsoft.PowerShell.Core/About/about_Environment_Variables.md b/reference/5.1/Microsoft.PowerShell.Core/About/about_Environment_Variables.md index ca8de9debe7..93286cd1f36 100644 --- a/reference/5.1/Microsoft.PowerShell.Core/About/about_Environment_Variables.md +++ b/reference/5.1/Microsoft.PowerShell.Core/About/about_Environment_Variables.md @@ -25,8 +25,6 @@ programs. PowerShell creates the following environment variables: For full descriptions of these variables, see the [PowerShell environment variables][03] of this article. -## LONG DESCRIPTION - PowerShell can access and manage environment variables in any of the supported operating system platforms. The PowerShell Environment provider lets you get, add, change, clear, and delete environment variables in the current console. From f8081d382afc2cb96ff25d71bdde925324e2dbe2 Mon Sep 17 00:00:00 2001 From: Sean Wheeler Date: Thu, 2 Oct 2025 16:12:16 -0500 Subject: [PATCH 3/3] Fix typo in stream name --- .../5.1/Microsoft.PowerShell.Core/About/about_Pipelines.md | 4 ++-- .../7.4/Microsoft.PowerShell.Core/About/about_Pipelines.md | 4 ++-- .../7.5/Microsoft.PowerShell.Core/About/about_Pipelines.md | 4 ++-- .../7.6/Microsoft.PowerShell.Core/About/about_Pipelines.md | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/reference/5.1/Microsoft.PowerShell.Core/About/about_Pipelines.md b/reference/5.1/Microsoft.PowerShell.Core/About/about_Pipelines.md index a2169cc393a..35446abdd1d 100644 --- a/reference/5.1/Microsoft.PowerShell.Core/About/about_Pipelines.md +++ b/reference/5.1/Microsoft.PowerShell.Core/About/about_Pipelines.md @@ -1,7 +1,7 @@ --- description: Combining commands into pipelines in the PowerShell Locale: en-US -ms.date: 12/05/2023 +ms.date: 10/02/2025 online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_pipelines?view=powershell-5.1&WT.mc_id=ps-gethelp schema: 2.0.0 title: about_Pipelines @@ -151,7 +151,7 @@ PS> ipconfig.exe | Select-String -Pattern 'IPv4' ``` > [!IMPORTANT] -> The **Success** and **Error** streams are similar to the stdin and stderr +> The **Success** and **Error** streams are similar to the stdout and stderr > streams of other shells. However, stdin isn't connected to the PowerShell > pipeline for input. For more information, see > [about_Redirection][07]. diff --git a/reference/7.4/Microsoft.PowerShell.Core/About/about_Pipelines.md b/reference/7.4/Microsoft.PowerShell.Core/About/about_Pipelines.md index 8e7fe420b83..fb66f53c097 100644 --- a/reference/7.4/Microsoft.PowerShell.Core/About/about_Pipelines.md +++ b/reference/7.4/Microsoft.PowerShell.Core/About/about_Pipelines.md @@ -1,7 +1,7 @@ --- description: Combining commands into pipelines in the PowerShell Locale: en-US -ms.date: 12/05/2023 +ms.date: 10/02/2025 online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_pipelines?view=powershell-7.4&WT.mc_id=ps-gethelp schema: 2.0.0 title: about_Pipelines @@ -151,7 +151,7 @@ PS> ipconfig.exe | Select-String -Pattern 'IPv4' ``` > [!IMPORTANT] -> The **Success** and **Error** streams are similar to the stdin and stderr +> The **Success** and **Error** streams are similar to the stdout and stderr > streams of other shells. However, stdin isn't connected to the PowerShell > pipeline for input. For more information, see > [about_Redirection][07]. diff --git a/reference/7.5/Microsoft.PowerShell.Core/About/about_Pipelines.md b/reference/7.5/Microsoft.PowerShell.Core/About/about_Pipelines.md index 9065d8d73ee..f4a6950b0c5 100644 --- a/reference/7.5/Microsoft.PowerShell.Core/About/about_Pipelines.md +++ b/reference/7.5/Microsoft.PowerShell.Core/About/about_Pipelines.md @@ -1,7 +1,7 @@ --- description: Combining commands into pipelines in the PowerShell Locale: en-US -ms.date: 12/05/2023 +ms.date: 10/02/2025 online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_pipelines?view=powershell-7.5&WT.mc_id=ps-gethelp schema: 2.0.0 title: about_Pipelines @@ -151,7 +151,7 @@ PS> ipconfig.exe | Select-String -Pattern 'IPv4' ``` > [!IMPORTANT] -> The **Success** and **Error** streams are similar to the stdin and stderr +> The **Success** and **Error** streams are similar to the stdout and stderr > streams of other shells. However, stdin isn't connected to the PowerShell > pipeline for input. For more information, see > [about_Redirection][07]. diff --git a/reference/7.6/Microsoft.PowerShell.Core/About/about_Pipelines.md b/reference/7.6/Microsoft.PowerShell.Core/About/about_Pipelines.md index 4b50b058ea5..3b5ba1acf08 100644 --- a/reference/7.6/Microsoft.PowerShell.Core/About/about_Pipelines.md +++ b/reference/7.6/Microsoft.PowerShell.Core/About/about_Pipelines.md @@ -1,7 +1,7 @@ --- description: Combining commands into pipelines in the PowerShell Locale: en-US -ms.date: 12/05/2023 +ms.date: 10/02/2025 online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_pipelines?view=powershell-7.6&WT.mc_id=ps-gethelp schema: 2.0.0 title: about_Pipelines @@ -151,7 +151,7 @@ PS> ipconfig.exe | Select-String -Pattern 'IPv4' ``` > [!IMPORTANT] -> The **Success** and **Error** streams are similar to the stdin and stderr +> The **Success** and **Error** streams are similar to the stdout and stderr > streams of other shells. However, stdin isn't connected to the PowerShell > pipeline for input. For more information, see > [about_Redirection][07].