Skip to content

Commit 88561fb

Browse files
committed
Fix broken links
1 parent eb1078b commit 88561fb

12 files changed

+22
-22
lines changed

reference/docs-conceptual/install/Installing-PowerShell-on-Windows.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
description: Information about installing PowerShell on Windows
3-
ms.date: 12/12/2024
3+
ms.date: 01/23/2025
44
title: Installing PowerShell on Windows
55
---
66
# Installing PowerShell on Windows

reference/docs-conceptual/install/Installing-PowerShell-on-macOS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
description: Information about installing PowerShell on macOS
3-
ms.date: 12/12/2024
3+
ms.date: 01/23/2025
44
title: Installing PowerShell on macOS
55
---
66

reference/docs-conceptual/install/community-support.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
description: PowerShell can run on Linux distributions that aren't officially supported by Microsoft.
3-
ms.date: 08/27/2024
3+
ms.date: 01/23/2025
44
title: Community support for PowerShell on Linux
55
---
66
# Community support for PowerShell on Linux

reference/docs-conceptual/install/install-alpine.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
description: Information about installing PowerShell on Alpine Linux
3-
ms.date: 12/16/2024
3+
ms.date: 01/23/2025
44
title: Installing PowerShell on Alpine Linux
55
---
66
# Installing PowerShell on Alpine Linux

reference/docs-conceptual/install/install-debian.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
description: Information about installing PowerShell on Debian Linux
3-
ms.date: 12/12/2024
3+
ms.date: 01/23/2025
44
title: Installing PowerShell on Debian
55
---
66
# Installing PowerShell on Debian

reference/docs-conceptual/install/install-other-linux.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
description: Information about installing PowerShell on various Linux distributions
3-
ms.date: 08/20/2024
3+
ms.date: 01/23/2025
44
title: Alternate ways to install PowerShell on Linux
55
---
66
# Alternate ways to install PowerShell on Linux

reference/docs-conceptual/install/install-rhel.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
description: Information about installing PowerShell on Red Hat Enterprise Linux (RHEL)
3-
ms.date: 12/12/2024
3+
ms.date: 01/23/2025
44
title: Installing PowerShell on Red Hat Enterprise Linux (RHEL)
55
---
66
# Installing PowerShell on Red Hat Enterprise Linux (RHEL)

reference/docs-conceptual/install/install-ubuntu.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
description: Information about installing PowerShell on Ubuntu
3-
ms.date: 12/12/2024
3+
ms.date: 01/23/2025
44
title: Installing PowerShell on Ubuntu
55
---
66
# Installing PowerShell on Ubuntu

reference/docs-conceptual/install/microsoft-update-faq.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
### YamlMime:FAQ
22
metadata:
3-
ms.date: 08/20/2024
3+
ms.date: 01/23/2025
44
title: Microsoft Update for PowerShell FAQ
55
description: Frequently asked questions about the using Microsoft Update to update PowerShell
66
ms.topic: faq

reference/docs-conceptual/learn/shell/running-commands.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
description: >
33
This article shows how to run commands in PowerShell.
44
title: Running commands in the shell
5-
ms.date: 08/22/2022
5+
ms.date: 01/23/2025
66
---
77
# Running commands in the shell
88

@@ -73,8 +73,8 @@ For more information, see the following articles:
7373
- [about_Parsing][1]
7474
- [about_Quoting_Rules][2]
7575

76-
PowerShell 7.2 introduced a new experimental feature `PSnativeCommandArgumentPassing` that improved
77-
native command handling. For more information, see [PSnativeCommandArgumentPassing][3].
76+
PowerShell 7.2 introduced a new experimental feature `PSNativeCommandArgumentPassing` that improved
77+
native command handling. For more information, see [`$PSNativeCommandArgumentPassing`][3].
7878

7979
### Handling output and errors
8080

@@ -97,9 +97,9 @@ Many native commands write to **stderr** as an alternative stream for additional
9797
behavior can cause confusion in PowerShell when looking through errors and the additional output
9898
information can be lost if `$ErrorActionPreference` is set to a state that mutes the output.
9999

100-
PowerShell 7.3 added a new experimental feature `PSnativeCommandErrorActionPreference` that allows
100+
PowerShell 7.3 added a new experimental feature `PSNativeCommandErrorActionPreference` that allows
101101
you to control whether output to `stderr` is treated as an error. For more information, see
102-
[PSnativeCommandErrorActionPreference][6].
102+
[`$PSNativeCommandUseErrorActionPreference`][6].
103103

104104
## Running PowerShell commands
105105

@@ -154,10 +154,10 @@ For more information, see [Invoke-Item][9].
154154
<!-- link references -->
155155
[1]: /powershell/module/microsoft.powershell.core/about/about_parsing#passing-arguments-to-native
156156
[2]: /powershell/module/microsoft.powershell.core/about/about_quoting_rules
157-
[3]: ../experimental-features.md#psnativecommandargumentpassing
157+
[3]: /powershell/module/microsoft.powershell.core/about/about_preference_variables#psnativecommandargumentpassing
158158
[4]: /powershell/module/microsoft.powershell.core/about/about_redirection
159159
[5]: /powershell/module/microsoft.powershell.core/about/about_output_streams
160-
[6]: ../experimental-features.md#psnativecommanderroractionpreference
160+
[6]: /powershell/module/microsoft.powershell.core/about/about_preference_variables#psnativecommanduseerroractionpreference
161161
[7]: /powershell/module/microsoft.powershell.core/about/about_operators#call-operator-
162162
[8]: /powershell/module/microsoft.powershell.management/start-process
163163
[9]: /powershell/module/microsoft.powershell.management/invoke-item

0 commit comments

Comments
 (0)