The Temple of Fu

code, systems and games

HTTP 401.3 – Access denied by ACL on resource Internet Information Services – Metabase Acess Denied

leave a comment »

So you created a virtual directory for a website and get that error eh?

Right click the folder itself and under the security tab add the Everyone group read and execute permissions. Now you can see it.

Now if you get this error as well

Failed to access IIS metabase.
I did after installing IIS for the first time, and after updating .NET versions also.
Aspnet_regiis.exe is a command line utility that installs ASP.NET features to Internet Information Server (IIS). You find it in your c:\windows\microsoft.net\framework\v#.### directory. Installable components include such things as:

* An ISAPI Filter – used by IIS to direct incoming requests to the appropriate asp.net runtime engine based on the extension (e.g. .asp, .aspx)
* Script Maps – configuration settings in each IIS node that specify how various extensions are processed.
* Client Validation Scripts – /aspnet_client Javascripts that provide dynamic behavior to web form validation controls
* Options for encrypting asp.net configuration (*.config) files.
* etc
To uninstall and then reinstall using aspnet_regiis open a command prompt and descend into the directory for the version of .NET you are using (remember that 3.5 uses 2.0* as of this writing anyways) and unregister and then reregister the .NET Framework with IIS

aspnet_regiis.exe -u

aspnet_regiis.exe -i

Hope that helps.

Written by lordfu

February 4, 2010 at 3:44 am

Leave a comment