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
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
description: Registry
Locale: en-US
ms.date: 09/28/2021
ms.date: 04/28/2022
online version: https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_registry_provider?view=powershell-5.1&WT.mc_id=ps-gethelp
schema: 2.0.0
title: about Registry Provider
Expand Down Expand Up @@ -541,19 +541,19 @@ cmdlet. It is also available on the
[Set-Item](xref:Microsoft.PowerShell.Management.Set-Item) cmdlet in the
registry drives, but it has no effect.

| Value | Description |
| -------------- | ------------------------------------------------------------ |
| `String` | Specifies a null-terminated string. Equivalent to REG_SZ. |
| `ExpandString` | Specifies a null-terminated string that contains unexpanded |
| | references to environment variables that are expanded when |
| | the value is retrieved. Equivalent to REG_EXPAND_SZ. |
| `Binary` | Specifies binary data in any form. Equivalent to REG_BINARY. |
| `DWord` | Specifies a 32-bit binary number. Equivalent to REG_DWORD. |
| `MultiString` | Specifies an array of null-terminated strings terminated by |
| | two null characters. Equivalent to REG_MULTI_SZ. |
| `QWord` | Specifies a 64-bit binary number. Equivalent to REG_QWORD. |
| `Unknown` | Indicates an unsupported registry data type, such as |
| | REG_RESOURCE_LIST. |
| Value | Description |
| -------------- | -------------------------------------------------------------- |
| `String` | Specifies a null-terminated string. Used for REG_SZ values. |
| `ExpandString` | Specifies a null-terminated string that contains unexpanded |
| | references to environment variables that are expanded when |
| | the value is retrieved. Used for REG_EXPAND_SZ values. |
| `Binary` | Specifies binary data in any form. Used for REG_BINARY values. |
| `DWord` | Specifies a 32-bit binary number. Used for REG_DWORD values. |
| `MultiString` | Specifies an array of null-terminated strings terminated by |
| | two null characters. Used for REG_MULTI_SZ values. |
| `QWord` | Specifies a 64-bit binary number. Used for REG_QWORD values. |
| `Unknown` | Indicates an unsupported registry data type, such as |
| | REG_RESOURCE_LIST values. |

#### Cmdlets supported

Expand Down
22 changes: 11 additions & 11 deletions reference/5.1/Microsoft.PowerShell.Management/New-ItemProperty.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: 10/18/2018
ms.date: 04/28/2022
online version: https://docs.microsoft.com/powershell/module/microsoft.powershell.management/new-itemproperty?view=powershell-5.1&WT.mc_id=ps-gethelp
schema: 2.0.0
title: New-ItemProperty
Expand Down Expand Up @@ -280,16 +280,16 @@ Accept wildcard characters: False
Specifies the type of property that this cmdlet adds.
The acceptable values for this parameter are:

- **String**: Specifies a null-terminated string. Equivalent to **REG_SZ**.
- **ExpandString**: Specifies a null-terminated string that contains unexpanded references to
environment variables that are expanded when the value is retrieved. Equivalent to
**REG_EXPAND_SZ**.
- **Binary**: Specifies binary data in any form. Equivalent to **REG_BINARY**.
- **DWord**: Specifies a 32-bit binary number. Equivalent to **REG_DWORD**.
- **MultiString**: Specifies an array of null-terminated strings terminated by two null characters.
Equivalent to **REG_MULTI_SZ**.
- **Qword**: Specifies a 64-bit binary number. Equivalent to **REG_QWORD**.
- **Unknown**: Indicates an unsupported registry data type, such as **REG_RESOURCE_LIST**.
- `String`: Specifies a null-terminated string. Used for **REG_SZ** values.
- `ExpandString`: Specifies a null-terminated string that contains unexpanded references to
environment variables that are expanded when the value is retrieved. Used for **REG_EXPAND_SZ**
values.
- `Binary`: Specifies binary data in any form. Used for **REG_BINARY** values.
- `DWord`: Specifies a 32-bit binary number. Used for **REG_DWORD** values.
- `MultiString`: Specifies an array of null-terminated strings terminated by two null characters.
Used for **REG_MULTI_SZ** values.
- `Qword`: Specifies a 64-bit binary number. Used for **REG_QWORD** values.
- `Unknown`: Indicates an unsupported registry data type, such as **REG_RESOURCE_LIST** values.

