EN
Windows 11 - is it possible to create named pipe using Microsoft Command Prompt (cmd)?
1
answers
10
points
I know, it is possible to create named pipe in Bash under Linux, e.g.
mkfifo my_pipe
I was looking for equivalent under Windows, and I am not able to find any command.
Is is possible?
1 answer
4
points
The answer is: NO
From WIkipedia:
A named pipe can be accessed much like a file. Win32 SDK functions
CreateFile,ReadFile,WriteFileandCloseHandleopen, read from, write to, and close a pipe, respectively. Unlike Unix, there is no command line interface, except for PowerShell.
References
0 comments
Add comment