I've got a utility i'm trying to write that makes some modifications to the system registry, as well as opening a database stored on a network share.
This utility is going to be used by multiple people, and thus is going to reside on a server. Users will then browse to the server and run the app. The problem is the app throws a SecurityException when it runs. Not only for the registry editing, but also the database searching.
I'm fairly new to .NET, so I dont have a lot of experience with setting security permissions. If someone would be kind enough to walk me through a solution to this... i'd really appreciate it
P.S.
I already know how exceptions work and how to trap them with try/catch... just need to know how to fix it in the catch statement
Thanks again!!
This utility is going to be used by multiple people, and thus is going to reside on a server. Users will then browse to the server and run the app. The problem is the app throws a SecurityException when it runs. Not only for the registry editing, but also the database searching.
I'm fairly new to .NET, so I dont have a lot of experience with setting security permissions. If someone would be kind enough to walk me through a solution to this... i'd really appreciate it
P.S.
I already know how exceptions work and how to trap them with try/catch... just need to know how to fix it in the catch statement
Thanks again!!