Speaking of WinRT, you really cannot create a named pipe.
Speaking of a Windows 8 desktop application running under the AppContainer integrity level, you can create a named pipe using the usual WinAPI functions. The problem is by default, only applications with the same AppContainer ID can access it (in other words, only instances of your own application). But in fact, if you have a process with a high or medium integrity level - from this process you can create a channel and lower its integrity level, therefore applications from AppContainer can use it.
Take a look at the sample here: http://msdn.microsoft.com/en-us/library/windows/desktop/hh448493(v=vs.85).aspx
Moreover - from a desktop application with a high level of integrity, you can use dll injection to inject the DLL into the WinRT application and again - use WinAPI to create the channels. Thus, in WinRT it is forbidden to use not in the OS design, but only because of the lack of interfaces in WinRT.
source share