socket class in vista uac
-
hello, my program use socket class to find ip packet info. My project is related with lan monitoring. Is there any way to use this class without using manifest file when application install in admin account. i don't want to use manifest for "requireAdministrator" bcoz app didn't work when i added it in window startup prgram. tell me is this possible thank u for any help.
-
hello, my program use socket class to find ip packet info. My project is related with lan monitoring. Is there any way to use this class without using manifest file when application install in admin account. i don't want to use manifest for "requireAdministrator" bcoz app didn't work when i added it in window startup prgram. tell me is this possible thank u for any help.
Monitoring network traffic (i.e.: using WinPCap) always requires administrivate permissions. I can't think of a situation where it wouldn't. Put the admin manifest in your project. If it's in the users Startup folder, at worst, it'll ask for permission to run when they login.
A guide to posting questions on CodeProject[^]
Dave Kreskowiak -
Monitoring network traffic (i.e.: using WinPCap) always requires administrivate permissions. I can't think of a situation where it wouldn't. Put the admin manifest in your project. If it's in the users Startup folder, at worst, it'll ask for permission to run when they login.
A guide to posting questions on CodeProject[^]
Dave Kreskowiaki also think that..... but i m not confirm. thank you :)
-
Monitoring network traffic (i.e.: using WinPCap) always requires administrivate permissions. I can't think of a situation where it wouldn't. Put the admin manifest in your project. If it's in the users Startup folder, at worst, it'll ask for permission to run when they login.
A guide to posting questions on CodeProject[^]
Dave KreskowiakIf the WinPCap service is installed and the service is set to SERVICE_AUTO_START then the application will not require administrator credentials. However this is probably irrelevant if the OP is simply putting the network device in promiscuous mode.