iRon7

Results 195 comments of iRon7

Understood, what about removing the current ParserError and make this a PSScriptAnalyzer rule too, knowing that a `Try` without `Catch` isn't completely wrong (e.g.: `$a = Try { $b /...

I once had a similar idea for a more common purpose in the form of a `switch` with a `-key` or a `-property` parameter. The issue with this is that...

@nohwnd, Just with the **minimum reproducible example**: It states `` where it could probably state something like `Get-Date`...

I think that the concerned parameters should allow for both `$Null` *and* an **Empty Collection** * In case the value is an (empty) collection, the value should convert to an...

Actually, it appears that there is a newer [Update-**PS**ModuleManifest](https://learn.microsoft.com/powershell/module/microsoft.powershell.psresourceget/update-psmodulemanifest) (`1.0.6`) that does work as expected (except from the suggested `$Null`/Defaulting value): ```PowerShell Install-Module -Name Microsoft.PowerShell.PSResourceGet -RequiredVersion 1.0.6 Update-PSModuleManifest .\Test\Test.psd1 -RequiredModules...