sashoalm
sashoalm

Reputation: 79615

Connecting to named pipe in Windows, different user accounts

In Windows, is it possible for a program running under a limited user account to connect to a named pipe created by a program running under Administrator account or running as a Windows Service?

Or will I get access denied?

Upvotes: 7

Views: 2386

Answers (1)

David Heffernan
David Heffernan

Reputation: 613302

It depends on the security attributes used to create the pipe. The pipe creator has to use security attributes that are permissive enough to let the limited user gain access to the pipe.

Upvotes: 4

Related Questions