.NET Framework Configuration Tool
New version of .NET Framework comes with different tools that can be found by opening up Microsoft Management Console snap-in. There are several areas where this tool is the most useful. Specifically, it helps to manage assemblies in GAC, manage code access security policy, and manage remoting services. In order to open up this tool we need to click on Mscorcfg.msc which is stored inside our framework folder.
- Manage The Assembly Cache – we can view assemblies and add assemblies to GAC.
- Manage Configured Assemblies – we can view list of configurable assemblies and we can configure assemblies from the list.
- Configure Code Access Security Policy – all code groups must have unique names. My_Computer_Zone or Internet_Zone are examples of code groups.
- Adjust Remoting Services.
- Manage Individual Applications.
In summary, we can use configuration tool to manage the default configuration of an application, manage custom code groups by creating them, create custom permission sets, and administer export policies.