Change Named Pipe Access Permissions
Clash Royale CLAN TAG #URR8PPP Change Named Pipe Access Permissions I have created a named pipe using System.IO.Pipes . It worked fine until I had to run the program in admin mode. When elevated, the client can no longer connect (client is not running elevated). If I run the client as administrator, it connects fine so it looks like a permissions issue. I've been researching how to fix this and have been unsuccessful (I find dealing with Windows security mind boggling). System.IO.Pipes The first thing I changed was opening the pipe with access rights: pipeServer = new NamedPipeServerStream(pipeName, PipeDirection.InOut, 1, PipeTransmissionMode.Message, PipeOptions.Asynchronous, 0x4000, 0x400, null, ...