Max Kozlov
Max Kozlov
I think this is not a bug, because `Foreach-Object` can't work without pipeline at all but `Start-RSJob` can
so, may be you have a method to determine if there is empty pipeline or no pipeline? If so that can be implemented
so, where the code example ? ;-)
Stripped BOM headers not supported in PSv2, It fail to detect utf8
May be this is becase it really does not contain any non-ascii symbols, so it non-utf ? :) But contain BOM on accident, so the topic should sound like 'convert...
>Switch to boolean for parameter that shows progress bar what is the reason for this replacement ?
Did you know that `-Parameter:value` syntax acceptable for both switches and booleans ? Seems not ;) Its a common practice to use it for example for `-Confirm:$confirm` cases and for...
yes, but switch can be used as a boolean and does not require parameter. But boolean can not and require value. It is a breaking change
so, you want single threading ? may be just not use RSJob ? :) or may be join multiple jobs inside one ? or, if you want to start the...
it sounds still not clear to me. let's divide question... 1. Do you want to run the different jobs each time or the same with different data ? `$data1 |...