When I try to run a .NET assembly (boo.exe) from a network share (mapped to a drive), it fails since it\'s only partially trusted:
boo.exe
Unhandled Exc
I resolved the problem by using caspol as instructed in Johnny Hughes' blog post Running a .Net application from a network share:
caspol -addgroup 1.2 -url file:///H:/* FullTrust
It seems the .NET Configuration GUI for managing the policies simply doesn't work.