iRon7
iRon7
### 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. -...
### Type of issue Missing information ### Feedback Even it is implied in the section [Avoid wrapping cmdlet pipelines](https://learn.microsoft.com/powershell/scripting/dev-cross-plat/performance/script-authoring-considerations#avoid-wrapping-cmdlet-pipelines) section and covered in the [Everything you wanted to know about...
Ook### Summary of the new feature / enhancement #### Use case For the `Select-Object -Index `, I would like to index specific indices and also include a long range of...
A ParseError is generated if "The Try statement is missing its Catch or Finally block" works only one way." but not vice versa: if "The Catch or Finally statement is...
### Summary of the new feature / enhancement Currently there is no obvious way to change the *default* value of the [Preference Variables](https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_preference_variables) for a certain scope. The usual way...
### Summary of the new feature / enhancement When creating a module with cmdlets that contain an unapproved verb the following warning is shown when the module is imported by...
### Summary of the new feature / enhancement The (mcve) issue: ```PowerShell $Null = New-Module { class MyClass { $Value = 42 } function New-Instance { return [MyClass]::new() } Export-ModuleMember...
### Summary of the new feature / enhancement Use case: I have a **Complex Object**1) like: ```PowerShell $MyObject | ConvertTo-Json -Depth 9 { "AllNodes": [ { "NodeName": "localhost", "CertificateFile": ".\\DSCCertificate.Customer.cer"...
### Summary of the new feature / enhancement The proposal for inline splatting has been rejected some time ago. See: https://github.com/PowerShell/PowerShell/issues/25029: > This was first proposed a long time ago:...
The `ConvertFrom-Csv` and `Import-Csv` currently only outputs `[String]` properties as [CSV lacks any type information to distinguish the string "1" from the number 1](https://en.wikipedia.org/wiki/Comma-separated_values). Yet the data contained in `CSV`...