How to get permission for remote app to execute?

  • Thread starter Thread starter Terry Olsen
  • Start date Start date
T

Terry Olsen

I've got a small pc audit app sitting on a server. I'd like to create a
shortcut to it on each PC on the network. But I get a permission error
when trying to run the program unless I copy it down to the local hard
drive.

How can my app get permission to execute on a pc when launched from a
remote directory?
 
You need to adjust the security.

Open the Control Panel
Open Administrative tools
Open Microsoft .Net Framework 1.1 Wizards
Click Adjust .Net Security
click Next
Select Local Intranet
Change the level of trust to Full
click next
click Finish

--


HTH

Éric Moreau, MCSD, Visual Developer - Visual Basic MVP
(http://aspnet2.com/mvp.ashx?EricMoreau)
Conseiller Principal / Senior Consultant
Concept S2i inc. (www.s2i.com)
 
Terry,

Terry Olsen said:
How can my app get permission to execute on a pc when launched from a
remote directory?

In addition to the other replies, you could deploy a security policy:

..NET Framework Enterprise Security Policy Administration and Deployment
<URL:http://msdn.microsoft.com/library/en-us/dnnetsec/html/entsecpoladmin.asp>

..NET Framework Developer's Guide - Deploying Security Policy
<URL:http://msdn.microsoft.com/library/en-us/cpguide/html/cpcondeployingsecuritypolicy.asp>

HOW TO: Build and Deploy a .NET Security Policy Deployment Package
<URL:http://support.microsoft.com/?scid=kb;EN-US;815173>
 
Back
Top