I want to interact with the pipe manually , but so far I can only do this in the programe,which is not very intuitive.
The effect I want to achieve is a little similar to :
telnet localhost 3306
tail -f file.txt
Anyone get my idea?
I want to interact with the pipe manually , but so far I can only do this in the programe,which is not very intuitive.
The effect I want to achieve is a little similar to :
telnet localhost 3306
tail -f file.txt
Anyone get my idea?
From PowerShell
PS>$pipe = New-Object System.IO.Pipes.NamedPipeServerStream("DummyPipe", "InOut")
PS>Get-ChildItem -Path "\\.\pipe\" -Filter *DummyPipe*
More explanation: https://decoder.cloud/2019/03/06/windows-named-pipes-impersonation/
There is a free command line utility to create and write/read from named pipes on Windows: https://github.com/psmay/windows-named-pipe-utils