|
|
|
|
|
by Arnavion
4262 days ago
|
|
PowerShell utilities are implemented as CLR classes inheriting from a particular base class. As such, they must be written in a CLR language (or PowerShell itself, of course). Edit: Of course, you have the option of writing a minimal wrapper in PS that shells out to your other-language command but the interface between PS and non-PS programs is still based on a string commandline. |
|
You can do IPC with PowerShell [1], but it's nowhere near as simple as UNIX-style piping.
[1] http://coders-corner.net/2014/05/11/inter-process-communicat...