A number of guides on setting the ASP.NET machineKey
via the IIS manager tell me to open up the "Machine Key" section in the Feature View, for example:
My IIS install doesn't have this icon. How do I add it? I've had a good look through the "Add Role Services" but didn't find anything that seemed relevant.
Here's what the list looks like on my server when I select the machine in the list on the left:
I had to go to 'Turn windows features on or off' in Control Panel -> Programs and Features, and enable ASP .NET under World Wide Web Services.
Check the checkbox for Internet Information Services -> World Wide Web Services -> Application Development Features -> ASP.NET.
The first thing to check is the configuration file for the IIS Manager at:
%systemroot%\System32\inetsrv\config\administration.config
Under the
moduleProviders
node in theASP.NET Modules
section there should be an entry like this:The version number may be 8.0.0.0, 7.5.0.0 or 7.0.0.0 depending on your OS.
If that's there, you can look at the actual file providing this feature, in the case of 2008 R2 it is at:
If that's always there, I would start up Process Monitor and filter for
than start IIS manager and review the Result column in Process Monitor, you should get a bunch of entries with
Success
,Buffer Overflow
andFile Locked with only readers
I really have no idea why the icon is not showing up on your system, but that's how I would look for a problem.
Uninstall ASP.net V4.0 and re-install. This fixed for me