Bruce Payette
Bruce Payette
powershell.exe is a console application. The console window is automatically created by the OS when the process starts. The powershell.exe code that processes -WindowStyle Hidden is therefore executed after the...
@bergmeister Agreed. However even relatively small changes on a core path can seriously hinder adoption. Look at Python 3. It took 10 _years_ to really catch on. With much bigger...
Javascript is a special case. You're pretty much stuck with it so transpiling is really the only option. Typescript is "just" Javascript with extensions so it's easy for people to...
PowerShell doesn't use Allman style. It uses C#/.NET style (which is Allman style). So one degree of indirection. PowerShell is conventionally indented with 4 spaces because Windows. I came from...
What scenario did you have in mind for this? The one that has been discussed in the past (#7565) involved parallel computations. However, in that scenario, performance is a concern...
@mklement0 Thanks!
@felixfbecker So if I understand you correctly, you'd like to see an in-box variant of the `PSCmdlet` base class possibly called `PSAsyncCmdlet` that lets you write synchronous cmdlets that use...
Something to keep in mind: there is, in fact, only one **kind** of ErrorRecord. It's what's done with that error record that varies. It can be written to the error...
Consider the case where an error goes from terminating to non-terminating: ``` try { 1/0 } catch { write-error $_ }; "Hi" ``` In this example, 1/0 produces a terminating...
@Stephanevg What do you mean when you say "Creation of static and non static _internal_ classes". (I can think of a couple of interpretations but i'd like to hear what...