diff --git a/reference/5.1/Microsoft.PowerShell.Management/Get-Clipboard.md b/reference/5.1/Microsoft.PowerShell.Management/Get-Clipboard.md index a87b70f29ac..29eae7a9d87 100644 --- a/reference/5.1/Microsoft.PowerShell.Management/Get-Clipboard.md +++ b/reference/5.1/Microsoft.PowerShell.Management/Get-Clipboard.md @@ -28,17 +28,15 @@ returned as an array of strings similar to `Get-Content`. ## EXAMPLES -### Example 1: Get the content of the clipboard and display it to the command-line - -In this example we have right-clicked on an image in a browser and chose the **Copy** action. The -following command displays the link, as a URL, of the image that is stored in the clipboard. +### Example 1: Get the content of the clipboard ```powershell +Set-Clipboard -Value 'hello world' Get-Clipboard ``` ```Output -https://en.wikipedia.org/wiki/PowerShell +hello world ``` ### Example 2: Get the content of the clipboard in a specific format diff --git a/reference/7.4/Microsoft.PowerShell.Management/Get-Clipboard.md b/reference/7.4/Microsoft.PowerShell.Management/Get-Clipboard.md index 68340f482f8..42dee351ab7 100644 --- a/reference/7.4/Microsoft.PowerShell.Management/Get-Clipboard.md +++ b/reference/7.4/Microsoft.PowerShell.Management/Get-Clipboard.md @@ -32,16 +32,15 @@ returned as an array of strings similar to `Get-Content`. ## EXAMPLES -### Example 1: Get the content of the clipboard and display it to the command-line - -In this example we have copied the text "hello" into the clipboard. +### Example 1: Get the content of the clipboard ```powershell +Set-Clipboard -Value 'hello world' Get-Clipboard ``` ```Output -hello +hello world ``` ## PARAMETERS diff --git a/reference/7.5/Microsoft.PowerShell.Management/Get-Clipboard.md b/reference/7.5/Microsoft.PowerShell.Management/Get-Clipboard.md index f7ffb6eeabe..7c018242f77 100644 --- a/reference/7.5/Microsoft.PowerShell.Management/Get-Clipboard.md +++ b/reference/7.5/Microsoft.PowerShell.Management/Get-Clipboard.md @@ -32,16 +32,15 @@ returned as an array of strings similar to `Get-Content`. ## EXAMPLES -### Example 1: Get the content of the clipboard and display it to the command-line - -In this example we have copied the text "hello" into the clipboard. +### Example 1: Get the content of the clipboard ```powershell +Set-Clipboard -Value 'hello world' Get-Clipboard ``` ```Output -hello +hello world ``` ## PARAMETERS diff --git a/reference/7.6/Microsoft.PowerShell.Management/Get-Clipboard.md b/reference/7.6/Microsoft.PowerShell.Management/Get-Clipboard.md index 850409ff2f4..30d998c251a 100644 --- a/reference/7.6/Microsoft.PowerShell.Management/Get-Clipboard.md +++ b/reference/7.6/Microsoft.PowerShell.Management/Get-Clipboard.md @@ -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/01/2025 +ms.date: 12/10/2025 online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.management/get-clipboard?view=powershell-7.6&WT.mc_id=ps-gethelp schema: 2.0.0 aliases: @@ -18,7 +18,7 @@ Gets the contents of the clipboard. ## SYNTAX ``` -Get-Clipboard [-Raw] [] +Get-Clipboard [-Raw] [-Delimiter ] [] ``` ## DESCRIPTION @@ -32,20 +32,65 @@ returned as an array of strings similar to `Get-Content`. ## EXAMPLES -### Example 1: Get the content of the clipboard and display it to the command-line - -In this example we have copied the text "hello" into the clipboard. +### Example 1: Get the content of the clipboard ```powershell +Set-Clipboard -Value 'hello world' Get-Clipboard ``` ```Output -hello +hello world +``` + +### Example 2: Get the content of the clipboard using a custom delimiter + +This example gets the content of the clipboard. The content is a string containing the pipe +character. `Get-Clipboard` splits the content at each occurrence of the specified delimiter. + +```powershell +Set-Clipboard -Value 'line1|line2|line3' +Get-Clipboard -Delimiter '|' +``` + +```Output +line1 +line2 +line3 +``` + +### Example 3: Get the content of the clipboard using custom delimiters + +This example gets the content of the clipboard delimited by the line ending for both Windows and +Linux. + +```powershell +Get-Clipboard -Delimiter "`r`n", "`n" ``` ## PARAMETERS +### -Delimiter + +Specifies one or more delimiters to use when the clipboard content is returned as an array of +strings. The command splits the contents of the clipboard at each occurrence of any of the specified +delimiters. If not specified, the default delimiter is `[Environment.NewLine]`. + +- On Windows, the default delimiter is ``"`r`n"``. +- On Linux and macOS, the default delimiter is ``"`n"``. + +```yaml +Type: System.String[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: Platform specific newline +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Raw Gets the entire contents of the clipboard. Multiline text is returned as a single multiline string diff --git a/reference/7.6/Microsoft.PowerShell.Management/Join-Path.md b/reference/7.6/Microsoft.PowerShell.Management/Join-Path.md index 581d48c8ce0..d487bf827bb 100644 --- a/reference/7.6/Microsoft.PowerShell.Management/Join-Path.md +++ b/reference/7.6/Microsoft.PowerShell.Management/Join-Path.md @@ -2,7 +2,7 @@ external help file: Microsoft.PowerShell.Commands.Management.dll-Help.xml Locale: en-US Module Name: Microsoft.PowerShell.Management -ms.date: 03/25/2025 +ms.date: 12/10/2025 online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.management/join-path?view=powershell-7.6&WT.mc_id=ps-gethelp schema: 2.0.0 title: Join-Path @@ -16,7 +16,7 @@ Combines a path and a child path into a single path. ``` Join-Path [-Path] [-ChildPath] [[-AdditionalChildPath] ] [-Resolve] - [-Credential ] [] + [-Credential ] [-Extension ] [] ``` ## DESCRIPTION @@ -150,6 +150,46 @@ Join-Path -Path a -ChildPath b, c, d, e, f, g a\b\c\d\e\f\g ``` +### Example 9: Add extension to file without extension + +```powershell +Join-Path C:\Temp myfile -Extension txt +``` + +```Output +C:\Temp\myfile.txt +``` + +### Example 10: Change existing extension + +```powershell +Join-Path C:\Temp myfile.txt -Extension .log +``` + +```Output +C:\Temp\myfile.log +``` + +### Example 11: Extension without leading dot + +```powershell +Join-Path C:\Temp file.txt -Extension log +``` + +```Output +C:\Temp\file.log +``` + +### Example 12: Remove extension with empty string + +```powershell +Join-Path C:\Temp file.txt -Extension "" +``` + +```Output +C:\Temp\file +``` + ## PARAMETERS ### -AdditionalChildPath @@ -211,6 +251,28 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` +### -Extension + +Specifies the extension to use for the resulting path. If not specified, the original extension is +preserved. The leading dot in the extension is optional. If omitted, the command adds it +automatically. + +- If the path has an existing extension, it's replaced with the specified extension. +- If the path has no extension, the specified extension is added. +- If you provide an empty string, the existing extension is removed. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: True +``` + ### -Path Specifies the main path (or paths) to which the child-path is appended. The value of **Path** diff --git a/reference/docs-conceptual/learn/experimental-features.md b/reference/docs-conceptual/learn/experimental-features.md index 6ad5366e60d..712be36bb5b 100644 --- a/reference/docs-conceptual/learn/experimental-features.md +++ b/reference/docs-conceptual/learn/experimental-features.md @@ -1,6 +1,6 @@ --- description: Lists the currently available experimental features and how to use them. -ms.date: 11/21/2025 +ms.date: 12/09/2025 title: Using Experimental Features in PowerShell --- # Using Experimental Features in PowerShell @@ -15,14 +15,14 @@ breaking changes. > [!CAUTION] > Experimental features aren't intended to be used in production since the changes are allowed to be > breaking. Experimental features aren't officially supported. However, we appreciate any feedback -> and bug reports. You can file issues in the [GitHub source repository][16]. +> and bug reports. You can file issues in the [GitHub source repository][17]. For more information about enabling or disabling these features, see [about_Experimental_Features][05]. ## Experimental feature lifecycle -The [Get-ExperimentalFeature][19] cmdlet returns all experimental features available to PowerShell. +The [Get-ExperimentalFeature][20] cmdlet returns all experimental features available to PowerShell. Experimental features can come from modules or the PowerShell engine. Module-based experimental features are only available after you import the module. In the following example, the **PSDesiredStateConfiguration** isn't loaded, so the `PSDesiredStateConfiguration.InvokeDscResource` @@ -43,7 +43,7 @@ PSSerializeJSONLongEnumAsNumber True PSEngine Serialize enums based on long o PSSubsystemPluginModel True PSEngine A plugin model for registering and un-registering PowerShell subsyste… ``` -Use the [Enable-ExperimentalFeature][18] and [Disable-ExperimentalFeature][17] cmdlets to enable or +Use the [Enable-ExperimentalFeature][19] and [Disable-ExperimentalFeature][18] cmdlets to enable or disable a feature. You must start a new PowerShell session for this change to be in effect. Run the following command to enable the `PSCommandNotFoundSuggestion` feature: @@ -86,13 +86,14 @@ Legend | [PSCommandNotFoundSuggestion][06] | ![Experimental][02] | ![Mainstream][01] | ![Mainstream][01] | | [PSCommandWithArgs][07] | ![Experimental][02] | ![Mainstream][01] | ![Mainstream][01] | | [PSDesiredStateConfiguration.InvokeDscResource][08] | ![Experimental][02] | ![Experimental][02] | ![Experimental][02] | -| [PSFeedbackProvider][09] | ![Experimental][02] | ![Experimental][02] | ![Experimental][02] | +| [PSFeedbackProvider][09] | ![Experimental][02] | ![Experimental][02] | ![Mainstream][01] | | [PSLoadAssemblyFromNativeCode][10] | ![Experimental][02] | ![Experimental][02] | ![Experimental][02] | | [PSModuleAutoLoadSkipOfflineFiles][11] | ![Experimental][02] | ![Mainstream][01] | ![Mainstream][01] | -| [PSNativeWindowsTildeExpansion][12] | | ![Experimental][02] | ![Experimental][02] | -| [PSRedirectToVariable][13] | | ![Experimental][02] | ![Experimental][02] | -| [PSSerializeJSONLongEnumAsNumber][14] | | ![Experimental][02] | ![Experimental][02] | -| [PSSubsystemPluginModel][15] | ![Experimental][02] | ![Experimental][02] | ![Experimental][02] | +| [PSNativeWindowsTildeExpansion][12] | | ![Experimental][02] | ![Mainstream][01] | +| [PSProfileDSCResource][13] | | | ![Experimental][02] | +| [PSRedirectToVariable][14] | | ![Experimental][02] | ![Mainstream][01] | +| [PSSerializeJSONLongEnumAsNumber][15] | | ![Experimental][02] | ![Experimental][02] | +| [PSSubsystemPluginModel][16] | ![Experimental][02] | ![Experimental][02] | ![Mainstream][01] | ### PSCommandNotFoundSuggestion @@ -155,6 +156,10 @@ use or support MOF compilation. For more information, see ### PSFeedbackProvider +> [!NOTE] +> This experimental feature was added in PowerShell 7.4-preview.3. This feature became mainstream in +> PowerShell 7.6-preview.6. + When you enable this feature, PowerShell uses a new feedback provider to give you feedback when a command can't be found. The feedback provider is extensible, and can be implemented by third-party modules. The feedback provider can be used by other subsystems, such as the predictor subsystem, to @@ -170,8 +175,6 @@ This feature includes two built-in feedback providers: in an interactive run, and for providing predictive IntelliSense results for the next command line. -This feature was added in PowerShell 7.4-preview.3. - ### PSLoadAssemblyFromNativeCode Exposes an API to allow assembly loading from native code. @@ -190,10 +193,54 @@ always kept on disk. This feature was added in PowerShell 7.4-preview.1. +### PSNativeWindowsTildeExpansion + +> [!NOTE] +> This experimental feature was added in PowerShell 7.5-preview.2. This feature became mainstream in +> PowerShell 7.6-preview.6. + +When this feature is enabled, PowerShell expands unquoted tilde (`~`) to the user's current home +folder before invoking native commands. The following examples show how the feature works. + +With the feature disabled, the tilde is passed to the native command as a literal string. + +```powershell +PS> cmd.exe /c echo ~ +~ +``` + +With the feature enabled, PowerShell expands the tilde before it's passed to the native command. + +```powershell +PS> cmd.exe /c echo ~ +C:\Users\username +``` + +This feature only applies to Windows. On non-Windows platforms, tilde expansion is handled natively. + +### PSProfileDSCResource + +> [!NOTE] +> This experimental feature was added in PowerShell 7.6-preview.6. + +The PowerShell 7.6-preview.6 release added this feature as an advertisement for a new DSCv3 +resource. The experimental feature flag doesn't do anything. You can use the new DSC v3 resource +regardless of whether this feature is enabled or disabled. + +The `Microsoft.PowerShell/Profile` resource enables you to manage PowerShell profiles using Desired +State Configuration (DSC) v3. This release includes two new files in the `$PSHOME` folder: + +- `pwsh.profile.dsc.resource.json` - DSC v3 resource manifest file +- `pwsh.profile.resource.ps1` - DSC v3 resource implementation file + +The resource supports operations to get, set, and export profile content for different profile +types. For more information, see the notes in the PR [PowerShell/PowerShell#26157][26157]. + ### PSRedirectToVariable > [!NOTE] -> This experimental feature was added in PowerShell 7.5-preview.4. +> This experimental feature was added in PowerShell 7.5-preview.4. This feature became mainstream in +> PowerShell 7.6-preview.6. When enabled, this feature adds support for redirecting to the Variable: drive. This feature allows you to redirect data to a variable using the `Variable:name` syntax. PowerShell inspects the target @@ -217,48 +264,12 @@ Output 2 WARNING: Warning, Warning! ``` -### PSSubsystemPluginModel - -This feature enables the subsystem plugin model in PowerShell. The feature makes it possible to -separate components of `System.Management.Automation.dll` into individual subsystems that reside in -their own assembly. This separation reduces the disk footprint of the core PowerShell engine and -allows these components to become optional features for a minimal PowerShell installation. - -Currently, only the **CommandPredictor** subsystem is supported. This subsystem is used along with -the PSReadLine module to provide custom prediction plugins. In future, **Job**, -**CommandCompleter**, **Remoting** and other components could be separated into subsystem assemblies -outside of `System.Management.Automation.dll`. - -The experimental feature includes a new cmdlet, [Get-PSSubsystem][20]. This cmdlet is only available -when the feature is enabled. This cmdlet returns information about the subsystems that are available -on the system. - -### PSNativeWindowsTildeExpansion - -When this feature is enabled, PowerShell expands unquoted tilde (`~`) to the user's current home -folder before invoking native commands. The following examples show how the feature works. - -With the feature disabled, the tilde is passed to the native command as a literal string. - -```powershell -PS> cmd.exe /c echo ~ -~ -``` - -With the feature enabled, PowerShell expands the tilde before it's passed to the native command. - -```powershell -PS> cmd.exe /c echo ~ -C:\Users\username -``` - -This feature only applies to Windows. On non-Windows platforms, tilde expansion is handled natively. - -This feature was added in PowerShell 7.5-preview.2. - ### PSSerializeJSONLongEnumAsNumber -This feature enables the cmdlet [ConvertTo-Json][21] to serialize any enum values based on +> [!NOTE] +> This experimental feature was added in PowerShell 7.5-preview.5. + +This feature enables the cmdlet [ConvertTo-Json][22] to serialize any enum values based on `Int64/long` or `UInt64/ulong` as a numeric value rather than the string representation of that enum value. This aligns the behavior of enum serialization with other enum base types where the cmdlet serializes enums as their numeric value. Use the **EnumsAsStrings** parameter to serialize as the @@ -286,6 +297,25 @@ For example: # { "Key": "Cmdlets" } ``` +### PSSubsystemPluginModel + +> [!NOTE] +> This feature became mainstream in PowerShell 7.6-preview.6. + +This feature enables the subsystem plugin model in PowerShell. The feature makes it possible to +separate components of `System.Management.Automation.dll` into individual subsystems that reside in +their own assembly. This separation reduces the disk footprint of the core PowerShell engine and +allows these components to become optional features for a minimal PowerShell installation. + +Currently, only the **CommandPredictor** subsystem is supported. This subsystem is used along with +the PSReadLine module to provide custom prediction plugins. In future, **Job**, +**CommandCompleter**, **Remoting** and other components could be separated into subsystem assemblies +outside of `System.Management.Automation.dll`. + +The experimental feature includes a new cmdlet, [Get-PSSubsystem][21]. This cmdlet is only available +when the feature is enabled. This cmdlet returns information about the subsystems that are available +on the system. + [01]: ../../media/shared/check-mark-button-2705.svg [02]: ../../media/shared/construction-sign-1f6a7.svg @@ -299,12 +329,14 @@ For example: [10]: #psloadassemblyfromnativecode [11]: #psmoduleautoloadskipofflinefiles [12]: #psnativewindowstildeexpansion -[13]: #psredirecttovariable -[14]: #psserializejsonlongenumasnumber -[15]: #pssubsystempluginmodel -[16]: https://github.com/PowerShell/PowerShell/issues/new/choose -[17]: xref:Microsoft.PowerShell.Core.Disable-ExperimentalFeature -[18]: xref:Microsoft.PowerShell.Core.Enable-ExperimentalFeature -[19]: xref:Microsoft.PowerShell.Core.Get-ExperimentalFeature -[20]: xref:Microsoft.PowerShell.Core.Get-PSSubsystem -[21]: xref:Microsoft.PowerShell.Utility.ConvertTo-Json +[13]: #psprofiledscresource +[14]: #psredirecttovariable +[15]: #psserializejsonlongenumasnumber +[16]: #pssubsystempluginmodel +[17]: https://github.com/PowerShell/PowerShell/issues/new/choose +[18]: xref:Microsoft.PowerShell.Core.Disable-ExperimentalFeature +[19]: xref:Microsoft.PowerShell.Core.Enable-ExperimentalFeature +[20]: xref:Microsoft.PowerShell.Core.Get-ExperimentalFeature +[21]: xref:Microsoft.PowerShell.Core.Get-PSSubsystem +[22]: xref:Microsoft.PowerShell.Utility.ConvertTo-Json +[26157]: https://github.com/PowerShell/PowerShell/pull/26157 diff --git a/reference/docs-conceptual/whats-new/What-s-New-in-PowerShell-76.md b/reference/docs-conceptual/whats-new/What-s-New-in-PowerShell-76.md index 79f20e1b50e..b5e06332c40 100644 --- a/reference/docs-conceptual/whats-new/What-s-New-in-PowerShell-76.md +++ b/reference/docs-conceptual/whats-new/What-s-New-in-PowerShell-76.md @@ -1,21 +1,21 @@ --- title: What's New in PowerShell 7.6 description: New features and changes released in PowerShell 7.6 -ms.date: 10/09/2025 +ms.date: 12/09/2025 --- # What's New in PowerShell 7.6 -PowerShell 7.6-preview.5 includes the following features, updates, and breaking changes. PowerShell +PowerShell 7.6-preview.6 includes the following features, updates, and breaking changes. PowerShell 7.6 is built on .NET 9.0.101 GA release. -For a complete list of changes, see the [CHANGELOG][04] in the GitHub repository. +For a complete list of changes, see the [CHANGELOG][log] in the GitHub repository. ## Updated modules -PowerShell 7.6-preview.5 includes the following updated modules: +PowerShell 7.6-preview.6 includes the following updated modules: -- **Microsoft.PowerShell.PSResourceGet** v1.1.0 +- **Microsoft.PowerShell.PSResourceGet** v1.2.0-preview5 - **PSReadLine** v2.4.4-beta4 - **Microsoft.PowerShell.ThreadJob** v2.2.0 - **ThreadJob** v2.1.0 @@ -35,9 +35,12 @@ name, the **ThreadJob** v2.1.0 module is a proxy module that points to the ## Tab completion improvements -- Use parameter `HelpMessage` for tool tip in parameter completion ([#25108][25108]) (Thanks @jborean93!) +- Properly Expand Aliases to their actual ResolvedCommand ([#26571][26571]) (Thanks @kilasuit!) +- Use parameter `HelpMessage` for tool tip in parameter completion ([#25108][25108]) (Thanks + @jborean93!) - Remove duplicate modules from completion results ([#25538][25538]) (Thanks @MartinGC94!) -- Add completion for variables assigned in `ArrayLiteralAst` and `ParenExpressionAst` ([#25303][25303]) (Thanks @MartinGC94!) +- Add completion for variables assigned in `ArrayLiteralAst` and `ParenExpressionAst` + ([#25303][25303]) (Thanks @MartinGC94!) - Fix tab completion for env/function variables ([#25346][25346]) (Thanks @jborean93!) - Update Named and Statement block type inference to not consider **AssignmentStatements** and Increment/decrement operators as part of their output ([#21137][21137]) (Thanks @MartinGC94!) @@ -88,8 +91,9 @@ name, the **ThreadJob** v2.1.0 module is a proxy module that points to the ## Cmdlet improvements -- Fix Out-GridView by replacing use of obsolete BinaryFormatter with custom implementation ([#25497][25497]) - (Thanks @mawosoft!) +- Add `-Delimiter` parameter to `Get-Clipboard` ([#26572][26572]) (Thanks @MartinGC94!) +- Fix Out-GridView by replacing use of obsolete BinaryFormatter with custom implementation + ([#25497][25497]) (Thanks @mawosoft!) - Improve verbose and debug logging level messaging in web cmdlets ([#25510][25510]) (Thanks @JustinGrote!) - Improve debug logging of Web cmdlet request and response ([#25479][25479]) (Thanks @JustinGrote!) @@ -137,6 +141,9 @@ name, the **ThreadJob** v2.1.0 module is a proxy module that points to the ## Engine improvements +- Fix a regression in the API `CompletionCompleters.CompleteFilename()` that causes null reference + exception ([#26487][26487]) +- Close pipe client handles after creating the child ssh process ([#26564][26564]) - Update the **PSDiagnostics** module to manage the PowerShellCore provider in PowerShell 7 ([#25590][25590]) - Allow opt-out of the named-pipe listener using the environment variable @@ -176,18 +183,30 @@ name, the **ThreadJob** v2.1.0 module is a proxy module that points to the ## Experimental features -The following experimental features are included in PowerShell 7.6-preview.3: +PowerShell 7.6-preview.6 includes the following changes to experimental features. -- [PSNativeWindowsTildeExpansion][01] - Add tilde expansion for Windows-native executables -- [PSRedirectToVariable][02] - Allow redirecting to a variable -- [PSSerializeJSONLongEnumAsNumber][03] - `ConvertTo-Json` now treats large enums as numbers +The following features have been converted to mainstream features: + +- [PSFeedbackProvider][01] +- [PSNativeWindowsTildeExpansion][02] +- [PSRedirectToVariable][04] +- [PSSubsystemPluginModel][06] + +This release includes the following experimental features: + +- [PSSerializeJSONLongEnumAsNumber][05] - `ConvertTo-Json` now treats large enums as numbers +- [PSProfileDSCResource][03] - Add DSC v3 resource for PowerShell Profiles -[01]: ../learn/experimental-features.md#psnativewindowstildeexpansion -[02]: ../learn/experimental-features.md#psredirecttovariable -[03]: ../learn/experimental-features.md#psserializejsonlongenumasnumber -[04]: https://github.com/PowerShell/PowerShell/blob/master/CHANGELOG/preview.md +[01]: ../learn/experimental-features.md#psfeedbackprovider +[02]: ../learn/experimental-features.md#psnativewindowstildeexpansion +[03]: ../learn/experimental-features.md#psprofiledscresource +[04]: ../learn/experimental-features.md#psredirecttovariable +[05]: ../learn/experimental-features.md#psserializejsonlongenumasnumber +[06]: ../learn/experimental-features.md#pssubsystempluginmodel + +[log]: https://github.com/PowerShell/PowerShell/blob/master/CHANGELOG/preview.md [14553]: https://github.com/PowerShell/PowerShell/pull/14553 [17687]: https://github.com/PowerShell/PowerShell/pull/17687 @@ -278,3 +297,7 @@ The following experimental features are included in PowerShell 7.6-preview.3: [26081]: https://github.com/PowerShell/PowerShell/pull/26081 [26086]: https://github.com/PowerShell/PowerShell/pull/26086 [26118]: https://github.com/PowerShell/PowerShell/pull/26118 +[26487]: https://github.com/PowerShell/PowerShell/pull/26487 +[26564]: https://github.com/PowerShell/PowerShell/pull/26564 +[26571]: https://github.com/PowerShell/PowerShell/pull/26571 +[26572]: https://github.com/PowerShell/PowerShell/pull/26572