```yaml
Type: System.String
Expand Down
22 changes: 11 additions & 11 deletions reference/5.1/Microsoft.PowerShell.Management/Set-ItemProperty.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: 10/28/2021
ms.date: 04/28/2022
online version: https://docs.microsoft.com/powershell/module/microsoft.powershell.management/set-itemproperty?view=powershell-5.1&WT.mc_id=ps-gethelp
schema: 2.0.0
title: Set-ItemProperty
Expand Down Expand Up @@ -336,16 +336,16 @@ This parameter only works in the registry drives.
Specifies the type of property that this cmdlet adds.
The acceptable values for this parameter are:

- **String**: Specifies a null-terminated string. Equivalent to **REG_SZ**.
- **ExpandString**: Specifies a null-terminated string that contains unexpanded references to
environment variables that are expanded when the value is retrieved. Equivalent to
**REG_EXPAND_SZ**.
- **Binary**: Specifies binary data in any form. Equivalent to **REG_BINARY**.
- **DWord**: Specifies a 32-bit binary number. Equivalent to **REG_DWORD**.
- **MultiString**: Specifies an array of null-terminated strings terminated by two null characters.
Equivalent to **REG_MULTI_SZ**.
- **Qword**: Specifies a 64-bit binary number. Equivalent to **REG_QWORD**.
- **Unknown**: Indicates an unsupported registry data type, such as **REG_RESOURCE_LIST**.
- `String`: Specifies a null-terminated string. Used for **REG_SZ** values.
- `ExpandString`: Specifies a null-terminated string that contains unexpanded references to
environment variables that are expanded when the value is retrieved. Used for **REG_EXPAND_SZ**
values.
- `Binary`: Specifies binary data in any form. Used for **REG_BINARY** values.
- `DWord`: Specifies a 32-bit binary number. Used for **REG_DWORD** values.
- `MultiString`: Specifies an array of null-terminated strings terminated by two null characters.
Used for **REG_MULTI_SZ** values.
- `Qword`: Specifies a 64-bit binary number. Used for **REG_QWORD** values.
- `Unknown`: Indicates an unsupported registry data type, such as **REG_RESOURCE_LIST** values.

```yaml
Type: Microsoft.Win32.RegistryValueKind
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
description: Registry
Locale: en-US
ms.date: 03/07/2022
ms.date: 04/28/2022
online version: https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_registry_provider?view=powershell-7&WT.mc_id=ps-gethelp
schema: 2.0.0
title: about Registry Provider
Expand Down Expand Up @@ -543,19 +543,19 @@ cmdlet. It is also available on the
[Set-Item](xref:Microsoft.PowerShell.Management.Set-Item) cmdlet in the
registry drives, but it has no effect.

| Value | Description |
| -------------- | ------------------------------------------------------------ |
| `String` | Specifies a null-terminated string. Equivalent to REG_SZ. |
| `ExpandString` | Specifies a null-terminated string that contains unexpanded |
| | references to environment variables that are expanded when |
| | the value is retrieved. Equivalent to REG_EXPAND_SZ. |
| `Binary` | Specifies binary data in any form. Equivalent to REG_BINARY. |
| `DWord` | Specifies a 32-bit binary number. Equivalent to REG_DWORD. |
| `MultiString` | Specifies an array of null-terminated strings terminated by |
| | two null characters. Equivalent to REG_MULTI_SZ. |
| `QWord` | Specifies a 64-bit binary number. Equivalent to REG_QWORD. |
| `Unknown` | Indicates an unsupported registry data type, such as |
| | REG_RESOURCE_LIST. |
| Value | Description |
| -------------- | -------------------------------------------------------------- |
| `String` | Specifies a null-terminated string. Used for REG_SZ values. |
| `ExpandString` | Specifies a null-terminated string that contains unexpanded |
| | references to environment variables that are expanded when |
| | the value is retrieved. Used for REG_EXPAND_SZ values. |
| `Binary` | Specifies binary data in any form. Used for REG_BINARY values. |
| `DWord` | Specifies a 32-bit binary number. Used for REG_DWORD values. |
| `MultiString` | Specifies an array of null-terminated strings terminated by |
| | two null characters. Used for REG_MULTI_SZ values. |
| `QWord` | Specifies a 64-bit binary number. Used for REG_QWORD values. |
| `Unknown` | Indicates an unsupported registry data type, such as |
| | REG_RESOURCE_LIST values. |

