Why does my .NET application crash when run from a network drive?

It indeed has to do with the fact the apps on a network location are less trusted then on your local hdd (due to the default policy of the .NET framework).

If I’m not mistaken Microsoft finally corrected this annoyance in .NET 3.5 SP1 (after a lot of developers complaining).

I google’d it: .NET Framework 3.5 SP1 Allows managed code to be launched from a network share!

Leave a Comment