Allowing .NET code to run from a network share

S

Shacker

Hi everyone,

I understand that there's no way to run .NET compiled code from a
network share without security modification but here's my issue - the
code needs to run on a number of workstations (50 or more) and having
each one modify their individual workstations would be an
administrative concern (the company is rather large and individual
workstation changes are frowned upon). Many of the workstations are
locked down, anyway.

Instead of using CASPOL or the .NET Configuration MMC, can the security
be granted on the server side (i.e., the server where the assemblies
reside)? This way we don't have to touch ANY workstation and
administration is easy.

Thanks in advance!

- Shacker
 
P

Paul Clement

¤ Hi everyone,
¤
¤ I understand that there's no way to run .NET compiled code from a
¤ network share without security modification but here's my issue - the
¤ code needs to run on a number of workstations (50 or more) and having
¤ each one modify their individual workstations would be an
¤ administrative concern (the company is rather large and individual
¤ workstation changes are frowned upon). Many of the workstations are
¤ locked down, anyway.
¤
¤ Instead of using CASPOL or the .NET Configuration MMC, can the security
¤ be granted on the server side (i.e., the server where the assemblies
¤ reside)? This way we don't have to touch ANY workstation and
¤ administration is easy.

No, security cannot be granted from the server side because the assembly executes on the client.

The following thread has a code method if that is of any help:

http://makeashorterlink.com/?B227121AB


Paul
~~~~
Microsoft MVP (Visual Basic)
 
S

Shacker

Paul,

I appreciate your reply! I went through the code and tried it on a
couple of assemblies and so far so good! The assemblies are written in
C# so I did some minor language conversion.

Thanks again for your assistance!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top