#### Cmdlets supported

Expand Down
22 changes: 11 additions & 11 deletions reference/7.0/Microsoft.PowerShell.Management/New-ItemProperty.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: 05/14/2019
ms.date: 04/28/2022
online version: https://docs.microsoft.com/powershell/module/microsoft.powershell.management/new-itemproperty?view=powershell-7&WT.mc_id=ps-gethelp
schema: 2.0.0
title: New-ItemProperty
Expand Down Expand Up @@ -277,16 +277,16 @@ Accept wildcard characters: True
Specifies the type of property that this cmdlet adds.
The acceptable values for this parameter are:

- **String**: Specifies a null-terminated string. Equivalent to **REG_SZ**.
- **ExpandString**: Specifies a null-terminated string that contains unexpanded references to
environment variables that are expanded when the value is retrieved. Equivalent to
**REG_EXPAND_SZ**.
- **Binary**: Specifies binary data in any form. Equivalent to **REG_BINARY**.
- **DWord**: Specifies a 32-bit binary number. Equivalent to **REG_DWORD**.
- **MultiString**: Specifies an array of null-terminated strings terminated by two null characters.
Equivalent to **REG_MULTI_SZ**.
- **Qword**: Specifies a 64-bit binary number. Equivalent to **REG_QWORD**.
- **Unknown**: Indicates an unsupported registry data type, such as **REG_RESOURCE_LIST**.
- `String`: Specifies a null-terminated string. Used for **REG_SZ** values.
- `ExpandString`: Specifies a null-terminated string that contains unexpanded references to
environment variables that are expanded when the value is retrieved. Used for **REG_EXPAND_SZ**
values.
- `Binary`: Specifies binary data in any form. Used for **REG_BINARY** values.
- `DWord`: Specifies a 32-bit binary number. Used for **REG_DWORD** values.
- `MultiString`: Specifies an array of null-terminated strings terminated by two null characters.
Used for **REG_MULTI_SZ** values.
- `Qword`: Specifies a 64-bit binary number. Used for **REG_QWORD** values.
- `Unknown`: Indicates an unsupported registry data type, such as **REG_RESOURCE_LIST** values.

```yaml
Type: System.String
Expand Down
22 changes: 11 additions & 11 deletions reference/7.0/Microsoft.PowerShell.Management/Set-ItemProperty.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: 10/28/2021
ms.date: 04/28/2022
online version: https://docs.microsoft.com/powershell/module/microsoft.powershell.management/set-itemproperty?view=powershell-7&WT.mc_id=ps-gethelp
schema: 2.0.0
title: Set-ItemProperty
Expand Down Expand Up @@ -338,16 +338,16 @@ This parameter only works in the registry drives.
Specifies the type of property that this cmdlet adds.
The acceptable values for this parameter are:

- **String**: Specifies a null-terminated string. Equivalent to **REG_SZ**.
- **ExpandString**: Specifies a null-terminated string that contains unexpanded references to
environment variables that are expanded when the value is retrieved. Equivalent to
**REG_EXPAND_SZ**.
- **Binary**: Specifies binary data in any form. Equivalent to **REG_BINARY**.
- **DWord**: Specifies a 32-bit binary number. Equivalent to **REG_DWORD**.
- **MultiString**: Specifies an array of null-terminated strings terminated by two null characters.
Equivalent to **REG_MULTI_SZ**.
- **Qword**: Specifies a 64-bit binary number. Equivalent to **REG_QWORD**.
- **Unknown**: Indicates an unsupported registry data type, such as **REG_RESOURCE_LIST**.
- `String`: Specifies a null-terminated string. Used for **REG_SZ** values.
- `ExpandString`: Specifies a null-terminated string that contains unexpanded references to
environment variables that are expanded when the value is retrieved. Used for **REG_EXPAND_SZ**
values.
- `Binary`: Specifies binary data in any form. Used for **REG_BINARY** values.
- `DWord`: Specifies a 32-bit binary number. Used for **REG_DWORD** values.
- `MultiString`: Specifies an array of null-terminated strings terminated by two null characters.
Used for **REG_MULTI_SZ** values.
- `Qword`: Specifies a 64-bit binary number. Used for **REG_QWORD** values.
- `Unknown`: Indicates an unsupported registry data type, such as **REG_RESOURCE_LIST** values.

```yaml
Type: Microsoft.Win32.RegistryValueKind
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
description: Registry
Locale: en-US
ms.date: 03/07/2022
ms.date: 04/28/2022
online version: https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_registry_provider?view=powershell-7.1&WT.mc_id=ps-gethelp
schema: 2.0.0
title: about Registry Provider
Expand Down Expand Up @@ -543,19 +543,19 @@ cmdlet. It is also available on the
[Set-Item](xref:Microsoft.PowerShell.Management.Set-Item) cmdlet in the
registry drives, but it has no effect.

