The configuration tool is in the SDK for the .NET framework and with it is the ability to make the changes you require and then export the changes out as an MSI file for installation elsewhere in the enterprise.
Our problem was due to the increased security that .NET imposes by default, no working from network drives. Easily fixed with the .NET framework configuration tools via the MMC (mscorcfg.msc). Pull up the MMC with the .NET Framework Configuration snap-in.
- Navigate My Computer - Runtime Security Policy - Machine - Code Groups - All_Code - LocalIntranet_Zone
- Right-click and click 'New...'
- Enter a name and description
- For the file location in our case a mapped network drive G: we use file://G:\* The * indicates all subfolders
- Next step select 'Full Trust' from the drop down list
- Retstart your development application
Now to export it as an MSI:
- Right-click on the 'Runtime Security Policy' subtree
- Left-click 'Create Deployment Package'
- Follow the wizard to create your MSI package
Thats it in a nutshell, it certainly saves installing a 350MB download on every PC that wants to run a development tool over the network.
No comments:
Post a Comment