Help a n00b won't you?

pruebens

Regular
Joined
Nov 21, 2002
Messages
71
Okay I wasn't sure where to post this so if it's in the wrong forum, I apologize.

Anyway, I have an app that I want to actually install and run from a network location. Now this app accesses a SQL database which it does just fine if the app is installed locally.

I install the app and copy the installation directory to a shared access point on a server. When I try to run it I get some Security Exception error (after the first form (which is a search form)).

Is there a better way (there has to be) to run an app from a network location?

TIA.
 
You probably need the .NET Framework runtimes installed on
your local computer to run the program from the server, if they
aren't installed already.
 
By default, .NET programs have reduced permissions when they are run from a remote network share. You can change these permissions by going in to Control Panel -> Administrative Tools -> .NET Framework Configuration.
 
Back
Top