Skip to content

Commit

Permalink
Merge pull request #11386 from MicrosoftDocs/main
Browse files Browse the repository at this point in the history
9/3/2024 PM Publish
  • Loading branch information
Taojunshen authored Sep 3, 2024
2 parents 0e64c46 + 22c50c3 commit 0811556
Show file tree
Hide file tree
Showing 613 changed files with 1,612 additions and 1,259 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: Describes the features of PowerShell that use ANSI escape sequences
Locale: en-US
ms.date: 03/01/2023
schema: 2.0.0
title: about ANSI terminals
title: about_ANSI_terminals
---
# about_ANSI_Terminals

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ms.date: 10/18/2018
no-loc: [Alias, Definition, AllScope, Option, None, Constant, Private]
online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_alias_provider?view=powershell-5.1&WT.mc_id=ps-gethelp
schema: 2.0.0
title: about Alias Provider
title: about_Alias_Provider
---
# about_Alias_Provider

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ms.date: 11/27/2017
no-loc: [Authenticode, Alias]
online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_aliases?view=powershell-5.1&WT.mc_id=ps-gethelp
schema: 2.0.0
title: about Aliases
title: about_Aliases
---
# about_Aliases

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Locale: en-US
ms.date: 04/05/2024
online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_arithmetic_operators?view=powershell-5.1&WT.mc_id=ps-gethelp
schema: 2.0.0
title: about Arithmetic Operators
title: about_Arithmetic_Operators
---
# about_Arithmetic_Operators

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ms.date: 03/07/2024
no-loc: [Count, Length, LongLength, Rank, ForEach, Clear, Default, First, Last, SkipUntil, Until, Split, Tuple]
online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_arrays?view=powershell-5.1&WT.mc_id=ps-gethelp
schema: 2.0.0
title: about Arrays
title: about_Arrays
---
# about_Arrays

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Locale: en-US
ms.date: 01/19/2024
online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_assignment_operators?view=powershell-5.1&WT.mc_id=ps-gethelp
schema: 2.0.0
title: about Assignment Operators
title: about_Assignment_Operators
---
# about_Assignment_Operators

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ms.date: 07/12/2024
no-loc: [Reset, Current, Background, Blink, Bold, Foreground, Formatting, Hidden, Italic, Reset, Reverse, Underline, PSEventArgs, PSEventSubscriber, PSEdition]
online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_automatic_variables?view=powershell-5.1&WT.mc_id=ps-gethelp
schema: 2.0.0
title: about Automatic Variables
title: about_Automatic_Variables
---

# about_Automatic_Variables
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Locale: en-US
ms.date: 01/19/2024
online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_booleans?view=powershell-5.1&WT.mc_id=ps-gethelp
schema: 2.0.0
title: about Booleans
title: about_Booleans
---
# about_Booleans

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Locale: en-US
ms.date: 03/01/2023
online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_break?view=powershell-5.1&WT.mc_id=ps-gethelp
schema: 2.0.0
title: about Break
title: about_Break
---
# about_Break

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Locale: en-US
ms.date: 08/14/2024
online version: https://learn.microsoft.com/powershell/module/Microsoft.PowerShell.Core/about/about_built-in_functions?view=powershell-5.1&WT.mc_id=ps-gethelp
schema: 2.0.0
title: about Built-in Functions
title: about_Built-in_Functions
---
# about_Built-in_Functions

Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
---
description: PowerShell provides the ability to dynamically add new properties and alter the formatting of objects output to the pipeline.
Locale: en-US
ms.date: 03/24/2023
ms.date: 09/03/2024
online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_calculated_properties?view=powershell-5.1&WT.mc_id=ps-gethelp
schema: 2.0.0
title: about Calculated Properties
title: about_Calculated_Properties
---
# about_Calculated_Properties

Expand All @@ -19,9 +19,9 @@ Several PowerShell cmdlets transform, group, or process input objects into
output objects using parameters that allow the addition of new properties to
those output objects. You can use these parameters to generate new, calculated
properties on output objects based on the values of input objects. The
calculated property is defined by a [hashtable](about_hash_tables.md)
containing key-value pairs that specify the name of the new property, an
expression to calculate the value, and optional formatting information.
calculated property is defined by a [hashtable][03] containing key-value pairs
that specify the name of the new property, an expression to calculate the
value, and optional formatting information.

## Supported cmdlets

Expand Down Expand Up @@ -81,7 +81,7 @@ the key-value pairs that each cmdlet supports.

