How to deploy .NET application to be run from a network location

gayatrijp

Newcomer
Joined
Nov 28, 2003
Messages
1
How to deploy .NET application to be run from a network locationI have a .net application that runs fine if I download it to the local computer and run it, but fails if I try to run it from a mapped network drive. I have searched msdn with the following keywords but turn up no help on the subject:
configure .net application network
 
Manually:
Control Panel -> Administrative Tools -> Microsoft .NET Framework 1.1 Configuration

Expand "Runtime Security Policy" -> "Machine" -> "Code Groups" -> "All Code" - > "LocalIntranet_Zone"

Click "Edit Code Group Properties"
Click "Permission Set" tab
Change "Permission Set" to "Full Trust"

Automated via deployment:
I dunno :(
 
using CAS to modify security policy

You can write a simple installer to automate the security change. Basically you start a new process for caspol.exe, the security modification console app. w/ this app you use switches to add a new code group with the security addition you want.

If you need more explicit help, let me know. I can post snippits.

kevin
 
Back
Top