Michael Klement
Michael Klement
There are unquestionably bugs here, given that even `Get-ChildItem -Path *` doesn't yield any results. I suspect this falls under the heading of the following catch-all issue: * #7999
An important aspect of your bug report is _not_ covered in the linked issue, however: Once you've `Set-Location`ed into a directory named ``test`[0-2]``, for instance: * Cmdlets cannot find _any_...
From the [`New-NetQosPolicy`](https://learn.microsoft.com/en-us/powershell/module/netqos/new-netqospolicy) help topic: > QoS policies can be stored in multiple locations. Users can choose a location by specifying the PolicyStore parameter. If the PolicyStore parameter is not...
Thanks for tackling this, @AbishekPonmudi. * The code LGTM. * As for the tests: * I think that one culture-specific test should be enough, using a culture where `,` is...
Your examples are the equivalent of `[bigint]::new([byte] 12)` and `[bigint]::new([int] 12)` (perhaps you meant `[bigint][byte[]] (1, 2)`? Either way, I don't see the connection to the issue at hand (other...
[`bigint`](https://learn.microsoft.com/en-US/dotnet/api/System.Numerics.BigInteger) is an _open-ended_ integer type with respect to the size of the values it can hold, so it is definitely distinct from the fixed-size [`System.Int128`](https://learn.microsoft.com/en-US/dotnet/api/System.Int128) type - but you're...
Providing instructions _as part of the notification_ isn't possible, given the various ways in which PowerShell can be installed (and given that the installation at hand may not know about...
If this is primarily about automatic reflecting the execution duration of commands in the prompt string, you can define your `prompt` function as follows: ```powershell function Prompt { # Calculate...
> I already have something similar in my profile, like many others do, I see, @kilasuit. This is why it's important to make the case for a new feature with...
Thinking about this some more: Since the prompt by definition has already printed when you submit your command, the desired functionality isn't _prompt_-related as such. I wonder if what you're...