{"id":21241,"date":"2025-11-04T14:01:23","date_gmt":"2025-11-04T14:01:23","guid":{"rendered":"https:\/\/www.webhosting.uk.com\/kb\/?p=21241"},"modified":"2026-06-08T10:54:27","modified_gmt":"2026-06-08T10:54:27","slug":"how-to-enable-directory-browsing-in-iis","status":"publish","type":"post","link":"https:\/\/www.webhosting.uk.com\/kb\/how-to-enable-directory-browsing-in-iis\/","title":{"rendered":"How to Enable Directory Browsing in IIS"},"content":{"rendered":"<p>When using Internet Information Services (IIS) to host websites on a Windows server, you might want to enable users to browse a directory\u2019s contents in the absence of a default document (such as index.html or default.aspx).<\/p>\n<p>This feature, known as Directory Browsing, displays a list of files and folders within a web directory directly in the browser.<\/p>\n<p>In this guide, you will learn how to enable Directory Browsing in IIS using both the IIS Manager GUI and Command Line (PowerShell) methods.<\/p>\n<div class=\"more-tab-content\">\n<h2><strong>Table of Contents<\/strong><\/h2>\n<ol>\n<li><a href=\"#browsing\">What Is Directory Browsing in IIS?<\/a><\/li>\n<li><a href=\"#directory\">Why Enable Directory Browsing?<\/a><\/li>\n<li><a href=\"#prerequisites\">Prerequisites<\/a><\/li>\n<li><a href=\"#manager\">Method 1: Enable Directory Browsing Using IIS Manager<\/a><\/li>\n<li><a href=\"#command\">Method 2: Enable Directory Browsing via Command Line (AppCmd \/ PowerShell)<\/a><a name=\"browsing\"><\/a><\/li>\n<li><a href=\"#considerations\">Security Considerations<\/a><\/li>\n<li><a href=\"#conclusion\">Conclusion<\/a><\/li>\n<\/ol>\n<\/div>\n<h3><strong>What Is Directory Browsing in IIS?<\/strong><\/h3>\n<ol>\n<li>Directory Browsing is an IIS feature that lets users view the contents of a web directory directly through their browser when no default page is found.<\/li>\n<li>For example, if a user visits <a href=\"https:\/\/www.iana.org\/help\/example-domains\">http:\/\/example.com\/downloads\/<\/a> and no index.html file exists, IIS can display a list of available files like .zip, .pdf, or .txt.<\/li>\n<li>Without <a name=\"directory\"><\/a>Directory Browsing enabled, users would see an HTTP 403 \u201cForbidden\u201d error instead.<\/li>\n<\/ol>\n<h3><strong>Why Enable Directory Browsing?<\/strong><\/h3>\n<p>You might enable this feature when:<\/p>\n<ul>\n<li>You need to allow access to downloadable files (e.g., software builds, documents, logs).<\/li>\n<li>You are managing a development or staging server and want to inspect directory contents easily.<\/li>\n<li>You want to test configurations or permissions during troubleshooting.<\/li>\n<\/ul>\n<p>Note: Enabling <a name=\"prerequisites\"><\/a>Directory Browsing in production environments is not recommended unless strictly required, as it can expose sensitive files.<\/p>\n<h3><strong>Prerequisites<\/strong><\/h3>\n<p>Before enabling Directory Browsing:<\/p>\n<ul>\n<li>Ensure IIS is installed on your Windows Server.<\/li>\n<li>You have Administrator privileges.<\/li>\n<li>You know the <a name=\"manager\"><\/a>site or directory path where you want to enable browsing.<\/li>\n<\/ul>\n<h3><strong>Method 1: Enable Directory Browsing Using IIS Manager<\/strong><\/h3>\n<ol>\n<li>Press <strong>Windows + R<\/strong>, type <strong>inetmgr<\/strong>, and press <strong>Enter<\/strong> to open IIS Manager.<\/li>\n<li>In the Connections pane, expand the server\u2019s name and select your website or directory.<\/li>\n<li>In the Features View, double-click Directory Browsing.<\/li>\n<li>In the Actions pane (right side), click Enable.<\/li>\n<li>Optionally, click Directory Browsing Settings to choose which details (like date, size, or extension) are shown.<\/li>\n<\/ol>\n<p>Verification:<br \/>\nOpen a browser and navigate to your directory <a name=\"command\"><\/a>URL (e.g., http:\/\/yourdomain.com\/folder\/).<br \/>\nYou should now see a list of files and subfolders instead of a 403 error.<\/p>\n<h3><strong>Method 2: Enable Directory Browsing via Command Line<\/strong><\/h3>\n<p>If you prefer using the command line, you can enable directory browsing with AppCmd or PowerShell.<\/p>\n<ol>\n<li><strong>Using AppCmd<\/strong>\n<ol>\n<li>Run the following command in Command Prompt (as Administrator):\n<pre>appcmd set config \/section:directoryBrowse \/enabled:true<\/pre>\n<p>This enables directory browsing globally.<\/li>\n<li>To enable it for a specific site, use:\n<pre>appcmd set config \"Default Web Site\" \/section:directoryBrowse \/enabled:true<\/pre>\n<\/li>\n<\/ol>\n<\/li>\n<li><strong>Using PowerShell<\/strong>\n<ol>\n<li>Alternatively, use PowerShell to modify the IIS configuration:\n<pre>Import-Module WebAdministration\r\nSet-ItemProperty \u2018IIS:\\Sites\\Default Web Site\u2019 -Name\r\ndirectoryBrowse.enabled -Value $true<\/pre>\n<\/li>\n<li>You can <a name=\"considerations\"><\/a>replace <strong>\u201cDefault Web Site\u201d<\/strong> with the name of your target website.<\/li>\n<\/ol>\n<\/li>\n<\/ol>\n<h3><strong>Security Considerations<\/strong><\/h3>\n<p>While Directory Browsing is useful, it can also reveal sensitive directory structures and files to the public.<br \/>\nTo enhance security:<\/p>\n<ul>\n<li>Enable it only for specific folders that require public access.<\/li>\n<li>Avoid enabling it on production servers or system directories.<\/li>\n<li>Use web.config authorisation rules to restrict access to certain users or IPs.<\/li>\n<li>Regularly<a name=\"conclusion\"><\/a> monitor and remove temporary directories exposed through browsing.<\/li>\n<\/ul>\n<h3><strong>Conclusion<\/strong><\/h3>\n<p>Enabling Directory Browsing in IIS is a straightforward process that can be done via IIS Manager or command-line tools.<\/p>\n<p>It\u2019s helpful for testing, file sharing, or development purposes, but should be used with caution in live environments.<\/p>\n<p>For managed hosting users, if you encounter issues or need help configuring IIS settings, contact your hosting support team for assistance.<\/p>\n<div style=\"background: #E6F0FF; padding: 15px; border-left: 4px solid #0047BA; margin: 20px 0;\"><strong>Managing IIS settings and website configurations?<\/strong><br \/>\nA <a href=\"https:\/\/www.webhosting.uk.com\/windows-vps\">Windows VPS Hosting<\/a> solution provides administrator access and full control over IIS, applications and server settings.<\/div>\n<p style=\"text-align: center;\"><em><strong>Next, secure your IIS setup &#8211; learn <a href=\"https:\/\/www.webhosting.uk.com\/kb\/how-to-configure-ssl-binding-in-iis\/\"> How to Configure SSL Binding in IIS<\/a><\/strong><\/em><\/p>\n","protected":false},"excerpt":{"rendered":"<p>When using Internet Information Services (IIS) to host websites on a Windows server, you might want to enable users to browse a directory\u2019s contents in the absence of a default&hellip;<\/p>\n<p><a href=\"https:\/\/www.webhosting.uk.com\/kb\/how-to-enable-directory-browsing-in-iis\/\" class=\"more-link\">Read More<\/a><\/p>\n<div class='heateorSssClear'><\/div><div  class='heateor_sss_sharing_container heateor_sss_horizontal_sharing' data-heateor-sss-href='https:\/\/www.webhosting.uk.com\/kb\/how-to-enable-directory-browsing-in-iis\/'><div class='heateor_sss_sharing_title' style=\"font-weight:bold\" >Spread the love<\/div><div class=\"heateor_sss_sharing_ul\"><a aria-label=\"Facebook\" class=\"heateor_sss_facebook\" href=\"https:\/\/www.facebook.com\/sharer\/sharer.php?u=https%3A%2F%2Fwww.webhosting.uk.com%2Fkb%2Fhow-to-enable-directory-browsing-in-iis%2F\" title=\"Facebook\" rel=\"nofollow noopener\" target=\"_blank\" style=\"font-size:32px!important;box-shadow:none;display:inline-block;vertical-align:middle\"><span class=\"heateor_sss_svg\" style=\"background-color:#0765FE;width:40px;height:40px;display:inline-block;opacity:1;float:left;font-size:32px;box-shadow:none;display:inline-block;font-size:16px;padding:0 4px;vertical-align:middle;background-repeat:repeat;overflow:hidden;padding:0;cursor:pointer;box-sizing:content-box\"><svg style=\"display:block;\" focusable=\"false\" aria-hidden=\"true\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"100%\" height=\"100%\" viewBox=\"0 0 32 32\"><path fill=\"#fff\" d=\"M28 16c0-6.627-5.373-12-12-12S4 9.373 4 16c0 5.628 3.875 10.35 9.101 11.647v-7.98h-2.474V16H13.1v-1.58c0-4.085 1.849-5.978 5.859-5.978.76 0 2.072.15 2.608.298v3.325c-.283-.03-.775-.045-1.386-.045-1.967 0-2.728.745-2.728 2.683V16h3.92l-.673 3.667h-3.247v8.245C23.395 27.195 28 22.135 28 16Z\"><\/path><\/svg><\/span><\/a><a aria-label=\"X\" class=\"heateor_sss_button_x\" href=\"https:\/\/twitter.com\/intent\/tweet?text=How%20to%20Enable%20Directory%20Browsing%20in%20IIS%20%28Step-by-Step%20Guide%29&url=https%3A%2F%2Fwww.webhosting.uk.com%2Fkb%2Fhow-to-enable-directory-browsing-in-iis%2F\" title=\"X\" rel=\"nofollow noopener\" target=\"_blank\" style=\"font-size:32px!important;box-shadow:none;display:inline-block;vertical-align:middle\"><span class=\"heateor_sss_svg heateor_sss_s__default heateor_sss_s_x\" style=\"background-color:#2a2a2a;width:40px;height:40px;display:inline-block;opacity:1;float:left;font-size:32px;box-shadow:none;display:inline-block;font-size:16px;padding:0 4px;vertical-align:middle;background-repeat:repeat;overflow:hidden;padding:0;cursor:pointer;box-sizing:content-box\"><svg width=\"100%\" height=\"100%\" style=\"display:block;\" focusable=\"false\" aria-hidden=\"true\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 32 32\"><path fill=\"#fff\" d=\"M21.751 7h3.067l-6.7 7.658L26 25.078h-6.172l-4.833-6.32-5.531 6.32h-3.07l7.167-8.19L6 7h6.328l4.37 5.777L21.75 7Zm-1.076 16.242h1.7L11.404 8.74H9.58l11.094 14.503Z\"><\/path><\/svg><\/span><\/a><a aria-label=\"Linkedin\" class=\"heateor_sss_button_linkedin\" href=\"https:\/\/www.linkedin.com\/sharing\/share-offsite\/?url=https%3A%2F%2Fwww.webhosting.uk.com%2Fkb%2Fhow-to-enable-directory-browsing-in-iis%2F\" title=\"Linkedin\" rel=\"nofollow noopener\" target=\"_blank\" style=\"font-size:32px!important;box-shadow:none;display:inline-block;vertical-align:middle\"><span class=\"heateor_sss_svg heateor_sss_s__default heateor_sss_s_linkedin\" style=\"background-color:#0077b5;width:40px;height:40px;display:inline-block;opacity:1;float:left;font-size:32px;box-shadow:none;display:inline-block;font-size:16px;padding:0 4px;vertical-align:middle;background-repeat:repeat;overflow:hidden;padding:0;cursor:pointer;box-sizing:content-box\"><svg style=\"display:block;\" focusable=\"false\" aria-hidden=\"true\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"100%\" height=\"100%\" viewBox=\"0 0 32 32\"><path d=\"M6.227 12.61h4.19v13.48h-4.19V12.61zm2.095-6.7a2.43 2.43 0 0 1 0 4.86c-1.344 0-2.428-1.09-2.428-2.43s1.084-2.43 2.428-2.43m4.72 6.7h4.02v1.84h.058c.56-1.058 1.927-2.176 3.965-2.176 4.238 0 5.02 2.792 5.02 6.42v7.395h-4.183v-6.56c0-1.564-.03-3.574-2.178-3.574-2.18 0-2.514 1.7-2.514 3.46v6.668h-4.187V12.61z\" fill=\"#fff\"><\/path><\/svg><\/span><\/a><\/div><div class=\"heateorSssClear\"><\/div><\/div><div class='heateorSssClear'><\/div>","protected":false},"author":28,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1409],"tags":[205],"class_list":["post-21241","post","type-post","status-publish","format-standard","hentry","category-server","tag-servers"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.7 (Yoast SEO v27.7) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>How to Enable Directory Browsing in IIS (Step-by-Step Guide)<\/title>\n<meta name=\"description\" content=\"Learn how to enable Directory Browsing in IIS using IIS Manager or Command Prompt. Follow this step-by-step guide to view and manage website.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.webhosting.uk.com\/kb\/how-to-enable-directory-browsing-in-iis\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Enable Directory Browsing in IIS (Step-by-Step Guide)\" \/>\n<meta property=\"og:description\" content=\"Learn how to enable Directory Browsing in IIS using IIS Manager or Command Prompt. Follow this step-by-step guide to view and manage website.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.webhosting.uk.com\/kb\/how-to-enable-directory-browsing-in-iis\/\" \/>\n<meta property=\"og:site_name\" content=\"Webhosting UK Knowledge Base\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webhostingukcom\" \/>\n<meta property=\"article:published_time\" content=\"2025-11-04T14:01:23+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-06-08T10:54:27+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.webhosting.uk.com\/kb\/wp-content\/uploads\/2023\/08\/WHUK-logo-1.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"628\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Victor G\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:title\" content=\"How to Enable Directory Browsing in IIS (Step-by-Step Guide)\" \/>\n<meta name=\"twitter:description\" content=\"Learn how to enable Directory Browsing in IIS using IIS Manager or Command Prompt. Follow this step-by-step guide to view and manage website.\" \/>\n<meta name=\"twitter:creator\" content=\"@WebhostingUKcom\" \/>\n<meta name=\"twitter:site\" content=\"@WebhostingUKcom\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.webhosting.uk.com\\\/kb\\\/how-to-enable-directory-browsing-in-iis\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.webhosting.uk.com\\\/kb\\\/how-to-enable-directory-browsing-in-iis\\\/\"},\"author\":{\"name\":\"Victor G\",\"@id\":\"https:\\\/\\\/www.webhosting.uk.com\\\/kb\\\/#\\\/schema\\\/person\\\/ea067684eae84c2b8b49a81c69407297\"},\"headline\":\"How to Enable Directory Browsing in IIS\",\"datePublished\":\"2025-11-04T14:01:23+00:00\",\"dateModified\":\"2026-06-08T10:54:27+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.webhosting.uk.com\\\/kb\\\/how-to-enable-directory-browsing-in-iis\\\/\"},\"wordCount\":619,\"publisher\":{\"@id\":\"https:\\\/\\\/www.webhosting.uk.com\\\/kb\\\/#organization\"},\"keywords\":[\"Servers\"],\"articleSection\":[\"Servers, Hosting &amp; Email\"],\"inLanguage\":\"en-GB\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.webhosting.uk.com\\\/kb\\\/how-to-enable-directory-browsing-in-iis\\\/\",\"url\":\"https:\\\/\\\/www.webhosting.uk.com\\\/kb\\\/how-to-enable-directory-browsing-in-iis\\\/\",\"name\":\"How to Enable Directory Browsing in IIS (Step-by-Step Guide)\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.webhosting.uk.com\\\/kb\\\/#website\"},\"datePublished\":\"2025-11-04T14:01:23+00:00\",\"dateModified\":\"2026-06-08T10:54:27+00:00\",\"description\":\"Learn how to enable Directory Browsing in IIS using IIS Manager or Command Prompt. Follow this step-by-step guide to view and manage website.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.webhosting.uk.com\\\/kb\\\/how-to-enable-directory-browsing-in-iis\\\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.webhosting.uk.com\\\/kb\\\/how-to-enable-directory-browsing-in-iis\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.webhosting.uk.com\\\/kb\\\/how-to-enable-directory-browsing-in-iis\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.webhosting.uk.com\\\/kb\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Enable Directory Browsing in IIS\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.webhosting.uk.com\\\/kb\\\/#website\",\"url\":\"https:\\\/\\\/www.webhosting.uk.com\\\/kb\\\/\",\"name\":\"Webhosting UK Knowledge Base\",\"description\":\"Expert Insights on Hosting, Development, Security, Marketing, and SEO\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.webhosting.uk.com\\\/kb\\\/#organization\"},\"alternateName\":\"WHUK\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.webhosting.uk.com\\\/kb\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.webhosting.uk.com\\\/kb\\\/#organization\",\"name\":\"Webhosting UK\",\"alternateName\":\"WHUK\",\"url\":\"https:\\\/\\\/www.webhosting.uk.com\\\/kb\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/www.webhosting.uk.com\\\/kb\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.webhosting.uk.com\\\/kb\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/WHUK-logo-1.png\",\"contentUrl\":\"https:\\\/\\\/www.webhosting.uk.com\\\/kb\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/WHUK-logo-1.png\",\"width\":1200,\"height\":628,\"caption\":\"Webhosting UK\"},\"image\":{\"@id\":\"https:\\\/\\\/www.webhosting.uk.com\\\/kb\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/webhostingukcom\",\"https:\\\/\\\/x.com\\\/WebhostingUKcom\",\"https:\\\/\\\/www.youtube.com\\\/c\\\/webhostinguk\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/webhosting-uk-com-ltd\\\/\",\"https:\\\/\\\/www.instagram.com\\\/webhosting_uk\\\/\",\"https:\\\/\\\/www.tiktok.com\\\/@webhostinguk\"],\"description\":\"Fast, reliable, and cost-effective website hosting services with Webhosting UK. Committed to providing you secure support around the clock.\",\"email\":\"sales@webhosting.uk.com\",\"telephone\":\"0800 862 0890\",\"legalName\":\"Webhosting UK\",\"foundingDate\":\"2001-02-07\",\"numberOfEmployees\":{\"@type\":\"QuantitativeValue\",\"minValue\":\"51\",\"maxValue\":\"200\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.webhosting.uk.com\\\/kb\\\/#\\\/schema\\\/person\\\/ea067684eae84c2b8b49a81c69407297\",\"name\":\"Victor G\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/9bf0713adcbaded4878508c93d93927ecbfa4f74548fd9bcee41478d8768bd66?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/9bf0713adcbaded4878508c93d93927ecbfa4f74548fd9bcee41478d8768bd66?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/9bf0713adcbaded4878508c93d93927ecbfa4f74548fd9bcee41478d8768bd66?s=96&d=mm&r=g\",\"caption\":\"Victor G\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How to Enable Directory Browsing in IIS (Step-by-Step Guide)","description":"Learn how to enable Directory Browsing in IIS using IIS Manager or Command Prompt. Follow this step-by-step guide to view and manage website.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.webhosting.uk.com\/kb\/how-to-enable-directory-browsing-in-iis\/","og_locale":"en_GB","og_type":"article","og_title":"How to Enable Directory Browsing in IIS (Step-by-Step Guide)","og_description":"Learn how to enable Directory Browsing in IIS using IIS Manager or Command Prompt. Follow this step-by-step guide to view and manage website.","og_url":"https:\/\/www.webhosting.uk.com\/kb\/how-to-enable-directory-browsing-in-iis\/","og_site_name":"Webhosting UK Knowledge Base","article_publisher":"https:\/\/www.facebook.com\/webhostingukcom","article_published_time":"2025-11-04T14:01:23+00:00","article_modified_time":"2026-06-08T10:54:27+00:00","og_image":[{"width":1200,"height":628,"url":"https:\/\/www.webhosting.uk.com\/kb\/wp-content\/uploads\/2023\/08\/WHUK-logo-1.png","type":"image\/png"}],"author":"Victor G","twitter_card":"summary_large_image","twitter_title":"How to Enable Directory Browsing in IIS (Step-by-Step Guide)","twitter_description":"Learn how to enable Directory Browsing in IIS using IIS Manager or Command Prompt. Follow this step-by-step guide to view and manage website.","twitter_creator":"@WebhostingUKcom","twitter_site":"@WebhostingUKcom","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.webhosting.uk.com\/kb\/how-to-enable-directory-browsing-in-iis\/#article","isPartOf":{"@id":"https:\/\/www.webhosting.uk.com\/kb\/how-to-enable-directory-browsing-in-iis\/"},"author":{"name":"Victor G","@id":"https:\/\/www.webhosting.uk.com\/kb\/#\/schema\/person\/ea067684eae84c2b8b49a81c69407297"},"headline":"How to Enable Directory Browsing in IIS","datePublished":"2025-11-04T14:01:23+00:00","dateModified":"2026-06-08T10:54:27+00:00","mainEntityOfPage":{"@id":"https:\/\/www.webhosting.uk.com\/kb\/how-to-enable-directory-browsing-in-iis\/"},"wordCount":619,"publisher":{"@id":"https:\/\/www.webhosting.uk.com\/kb\/#organization"},"keywords":["Servers"],"articleSection":["Servers, Hosting &amp; Email"],"inLanguage":"en-GB"},{"@type":"WebPage","@id":"https:\/\/www.webhosting.uk.com\/kb\/how-to-enable-directory-browsing-in-iis\/","url":"https:\/\/www.webhosting.uk.com\/kb\/how-to-enable-directory-browsing-in-iis\/","name":"How to Enable Directory Browsing in IIS (Step-by-Step Guide)","isPartOf":{"@id":"https:\/\/www.webhosting.uk.com\/kb\/#website"},"datePublished":"2025-11-04T14:01:23+00:00","dateModified":"2026-06-08T10:54:27+00:00","description":"Learn how to enable Directory Browsing in IIS using IIS Manager or Command Prompt. Follow this step-by-step guide to view and manage website.","breadcrumb":{"@id":"https:\/\/www.webhosting.uk.com\/kb\/how-to-enable-directory-browsing-in-iis\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.webhosting.uk.com\/kb\/how-to-enable-directory-browsing-in-iis\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.webhosting.uk.com\/kb\/how-to-enable-directory-browsing-in-iis\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.webhosting.uk.com\/kb\/"},{"@type":"ListItem","position":2,"name":"How to Enable Directory Browsing in IIS"}]},{"@type":"WebSite","@id":"https:\/\/www.webhosting.uk.com\/kb\/#website","url":"https:\/\/www.webhosting.uk.com\/kb\/","name":"Webhosting UK Knowledge Base","description":"Expert Insights on Hosting, Development, Security, Marketing, and SEO","publisher":{"@id":"https:\/\/www.webhosting.uk.com\/kb\/#organization"},"alternateName":"WHUK","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.webhosting.uk.com\/kb\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":"Organization","@id":"https:\/\/www.webhosting.uk.com\/kb\/#organization","name":"Webhosting UK","alternateName":"WHUK","url":"https:\/\/www.webhosting.uk.com\/kb\/","logo":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/www.webhosting.uk.com\/kb\/#\/schema\/logo\/image\/","url":"https:\/\/www.webhosting.uk.com\/kb\/wp-content\/uploads\/2023\/08\/WHUK-logo-1.png","contentUrl":"https:\/\/www.webhosting.uk.com\/kb\/wp-content\/uploads\/2023\/08\/WHUK-logo-1.png","width":1200,"height":628,"caption":"Webhosting UK"},"image":{"@id":"https:\/\/www.webhosting.uk.com\/kb\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webhostingukcom","https:\/\/x.com\/WebhostingUKcom","https:\/\/www.youtube.com\/c\/webhostinguk","https:\/\/www.linkedin.com\/company\/webhosting-uk-com-ltd\/","https:\/\/www.instagram.com\/webhosting_uk\/","https:\/\/www.tiktok.com\/@webhostinguk"],"description":"Fast, reliable, and cost-effective website hosting services with Webhosting UK. Committed to providing you secure support around the clock.","email":"sales@webhosting.uk.com","telephone":"0800 862 0890","legalName":"Webhosting UK","foundingDate":"2001-02-07","numberOfEmployees":{"@type":"QuantitativeValue","minValue":"51","maxValue":"200"}},{"@type":"Person","@id":"https:\/\/www.webhosting.uk.com\/kb\/#\/schema\/person\/ea067684eae84c2b8b49a81c69407297","name":"Victor G","image":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/secure.gravatar.com\/avatar\/9bf0713adcbaded4878508c93d93927ecbfa4f74548fd9bcee41478d8768bd66?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/9bf0713adcbaded4878508c93d93927ecbfa4f74548fd9bcee41478d8768bd66?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/9bf0713adcbaded4878508c93d93927ecbfa4f74548fd9bcee41478d8768bd66?s=96&d=mm&r=g","caption":"Victor G"}}]}},"_links":{"self":[{"href":"https:\/\/www.webhosting.uk.com\/kb\/wp-json\/wp\/v2\/posts\/21241","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.webhosting.uk.com\/kb\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.webhosting.uk.com\/kb\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.webhosting.uk.com\/kb\/wp-json\/wp\/v2\/users\/28"}],"replies":[{"embeddable":true,"href":"https:\/\/www.webhosting.uk.com\/kb\/wp-json\/wp\/v2\/comments?post=21241"}],"version-history":[{"count":9,"href":"https:\/\/www.webhosting.uk.com\/kb\/wp-json\/wp\/v2\/posts\/21241\/revisions"}],"predecessor-version":[{"id":22754,"href":"https:\/\/www.webhosting.uk.com\/kb\/wp-json\/wp\/v2\/posts\/21241\/revisions\/22754"}],"wp:attachment":[{"href":"https:\/\/www.webhosting.uk.com\/kb\/wp-json\/wp\/v2\/media?parent=21241"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.webhosting.uk.com\/kb\/wp-json\/wp\/v2\/categories?post=21241"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.webhosting.uk.com\/kb\/wp-json\/wp\/v2\/tags?post=21241"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}