services in Windows Server 2003 OS
-
Hi friends, There is problem in accessing mapped drives or remote machine from my vc++ service in Windows Server 2003 OS for example when I execute my program as services it fails but I am not facing any problem if I execute it as standalone program. I am having admin privilege. Below is the few of API I tried (where is S: is mapped drive in same domain) API: CreateFile and GetFileAttributes("S:\hello.txt") Thanks, Thomas
-
Hi friends, There is problem in accessing mapped drives or remote machine from my vc++ service in Windows Server 2003 OS for example when I execute my program as services it fails but I am not facing any problem if I execute it as standalone program. I am having admin privilege. Below is the few of API I tried (where is S: is mapped drive in same domain) API: CreateFile and GetFileAttributes("S:\hello.txt") Thanks, Thomas
By default, access to the root directory from a service user is denied. It is suggested to use a standalone proxy program to perform such operations. My blogs: http://blog.joycode.com/jiangsheng http://blog.csdn.net/jiangsheng http://bloglines.com/public/jiangsheng Command what is yours Conquer what is not ---Kane
-
By default, access to the root directory from a service user is denied. It is suggested to use a standalone proxy program to perform such operations. My blogs: http://blog.joycode.com/jiangsheng http://blog.csdn.net/jiangsheng http://bloglines.com/public/jiangsheng Command what is yours Conquer what is not ---Kane
is there any way to use it as service instead of standalone
-
is there any way to use it as service instead of standalone
I tried with Admin user, local System account and tried direct path also like "\\server\public_data\hello.txt" but no use. It has problem when running as a service in win2003k and as standalone no problem. do anyone know how to give more permissions to services in win2003k os?