MartinGC94

Results 166 comments of MartinGC94

Yes, as you've discovered this was an intentional change and there's currently no way to change the behavior. A quick workaround you can implement on your own machine is to...

I am planning on creating a PR to stop it from replacing variables with their resolved values but that's a separate issue from this. I don't like the idea of...

I understand that some (or all) Unix shells have this behavior so I can understand why people would want it to be consistent across the different shells. However, in my...

Even if it's restricted to native commands it still seems weird to me: ![image](https://github.com/PowerShell/PowerShell/assets/42123497/427c6bea-40b0-41e3-aa1a-1c6fab008aa3) Why should I care if "printf" is a native PowerShell command or if it's a native...

@daxian-dbw They are not. I tried reverting them with https://github.com/PowerShell/PowerShell/pull/20915/commits/ab72ca78f2f5b0c7310e9510dde74b1f958b5bed but I don't see that in the changes overview https://github.com/PowerShell/PowerShell/pull/20915/files so I must be doing something wrong. GitHubFix completion crash...

You are right, looks like they added a check for it here: https://github.com/PowerShell/PowerShell/blob/master/src/Microsoft.PowerShell.Commands.Management/commands/management/Process.cs#L553 and if we read the documentation for the API they use: https://learn.microsoft.com/en-us/windows/win32/api/processthreadsapi/nf-processthreadsapi-openprocesstoken#remarks it says: > To get...

@JamesWTruher Maybe I misunderstand the "Resolution by design" tag, but it seems contradictory to the WG conclusion. Shouldn't it be marked as "Up for grabs" so someone can go in...

It still happens on the latest RC release, here's a clip that demonstrates it: https://user-images.githubusercontent.com/42123497/199095579-9f098d2e-cbfe-44e4-bf78-78e88f6632cf.mp4 Correct me if I'm wrong, but isn't PowerShell bundled with .NET? So my .NET installations...

Same for me, I don't see it anymore on preview 2 of 7.5.0. I'll close the issue.

If your goal is to accept all sorts of different tuples then you need to leave out the type constraint or manually specify `[system.object]` because they are all distinct types....