Jeff Hicks

Results 162 comments of Jeff Hicks
trafficstars

Instead of a new command, you could add the manifest details as a metadata property on the output object. `Find-Module` does that with an `AdditionalMetadata` property.

Using a property might also improve how this function handles more complex objects.

I have added this feature to v2.50.0 which has been published to the PowerShell Gallery.

added to the Working Group queue

The WG looked at this issue and recognize the value in the addition. This would also provide command parity with Split-Path

The Catch block uses `Write-Warning`, which is what I personally prefer. However, it sounds like I should change this to `Write-Error`. If you got an exception object instead of a...

My code isn't signed, so you could modify the `Invoke-mySqliteQuery.ps1` file in the functions folder. Change all occurrences of `Write-Warning $_.Exception.message` to `Write-Error $_.Exception.message`. Test in a new session and...