I'm trying to open \\.\TCP
device directly,
CreateFileA ("\\\\.\\Tcp",
FILE_SHARE_WRITE|FILE_SHARE_READ,
0, None, OPEN_EXISTING, 0, None)
With a normal user that does not belong to the administrators group, it fails with Access denied
(GetLastError() returned 5)
So, I'm wondering what privilege is required? Adding that user to administrators group seems to be too much.