> [!NOTE]
> The value of the `expression` can be a script block instead of a
> hashtable. For more information, see the [Notes](#notes) section.
> hashtable. For more information, see the [Notes][02] section.
## Hashtable key definitions

Expand All @@ -96,7 +96,7 @@ the key-value pairs that each cmdlet supports.
`'right'`.
- `formatstring` - Specifies a format string that defines how the value is
formatted for output. For more information about format strings, see
[Format types in .NET](/dotnet/standard/base-types/formatting-types).
[Format types in .NET][01].
- `width` - Specifies the maximum width column in a table when the value is
displayed. The value must be greater than `0`.
- `depth` - The **Depth** parameter of `Format-Custom` specifies the depth of
Expand Down Expand Up @@ -473,15 +473,30 @@ Date Salesperson UnitsSold

## See also

- [about_Hash_Tables](about_hash_tables.md)
- [ConvertTo-Html](xref:Microsoft.PowerShell.Utility.ConvertTo-Html)
- [Format-Custom](xref:Microsoft.PowerShell.Utility.Format-Custom)
- [Format-List](xref:Microsoft.PowerShell.Utility.Format-List)
- [Format-Table](xref:Microsoft.PowerShell.Utility.Format-Table)
- [Format-Wide](xref:Microsoft.PowerShell.Utility.Format-Wide)
- [Compare-Object](xref:Microsoft.PowerShell.Utility.Compare-Object)
- [Group-Object](xref:Microsoft.PowerShell.Utility.Group-Object)
- [Measure-Object](xref:Microsoft.PowerShell.Utility.Measure-Object)
- [Select-Object](xref:Microsoft.PowerShell.Utility.Select-Object)
- [Sort-Object](xref:Microsoft.PowerShell.Utility.Sort-Object)
- [Format types in .NET](/dotnet/standard/base-types/formatting-types)
- [about_Hash_Tables][03]
- [ConvertTo-Html][05]
- [Format-Custom][06]
- [Format-List][07]
- [Format-Table][08]
- [Format-Wide][09]
- [Compare-Object][04]
- [Group-Object][10]
- [Measure-Object][11]
- [Select-Object][12]
- [Sort-Object][13]
- [Format types in .NET][01]

<!-- link references -->
[01]: /dotnet/standard/base-types/formatting-types
[02]: #notes
[03]: about_hash_tables.md
[04]: xref:Microsoft.PowerShell.Utility.Compare-Object
[05]: xref:Microsoft.PowerShell.Utility.ConvertTo-Html
[06]: xref:Microsoft.PowerShell.Utility.Format-Custom
[07]: xref:Microsoft.PowerShell.Utility.Format-List
[08]: xref:Microsoft.PowerShell.Utility.Format-Table
[09]: xref:Microsoft.PowerShell.Utility.Format-Wide
[10]: xref:Microsoft.PowerShell.Utility.Group-Object
[11]: xref:Microsoft.PowerShell.Utility.Measure-Object
[12]: xref:Microsoft.PowerShell.Utility.Select-Object
[13]: xref:Microsoft.PowerShell.Utility.Sort-Object
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
---
description: This article explains how PowerShell handles case-sensitivity.
Locale: en-US
ms.custom: wiki-migration
ms.date: 06/06/2022
title: about Case-Sensitivity
Locale: en-US
online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_case-sensitivity?view=powershell-5.1&WT.mc_id=ps-gethelp

title: about_Case-Sensitivity
---
# about_Case-Sensitivity

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Locale: en-US
ms.date: 10/22/2021
online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_character_encoding?view=powershell-5.1&WT.mc_id=ps-gethelp
schema: 2.0.0
title: about Character Encoding
title: about_Character_Encoding
---
# about_Character_Encoding

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Locale: en-US
ms.date: 05/13/2020
online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_cimsession?view=powershell-5.1&WT.mc_id=ps-gethelp
schema: 2.0.0
title: about CimSession
title: about_CimSession
---
# about_CimSession

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Locale: en-US
ms.date: 01/19/2024
online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_classes?view=powershell-5.1&WT.mc_id=ps-gethelp
schema: 2.0.0
title: about Classes
title: about_Classes
---
# about_Classes

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Locale: en-US
ms.date: 11/13/2023
online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_classes_constructors?view=powershell-5.1&WT.mc_id=ps-gethelp
schema: 2.0.0
title: about Classes Constructors
title: about_Classes_Constructors
---

# about_Classes_Constructors
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Locale: en-US
ms.date: 11/10/2023
online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_classes_inheritance?view=powershell-5.1&WT.mc_id=ps-gethelp
schema: 2.0.0
title: about Classes Inheritance
title: about_Classes_Inheritance
---

# about_Classes_Inheritance
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Locale: en-US
ms.date: 11/13/2023
online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_classes_methods?view=powershell-5.1&WT.mc_id=ps-gethelp
schema: 2.0.0
title: about Classes Methods
title: about_Classes_Methods
---

# about_Classes_Methods
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Locale: en-US
ms.date: 11/13/2023
online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_classes_properties?view=powershell-5.1&WT.mc_id=ps-gethelp
schema: 2.0.0
title: about Classes Properties
title: about_Classes_Properties
---

# about_Classes_Properties
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Locale: en-US
ms.date: 03/05/2024
online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_command_precedence?view=powershell-5.1&WT.mc_id=ps-gethelp
schema: 2.0.0
title: about Command Precedence
title: about_Command_Precedence
---
# about_Command_Precedence

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Locale: en-US
ms.date: 10/31/2023
online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_command_syntax?view=powershell-5.1&WT.mc_id=ps-gethelp
schema: 2.0.0
title: about Command Syntax
title: about_Command_Syntax
---
# about_Command_Syntax

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ms.date: 07/05/2022
no-loc: [.SYNOPSIS, .DESCRIPTION, .PARAMETER, .EXAMPLE, .INPUTS, .OUTPUTS, .NOTES, .LINK, .COMPONENT, .ROLE, .FUNCTIONALITY, .FORWARDHELPTARGETNAME, .FORWARDHELPCATEGORY, .REMOTEHELPRUNSPACE, .EXTERNALHELP]
online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_comment_based_help?view=powershell-5.1&WT.mc_id=ps-gethelp
schema: 2.0.0
title: about Comment Based Help
title: about_Comment_Based_Help
---
# about_Comment_Based_Help

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ms.date: 07/02/2024
no-loc: [Debug, Verbose, Confirm]
online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_commonparameters?view=powershell-5.1&WT.mc_id=ps-gethelp
schema: 2.0.0
title: about CommonParameters
title: about_CommonParameters
---
# about_CommonParameters

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Locale: en-US
ms.date: 06/06/2024
online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_comparison_operators?view=powershell-5.1&WT.mc_id=ps-gethelp
schema: 2.0.0
title: about Comparison Operators
title: about_Comparison_Operators
---
# about_Comparison_Operators

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Locale: en-US
ms.date: 06/04/2020
online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_continue?view=powershell-5.1&WT.mc_id=ps-gethelp
schema: 2.0.0
title: about Continue
title: about_Continue
---
# about_Continue

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Locale: en-US
ms.date: 06/09/2017
online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_core_commands?view=powershell-5.1&WT.mc_id=ps-gethelp
schema: 2.0.0
title: about Core Commands
title: about_Core_Commands
---

# about_Core_Commands
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Locale: en-US
ms.date: 01/19/2023
online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_data_files?view=powershell-5.1&WT.mc_id=ps-gethelp
schema: 2.0.0
title: about Data Files
title: about_Data_Files
---
# about_Data_Files

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Locale: en-US
ms.date: 04/23/2019
online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_data_sections?view=powershell-5.1&WT.mc_id=ps-gethelp
schema: 2.0.0
title: about Data Sections
title: about_Data_Sections
---
# about_Data_Sections

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Locale: en-US
ms.date: 06/29/2023
online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_debuggers?view=powershell-5.1&WT.mc_id=ps-gethelp
schema: 2.0.0
title: about Debuggers
title: about_Debuggers
---
# about_Debuggers

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Locale: en-US
ms.date: 07/23/2020
online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_desiredstateconfiguration?view=powershell-5.1&WT.mc_id=ps-gethelp
schema: 2.0.0
title: about DesiredStateConfiguration
title: about_DesiredStateConfiguration
---

# about_DesiredStateConfiguration
Expand Down
4 changes: 2 additions & 2 deletions reference/5.1/Microsoft.PowerShell.Core/About/about_Do.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Locale: en-US
ms.date: 06/10/2021
online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_do?view=powershell-5.1&WT.mc_id=ps-gethelp
schema: 2.0.0
title: about Do
title: about_Do
---
# about_Do

Expand Down Expand Up @@ -91,4 +91,4 @@ while (++$a -lt 10)
- [about_Operators](about_Operators.md)
- [about_Assignment_Operators](about_Assignment_Operators.md)
- [about_Comparison_Operators](about_Comparison_Operators.md)
- [about_While](about_While.md)
- [about_While](about_While.md)
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Locale: en-US
ms.date: 11/20/2023
online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_enum?view=powershell-5.1&WT.mc_id=ps-gethelp
schema: 2.0.0
title: about Enum
title: about_Enum
---
# about_Enum

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Locale: en-US
ms.date: 10/18/2018
online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_environment_provider?view=powershell-5.1&WT.mc_id=ps-gethelp
schema: 2.0.0
title: about Environment Provider
title: about_Environment_Provider
---
# about_Environment_Provider

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Locale: en-US
ms.date: 04/22/2024
online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_environment_variables?view=powershell-5.1&WT.mc_id=ps-gethelp
schema: 2.0.0
title: about Environment Variables
title: about_Environment_Variables
---
# about_Environment_Variables

Expand Down
Loading

0 comments on commit 0811556

Please sign in to comment.