Exception Running App under NTD

  • Thread starter Thread starter Anil Kripalani
  • Start date Start date
A

Anil Kripalani

I have a .NET 1.1 Winforms application I am running via no touch deployment
(HTTP link from web app). On some workstations we get the following error
at launch: "Application has generated an exception that could not be
handled."

I have already increased Intranet trust to Full, and even signed the
assembly and granted it Full trust as well (via .NET wizards).

The app does work if the currently logged in user is given admin privileges
on the domain, so this issue seems to be permissions related. What else can
we do, short of making users admins, so they can run this application?

Thanks,
Krip
 
What is the type of the Exception? It is not SecurityException, right?
Even that you grant the assembly full trust CAS, it just means the CLR
allows the assembly to do everything, it does not mean the OS does. So
be sure the logged in user has sufficient right as well.
 
Back
Top