@@ -6,16 +6,16 @@ ms.date: 10/09/2025
66
77# What's New in PowerShell 7.6
88
9- PowerShell 7.6-preview.5 includes the following features, updates, and breaking changes. PowerShell
9+ PowerShell 7.6-preview.6 includes the following features, updates, and breaking changes. PowerShell
10107.6 is built on .NET 9.0.101 GA release.
1111
12- For a complete list of changes, see the [ CHANGELOG] [ 04 ] in the GitHub repository.
12+ For a complete list of changes, see the [ CHANGELOG] [ 05 ] in the GitHub repository.
1313
1414## Updated modules
1515
16- PowerShell 7.6-preview.5 includes the following updated modules:
16+ PowerShell 7.6-preview.6 includes the following updated modules:
1717
18- - ** Microsoft.PowerShell.PSResourceGet** v1.1.0
18+ - ** Microsoft.PowerShell.PSResourceGet** v1.2.0-preview5
1919- ** PSReadLine** v2.4.4-beta4
2020- ** Microsoft.PowerShell.ThreadJob** v2.2.0
2121- ** ThreadJob** v2.1.0
@@ -35,6 +35,7 @@ name, the **ThreadJob** v2.1.0 module is a proxy module that points to the
3535
3636## Tab completion improvements
3737
38+ - Properly Expand Aliases to their actual ResolvedCommand (#26571 ) (thanks @kilasuit !)
3839- Use parameter ` HelpMessage ` for tool tip in parameter completion ([ #25108 ] [ 25108 ] ) (Thanks @jborean93 !)
3940- Remove duplicate modules from completion results ([ #25538 ] [ 25538 ] ) (Thanks @MartinGC94 !)
4041- Add completion for variables assigned in ` ArrayLiteralAst ` and ` ParenExpressionAst ` ([ #25303 ] [ 25303 ] ) (Thanks @MartinGC94 !)
@@ -88,6 +89,7 @@ name, the **ThreadJob** v2.1.0 module is a proxy module that points to the
8889
8990## Cmdlet improvements
9091
92+ - Add ` -Delimiter ` parameter to ` Get-Clipboard ` (#26572 ) (thanks @MartinGC94 !)
9193- Fix Out-GridView by replacing use of obsolete BinaryFormatter with custom implementation ([ #25497 ] [ 25497 ] )
9294 (Thanks @mawosoft !)
9395- Improve verbose and debug logging level messaging in web cmdlets ([ #25510 ] [ 25510 ] ) (Thanks
@@ -137,6 +139,9 @@ name, the **ThreadJob** v2.1.0 module is a proxy module that points to the
137139
138140## Engine improvements
139141
142+ - Fix a regression in the API ` CompletionCompleters.CompleteFilename() ` that causes null reference
143+ exception (#26487 )
144+ - Close pipe client handles after creating the child ssh process (#26564 )
140145- Update the ** PSDiagnostics** module to manage the PowerShellCore provider in PowerShell 7
141146 ([ #25590 ] [ 25590 ] )
142147- Allow opt-out of the named-pipe listener using the environment variable
@@ -176,18 +181,27 @@ name, the **ThreadJob** v2.1.0 module is a proxy module that points to the
176181
177182## Experimental features
178183
179- The following experimental features are included in PowerShell 7.6-preview.3:
184+ The PowerShell 7.6-preview.6 release includes the following changes to experimental features.
185+
186+ The following experimental features are mainstream:
187+
188+ - [ PSFeedbackProvider] ( ../learn/experimental-features.md#psfeedbackprovider )
189+ - [ PSNativeWindowsTildeExpansion] [ 01 ]
190+ - [ PSRedirectToVariable] [ 02 ]
191+ - [ PSSubsystemPluginModel] ( ../learn/experimental-features.md#pssubsystempluginmodel )
192+
193+ This release includes following experimental features:
180194
181- - [ PSNativeWindowsTildeExpansion] [ 01 ] - Add tilde expansion for Windows-native executables
182- - [ PSRedirectToVariable] [ 02 ] - Allow redirecting to a variable
183195- [ PSSerializeJSONLongEnumAsNumber] [ 03 ] - ` ConvertTo-Json ` now treats large enums as numbers
196+ - [ PSProfileDSCResource] [ 04 ] - Add DSC v3 resource for Powershell Profile (#26447 )
184197
185198<!-- end of content -->
186199<!-- reference links -->
187200[ 01 ] : ../learn/experimental-features.md#psnativewindowstildeexpansion
188201[ 02 ] : ../learn/experimental-features.md#psredirecttovariable
189202[ 03 ] : ../learn/experimental-features.md#psserializejsonlongenumasnumber
190- [ 04 ] : https://github.com/PowerShell/PowerShell/blob/master/CHANGELOG/preview.md
203+ [ 04 ] : ../learn/experimental-features.md#psprofiledscresource
204+ [ 05 ] : https://github.com/PowerShell/PowerShell/blob/master/CHANGELOG/preview.md
191205
192206[ 14553 ] : https://github.com/PowerShell/PowerShell/pull/14553
193207[ 17687 ] : https://github.com/PowerShell/PowerShell/pull/17687
0 commit comments