yotsuda
yotsuda
### Prerequisites - [X] Write a descriptive title. - [X] Make sure you are able to repro it on the [latest released version](https://github.com/PowerShell/PowerShell/releases) - [X] Search the existing issues. -...
# PR Summary This PR centralizes the `ExcludeProperty` filter application logic in the `ViewGenerator` base class, addressing the enhancement requested in #26568. ## Changes **ViewGenerator base class:** - Changed `activeAssociationList`...
### Prerequisites - [x] Write a descriptive title. - [x] Make sure you are able to repro it on the [latest released version](https://github.com/PowerShell/PowerShell/releases) - [x] Search the existing issues. -...
## PR Summary Add public `ToRegex()` method to `WildcardPattern` class for converting PowerShell wildcard patterns to regular expressions. ## PR Context Resolves #19992 PowerShell users often need to convert wildcard...
-IncludeTypeInformation:$false -NoTypeInformation:$false not respected in Export-Csv/ConvertTo-Csv
### Prerequisites - [x] Write a descriptive title. - [x] Make sure you are able to repro it on the [latest released version](https://github.com/PowerShell/PowerShell/releases) - [x] Search the existing issues. -...
# PR Summary Fix `ShouldProcess` to respect `$VerbosePreference` variable in addition to `-Verbose` parameter. ## PR Context Fixes #12148 `$PSCmdlet.ShouldProcess()` was only emitting verbose output when the `-Verbose` parameter was...
# PR Summary Fix `Set-PSDebug -Trace` to display all lines of multiline commands. ## PR Context Fixes #8113 When using `Set-PSDebug -Trace 1` or `-Trace 2`, multiline commands (e.g., using...
## PR Summary Fix argument parsing for hyphen-prefixed tokens containing periods. Tokens like `-foo.bar` are now passed as a single argument instead of being incorrectly split into `-foo` and `.bar`....
### Summary of the new feature / enhancement #26514 introduced the `-ExcludeProperty` parameter to `Format-Table/List/Wide/Custom`. The implementation requires calling `ApplyExcludePropertyFilter()` at different locations depending on the ViewGenerator class: | ViewGenerator...
### Summary of the new feature / enhancement Parameter conflict validation errors (e.g., "Cannot specify both -X and -Y") currently use inconsistent `ErrorCategory` values across cmdlets: | Cmdlet | Conflicting...