| Value | Description |
| -------------- | ------------------------------------------------------------ |
| `String` | Specifies a null-terminated string. Equivalent to REG_SZ. |
| `ExpandString` | Specifies a null-terminated string that contains unexpanded |
| | references to environment variables that are expanded when |
| | the value is retrieved. Equivalent to REG_EXPAND_SZ. |
| `Binary` | Specifies binary data in any form. Equivalent to REG_BINARY. |
| `DWord` | Specifies a 32-bit binary number. Equivalent to REG_DWORD. |
| `MultiString` | Specifies an array of null-terminated strings terminated by |
| | two null characters. Equivalent to REG_MULTI_SZ. |
| `QWord` | Specifies a 64-bit binary number. Equivalent to REG_QWORD. |
| `Unknown` | Indicates an unsupported registry data type, such as |
| | REG_RESOURCE_LIST. |
| Value | Description |
| -------------- | -------------------------------------------------------------- |
| `String` | Specifies a null-terminated string. Used for REG_SZ values. |
| `ExpandString` | Specifies a null-terminated string that contains unexpanded |
| | references to environment variables that are expanded when |
| | the value is retrieved. Used for REG_EXPAND_SZ values. |
| `Binary` | Specifies binary data in any form. Used for REG_BINARY values. |
| `DWord` | Specifies a 32-bit binary number. Used for REG_DWORD values. |
| `MultiString` | Specifies an array of null-terminated strings terminated by |
| | two null characters. Used for REG_MULTI_SZ values. |
| `QWord` | Specifies a 64-bit binary number. Used for REG_QWORD values. |
| `Unknown` | Indicates an unsupported registry data type, such as |
| | REG_RESOURCE_LIST values. |

#### Cmdlets supported

Expand Down
22 changes: 11 additions & 11 deletions reference/7.1/Microsoft.PowerShell.Management/New-ItemProperty.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: 05/14/2019
ms.date: 04/28/2022
online version: https://docs.microsoft.com/powershell/module/microsoft.powershell.management/new-itemproperty?view=powershell-7.1&WT.mc_id=ps-gethelp
schema: 2.0.0
title: New-ItemProperty
Expand Down Expand Up @@ -277,16 +277,16 @@ Accept wildcard characters: True
Specifies the type of property that this cmdlet adds.
The acceptable values for this parameter are:

- **String**: Specifies a null-terminated string. Equivalent to **REG_SZ**.
- **ExpandString**: Specifies a null-terminated string that contains unexpanded references to
environment variables that are expanded when the value is retrieved. Equivalent to
**REG_EXPAND_SZ**.
- **Binary**: Specifies binary data in any form. Equivalent to **REG_BINARY**.
- **DWord**: Specifies a 32-bit binary number. Equivalent to **REG_DWORD**.
- **MultiString**: Specifies an array of null-terminated strings terminated by two null characters.
Equivalent to **REG_MULTI_SZ**.
- **Qword**: Specifies a 64-bit binary number. Equivalent to **REG_QWORD**.
- **Unknown**: Indicates an unsupported registry data type, such as **REG_RESOURCE_LIST**.
- `String`: Specifies a null-terminated string. Used for **REG_SZ** values.
- `ExpandString`: Specifies a null-terminated string that contains unexpanded references to
environment variables that are expanded when the value is retrieved. Used for **REG_EXPAND_SZ**
values.
- `Binary`: Specifies binary data in any form. Used for **REG_BINARY** values.
- `DWord`: Specifies a 32-bit binary number. Used for **REG_DWORD** values.
- `MultiString`: Specifies an array of null-terminated strings terminated by two null characters.
Used for **REG_MULTI_SZ** values.
- `Qword`: Specifies a 64-bit binary number. Used for **REG_QWORD** values.
- `Unknown`: Indicates an unsupported registry data type, such as **REG_RESOURCE_LIST** values.

```yaml
Type: System.String
Expand Down
Loading