Network file executable

cpopham

Well-known member
Joined
Feb 18, 2004
Messages
273
Okay, I have a VB .NET small executable file that is on our network. I want everyone to just have a shortcut on their desktop instead of having a seperate copy on everyones desktop, but when I try this approach. I get an error message saying something about the .NET security. How can I change this to allow this one program to run fom the network. I even tried fully trust the intranet and it still would not work. Any ideas?

Also, I did not see any better places to post this question.

Thanks, Chester
 
can you tell us what the security message you have seen ?

something else ..

Is .net framework installed on the device on which the error message appears ?
 
Last edited by a moderator:
Yes .Net framework is one the machines, but no it is not on the Novell Server. Unfortumately, it is at work and I will not be back there till Monday.

Chester
 
Okay, this is what it says:

The application attempted to perform an operation not allowed by the security policy. The operation required the SecurityException. To grant this application the required permission please contact your system administrator, or use the Microsoft .NET security policy administration tool.

Request for permission type
System.Security.Permissions.FileIOPermission, mscorlib
Version=1.0.5000.0, Culture=neutral,
PublicKeyToken= failed.
 
Last edited by a moderator:
Navigate to Administrative Tools | Microsoft .NET 1.1 Configuration.

Navigate through the tree that appears:
My Computer | Runtime Security Policy | Machine | Code Groups | All_Code | LocalIntranet_Zone

Right click on "LocalIntranet_Zone". Select "Properties".

Select the "Permission Set" tab that is displayed in the "LocalIntranet_Zone Properties" dialog and set the permission set to "FullTrust".
 
Back
Top