237dmitry
237dmitry
Overall, I liked this idea. Exactly, as an idea. But if you consider it in a practical plane, then doubts arise about the expediency of its application. If you take...
> Any construct that forces you to use an auxiliary variable that otherwise serves no purpose deserves improving to eliminate that need The point is comfort syntax. I do not...
>> The only area of application is script blocks or copy-paste to the console > To visualize this: And script-block is visualized But with pipelining it will be convenient, no...
> `git checkout -b` ```powershell # Get-Help about_Aliases You cannot assign an alias to a command and its parameters. ``` Does command with parameters work as alias value? ```powershell $...
What's wrong with `return`, `exit` (and loop's `break`)?
Does it work with `Foreach-Object -Parallel` ?
> If you use Set-Something -ComputerName $ListOf1000Servers No, I mean something like (I don't have the opportunity to try): ```powershell $Computers | Foreach-Object -Parallel { Invoke-Command -ComputerName $_ .... }...
I do not believe that current $profile is loaded. No configurations, aliases, functions...
I load (source) all of functions from $profile: ```powershell . /path/to/functions.ps1 ```
> 5. Attempt to resolve the relative path using -Relative and -RelativeBasePath What is the current path from where you are trying to resolve the file path? Is it part...