Hi zolyita,
As far as I know, we can't disable UAC programmatically, but we can force the program to run with elevated privileges from the start, so it doesn't prompt each time. This would have the program prompt only once and the user needs not to check it again.
To do this, we can create a manifest file and set this property:
<requestedExecutionLevel level="requireAdministrator">
You can get more information from:
http://msdn.microsoft.com/en-us/library/bb756929.aspx.
Let me know if this helps.
Aland Li
Please mark the replies as answers if they help and unmark if they don't. This can be beneficial to other community members reading the thread.