iRon7
iRon7
### Checklist - [x] Issue has a meaningful title - [x] I have searched the existing issues. See [all issues](https://github.com/pester/Pester/issues?q=is%3Aissue) - [x] I have tested using the latest version of...
Not sure whether [this](https://stackoverflow.com/a/45030002/1701026) is a PowerShell a bug or feature but fixing it in PowerShell would probably be a break change. In any case, I think unknown labels should...
Similar to the rule [`AvoidUsingPlainTextForPassword`](https://learn.microsoft.com/powershell/utility-modules/psscriptanalyzer/rules/avoidusingplaintextforpassword), passing plaintext passwords to external/binary cmdlets should be avoided. This includes cmdlets as e.g.: ```PowerShell PS C:\> Get-Command -ParameterName Password CommandType Name Version Source -----------...
As concluded here https://github.com/PowerShell/PowerShell/issues/25953 The `ValueFromPipelineByPropertyName` parameter attribute should not be used with the `ValueFromPipeline` parameter attribute because it would not have any effect (the `ValueFromPipeline` attribute overrules the `ValueFromPipelineByPropertyName`...
### Use case: We are running [GitLab Code Quality](https://docs.gitlab.com/ci/testing/code_quality/) reports in our pipeline based on the PSScriptAnalyzer results by translating the PSScriptAnalyzer severity results to a Code Quality severity. But...
### Prerequisites - [x] **Existing Issue:** Search the existing issues for this repository. If there is an issue that fits your needs do not file a new one. Subscribe, react,...
### Prerequisites - [x] **Existing Issue:** Search the existing issues for this repository. If there is an issue that fits your needs do not file a new one. Subscribe, react,...
### Summary of the new feature / enhancement In case the manifest doesn't (yet) exist, I would like to be able to create it with a single command. Currently the...
In my use case it actually concerns the `using module ...` statement but the general issue might be simply reproduced with any using statement as `using namespace ...`: Taken the...