can I somehow list named pipes on remote server from a client application?
On local computer I use
hFindFile = FindFirstFile("\\\\.\\pipe\\*",&fdFileData);
where hFindFile is a handle and fdFileData is WIN32_FIND_DATA struct. I call FindNextFile() repeatedly and when it returns 0 I close with FindClose(). It works perfect on local machine, but when I try call
hFindFile = FindFirstFile("\\\\servername\\pipe\\*",&fdFileData);
it resulted to ERROR_INVALID_FUNCTION. Someone advise me that I need to connect to remote server by WNetUseConnection(), but for me it's not clear what object I have connect to.