Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .openpublishing.redirection.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@
"redirect_url": "/powershell/utility-modules/platyps/create-help-using-platyps",
"source_path": "reference/docs-conceptual/dev-cross-plat/create-help-using-platyps.md"
},
{
"redirect_document_id": true,
"redirect_url": "/powershell/scripting/install/community-support",
"source_path": "reference/docs-conceptual/install/install-raspbian.md"
},
{
"redirect_document_id": true,
"redirect_url": "/powershell/scripting/install/installing-powershell-on-linux",
Expand Down
21 changes: 12 additions & 9 deletions reference/5.1/Microsoft.PowerShell.Management/Convert-Path.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
external help file: Microsoft.PowerShell.Commands.Management.dll-Help.xml
Locale: en-US
Module Name: Microsoft.PowerShell.Management
ms.date: 11/22/2022
ms.date: 09/05/2023
online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.management/convert-path?view=powershell-5.1&WT.mc_id=ps-gethelp
schema: 2.0.0
title: Convert-Path
Expand Down Expand Up @@ -66,10 +66,13 @@ C:\Users\User01
### -LiteralPath

Specifies, as a string array, the path to be converted. The value of the **LiteralPath** parameter
is used exactly as it is typed. No characters are interpreted as wildcards. If the path includes
is used exactly as it's typed. No characters are interpreted as wildcards. If the path includes
escape characters, enclose it in single quotation marks. Single quotation marks tell PowerShell not
to interpret any characters as escape sequences.

For more information, see
[about_Quoting_Rules](../Microsoft.Powershell.Core/About/about_Quoting_Rules.md).

```yaml
Type: System.String[]
Parameter Sets: LiteralPath
Expand All @@ -95,7 +98,7 @@ Required: True
Position: 0
Default value: None
Accept pipeline input: True (ByPropertyName, ByValue)
Accept wildcard characters: False
Accept wildcard characters: True
```

### -UseTransaction
Expand Down Expand Up @@ -141,18 +144,18 @@ Windows PowerShell includes the following aliases for `Convert-Path`:
- `cvpa`

The cmdlets that contain the Path noun manipulate path names and return the names in a concise
format that all PowerShell providers can interpret. They are designed for use in programs and
scripts where you want to display all or part of a path name in a particular format. Use them like
you would use **Dirname**, **Normpath**, **Realpath**, **Join**, or other path manipulators.
format that all PowerShell providers can interpret. They're designed for use in programs and
scripts where you want to display all or part of a path in a particular format. Use them like you
would use **Dirname**, **Normpath**, **Realpath**, **Join**, or other path manipulators.

You can use the path cmdlets with several providers, including the FileSystem, Registry, and
Certificate providers.
You can use the path cmdlets with several providers, including the **FileSystem**, **Registry**,
and **Certificate** providers.

This cmdlet is designed to work with the data exposed by any provider. To list the providers
available in your session, type `Get-PSProvider`. For more information, see
[about_Providers](../Microsoft.PowerShell.Core/About/about_Providers.md).

`Convert-Path` only converts existing paths. It cannot be used to convert a location that does not
`Convert-Path` only converts existing paths. It can't be used to convert a location that doesn't
exist yet.

## RELATED LINKS
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
description: Describes the operators that are supported by PowerShell.
Locale: en-US
ms.date: 05/30/2023
ms.date: 09/05/2023
online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_operators?view=powershell-7.2&WT.mc_id=ps-gethelp
schema: 2.0.0
title: about Operators
Expand Down Expand Up @@ -88,8 +88,8 @@ For more information, see [about_Split][20] and [about_Join][11].

## Type Operators

Use the type operators (`-is`, `-isnot`, `-as`) to find or change the .NET
Framework type of an object.
Use the type operators (`-is`, `-isnot`, `-as`) to find or change the .NET type
of an object.

For more information, see [about_Type_Operators][21].

Expand Down Expand Up @@ -687,8 +687,8 @@ see [about_Member-Access_Enumeration][13].

### Static member operator `::`

Calls the static properties and methods of a .NET Framework class. To find the
static properties and methods of an object, use the Static parameter of the
Calls the static properties and methods of a .NET class. To find the static
properties and methods of an object, use the Static parameter of the
`Get-Member` cmdlet. The member name may be an expression.

```powershell
Expand Down
22 changes: 12 additions & 10 deletions reference/7.2/Microsoft.PowerShell.Management/Convert-Path.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
external help file: Microsoft.PowerShell.Commands.Management.dll-Help.xml
Locale: en-US
Module Name: Microsoft.PowerShell.Management
ms.date: 11/22/2022
ms.date: 09/05/2023
online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.management/convert-path?view=powershell-7.2&WT.mc_id=ps-gethelp
schema: 2.0.0
title: Convert-Path
Expand Down Expand Up @@ -66,10 +66,13 @@ C:\Users\User01
### -LiteralPath

Specifies, as a string array, the path to be converted. The value of the **LiteralPath** parameter
is used exactly as it is typed. No characters are interpreted as wildcards. If the path includes
is used exactly as it's typed. No characters are interpreted as wildcards. If the path includes
escape characters, enclose it in single quotation marks. Single quotation marks tell PowerShell not
to interpret any characters as escape sequences.

For more information, see
[about_Quoting_Rules](../Microsoft.Powershell.Core/About/about_Quoting_Rules.md).

```yaml
Type: System.String[]
Parameter Sets: LiteralPath
Expand All @@ -95,7 +98,7 @@ Required: True
Position: 0
Default value: None
Accept pipeline input: True (ByPropertyName, ByValue)
Accept wildcard characters: False
Accept wildcard characters: True
```

### CommonParameters
Expand Down Expand Up @@ -125,18 +128,18 @@ PowerShell includes the following aliases for `Convert-Path`:
- `cvpa`

The cmdlets that contain the Path noun manipulate path names and return the names in a concise
format that all PowerShell providers can interpret. They are designed for use in programs and
scripts where you want to display all or part of a path name in a particular format. Use them like
you would use **Dirname**, **Normpath**, **Realpath**, **Join**, or other path manipulators.
format that all PowerShell providers can interpret. They're designed for use in programs and
scripts where you want to display all or part of a path in a particular format. Use them like you
would use **Dirname**, **Normpath**, **Realpath**, **Join**, or other path manipulators.

You can use the path cmdlets with several providers, including the FileSystem, Registry, and
Certificate providers.
You can use the path cmdlets with several providers, including the **FileSystem**, **Registry**,
and **Certificate** providers.

This cmdlet is designed to work with the data exposed by any provider. To list the providers
available in your session, type `Get-PSProvider`. For more information, see
[about_Providers](../Microsoft.PowerShell.Core/About/about_Providers.md).

`Convert-Path` only converts existing paths. It cannot be used to convert a location that does not
`Convert-Path` only converts existing paths. It can't be used to convert a location that doesn't
exist yet.

## RELATED LINKS
Expand All @@ -150,4 +153,3 @@ exist yet.
[Test-Path](Test-Path.md)

[Get-PSProvider](Get-PSProvider.md)

Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
description: Describes the operators that are supported by PowerShell.
Locale: en-US
ms.date: 05/30/2023
ms.date: 09/05/2023
online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_operators?view=powershell-7.3&WT.mc_id=ps-gethelp
schema: 2.0.0
title: about Operators
Expand Down Expand Up @@ -88,8 +88,8 @@ For more information, see [about_Split][20] and [about_Join][11].

## Type Operators

Use the type operators (`-is`, `-isnot`, `-as`) to find or change the .NET
Framework type of an object.
Use the type operators (`-is`, `-isnot`, `-as`) to find or change the .NET type
of an object.

For more information, see [about_Type_Operators][21].

Expand Down Expand Up @@ -687,8 +687,8 @@ see [about_Member-Access_Enumeration][13].

### Static member operator `::`

Calls the static properties and methods of a .NET Framework class. To find the
static properties and methods of an object, use the Static parameter of the
Calls the static properties and methods of a .NET class. To find the static
properties and methods of an object, use the Static parameter of the
`Get-Member` cmdlet. The member name may be an expression.

```powershell
Expand Down
22 changes: 12 additions & 10 deletions reference/7.3/Microsoft.PowerShell.Management/Convert-Path.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
external help file: Microsoft.PowerShell.Commands.Management.dll-Help.xml
Locale: en-US
Module Name: Microsoft.PowerShell.Management
ms.date: 11/22/2022
ms.date: 09/05/2023
online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.management/convert-path?view=powershell-7.3&WT.mc_id=ps-gethelp
schema: 2.0.0
title: Convert-Path
Expand Down Expand Up @@ -66,10 +66,13 @@ C:\Users\User01
### -LiteralPath

Specifies, as a string array, the path to be converted. The value of the **LiteralPath** parameter
is used exactly as it is typed. No characters are interpreted as wildcards. If the path includes
is used exactly as it's typed. No characters are interpreted as wildcards. If the path includes
escape characters, enclose it in single quotation marks. Single quotation marks tell PowerShell not
to interpret any characters as escape sequences.

For more information, see
[about_Quoting_Rules](../Microsoft.Powershell.Core/About/about_Quoting_Rules.md).

```yaml
Type: System.String[]
Parameter Sets: LiteralPath
Expand All @@ -95,7 +98,7 @@ Required: True
Position: 0
Default value: None
Accept pipeline input: True (ByPropertyName, ByValue)
Accept wildcard characters: False
Accept wildcard characters: True
```

### CommonParameters
Expand Down Expand Up @@ -125,18 +128,18 @@ PowerShell includes the following aliases for `Convert-Path`:
- `cvpa`

The cmdlets that contain the Path noun manipulate path names and return the names in a concise
format that all PowerShell providers can interpret. They are designed for use in programs and
scripts where you want to display all or part of a path name in a particular format. Use them like
you would use **Dirname**, **Normpath**, **Realpath**, **Join**, or other path manipulators.
format that all PowerShell providers can interpret. They're designed for use in programs and
scripts where you want to display all or part of a path in a particular format. Use them like you
would use **Dirname**, **Normpath**, **Realpath**, **Join**, or other path manipulators.

You can use the path cmdlets with several providers, including the FileSystem, Registry, and
Certificate providers.
You can use the path cmdlets with several providers, including the **FileSystem**, **Registry**,
and **Certificate** providers.

This cmdlet is designed to work with the data exposed by any provider. To list the providers
available in your session, type `Get-PSProvider`. For more information, see
[about_Providers](../Microsoft.PowerShell.Core/About/about_Providers.md).

`Convert-Path` only converts existing paths. It cannot be used to convert a location that does not
`Convert-Path` only converts existing paths. It can't be used to convert a location that doesn't
exist yet.

## RELATED LINKS
Expand All @@ -150,4 +153,3 @@ exist yet.
[Test-Path](Test-Path.md)

[Get-PSProvider](Get-PSProvider.md)

Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
description: Describes the operators that are supported by PowerShell.
Locale: en-US
ms.date: 05/30/2023
ms.date: 09/05/2023
online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_operators?view=powershell-7.4&WT.mc_id=ps-gethelp
schema: 2.0.0
title: about Operators
Expand Down Expand Up @@ -88,8 +88,8 @@ For more information, see [about_Split][20] and [about_Join][11].

## Type Operators

Use the type operators (`-is`, `-isnot`, `-as`) to find or change the .NET
Framework type of an object.
Use the type operators (`-is`, `-isnot`, `-as`) to find or change the .NET type
of an object.

For more information, see [about_Type_Operators][21].

Expand Down Expand Up @@ -687,8 +687,8 @@ see [about_Member-Access_Enumeration][13].

### Static member operator `::`

Calls the static properties and methods of a .NET Framework class. To find the
static properties and methods of an object, use the Static parameter of the
Calls the static properties and methods of a .NET class. To find the static
properties and methods of an object, use the Static parameter of the
`Get-Member` cmdlet. The member name may be an expression.

```powershell
Expand Down
22 changes: 12 additions & 10 deletions reference/7.4/Microsoft.PowerShell.Management/Convert-Path.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
external help file: Microsoft.PowerShell.Commands.Management.dll-Help.xml
Locale: en-US
Module Name: Microsoft.PowerShell.Management
ms.date: 11/22/2022
ms.date: 09/05/2023
online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.management/convert-path?view=powershell-7.4&WT.mc_id=ps-gethelp
schema: 2.0.0
title: Convert-Path
Expand Down Expand Up @@ -66,10 +66,13 @@ C:\Users\User01
### -LiteralPath

Specifies, as a string array, the path to be converted. The value of the **LiteralPath** parameter
is used exactly as it is typed. No characters are interpreted as wildcards. If the path includes
is used exactly as it's typed. No characters are interpreted as wildcards. If the path includes
escape characters, enclose it in single quotation marks. Single quotation marks tell PowerShell not
to interpret any characters as escape sequences.

For more information, see
[about_Quoting_Rules](../Microsoft.Powershell.Core/About/about_Quoting_Rules.md).

```yaml
Type: System.String[]
Parameter Sets: LiteralPath
Expand All @@ -95,7 +98,7 @@ Required: True
Position: 0
Default value: None
Accept pipeline input: True (ByPropertyName, ByValue)
Accept wildcard characters: False
Accept wildcard characters: True
```

### CommonParameters
Expand Down Expand Up @@ -125,18 +128,18 @@ PowerShell includes the following aliases for `Convert-Path`:
- `cvpa`

The cmdlets that contain the Path noun manipulate path names and return the names in a concise
format that all PowerShell providers can interpret. They are designed for use in programs and
scripts where you want to display all or part of a path name in a particular format. Use them like
you would use **Dirname**, **Normpath**, **Realpath**, **Join**, or other path manipulators.
format that all PowerShell providers can interpret. They're designed for use in programs and
scripts where you want to display all or part of a path in a particular format. Use them like you
would use **Dirname**, **Normpath**, **Realpath**, **Join**, or other path manipulators.

You can use the path cmdlets with several providers, including the FileSystem, Registry, and
Certificate providers.
You can use the path cmdlets with several providers, including the **FileSystem**, **Registry**,
and **Certificate** providers.

This cmdlet is designed to work with the data exposed by any provider. To list the providers
available in your session, type `Get-PSProvider`. For more information, see
[about_Providers](../Microsoft.PowerShell.Core/About/about_Providers.md).

`Convert-Path` only converts existing paths. It cannot be used to convert a location that does not
`Convert-Path` only converts existing paths. It can't be used to convert a location that doesn't
exist yet.

## RELATED LINKS
Expand All @@ -150,4 +153,3 @@ exist yet.
[Test-Path](Test-Path.md)

[Get-PSProvider](Get-PSProvider.md)

Loading