Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where is the .Net Configuration Tool (mscorcfg.msc) in Windows 7?

I am having trouble running a website on my new Windows 7 machine, and I think the issue is solved by setting the runtime security policy to Full Trust, however I can't find that tool anywhere on my machine

I can't find it in Control Panel, the %systemroot%\Microsoft.Net\Framework\ folders doesn't have it, and I can't even find it in the Windows 7 SDK. Can someone help me find this setting before I go insane?

like image 244
Rachel Avatar asked Oct 25 '11 18:10

Rachel


2 Answers

According to MSDN mscorcfg was removed with the .NET framework 4.0.

You might try to install an older .NET Framework redist to get it back..

Installing .NET Framework 2.0 SDK should bring the file back:

In the .NET Framework versions 1.0 and 1.1, Mscorcfg.msc is installed with the NET Framework redistributable package. In the .NET Framework 2.0 and later versions, Mscorcfg.msc is installed with the .NET Framework 2.0 Software Development Kit (SDK).

Regarding your problem, you might want to have a look at the security changes made in the .NET framework 4.0

like image 136
Florian Greinacher Avatar answered Oct 31 '22 23:10

Florian Greinacher


You have to download the .NET Framework 2.0 Software Development Kit (SDK) (x86)

For those who cannot execute the setup.exe (my case on Windows 10 1909) :

Just extract it with 7zip and launch install.exe. Then, the utility should be located here :

C:\Program Files (x86)\Microsoft.NET\SDK\v2.0\Bin\mscorcfg.msc

enter image description here

like image 43
Keytrap Avatar answered Oct 31 '22 22:10

Keytrap