WTSVirtualChannelOpen

[DllImport("wtsapi32.dll", SetLastError = true)]
public static extern IntPtr WTSVirtualChannelOpen(
   IntPtr hServer,
   int SessionId,
   string pVirtualName
);

Microsoft documentation: Link

Last updated