How to enable directory browsiing in IIS7?
How I enable directory browsing in IIS7?
MS technet says this can be done in the IIS console:
Open IIS Manager and navigate to the level you want to manage.
In Features View, double-click Directory Browsing.
In the Actions pane, click Enable if the Directory Browsing feature is disabled and you want to enable it. Or, click Disable if the Directory Browsing feature is enabled and you want to disable it.
http://technet.microsoft.com/en-us/library/cc731109%28WS.10%29.aspx
However, my IIS console doesn't have the Directory Browsing option mentioned in Step 2.
How can this option be made available.
Note, this is for a static HTML site, so I don't have any web.config or ASPX files.
Solution 1:
That's because 'Directory Browsing' is one of the Role services you have to specifically install. You do that from Server Manager -> Roles -> Web Services -> Add Role Services. Pick 'Directory Browsing' in the wizard. Then you should have the options specified in the KB article.
Solution 2:
And for the command line nerds out there, to do this without the GUIs:
servermanagercmd -install Web-Dir-Browsing
appcmd set config (url) /section:directoryBrowse /enabled:true
where (url) is the name of your web site and optional path to virtual directory, like "Default Web Site/Pictures". You can list web sites by typing
appcmd list site
Solution 3:
This is in case anyone needs help:
- Go to Control Panel.
- turn on off windows features
- Select World Wide Web Services
- Common HTTP Features
- Select Directory Browsing