2011-12-17 58 views

回答

19

您應該能夠使用Appcmd.exe管理IIS快遞試試這個:在APPCMD

appcmd set config /section:directoryBrowse /enabled:true 

更多信息。 exe文件在這裏: http://learn.iis.net/page.aspx/114/getting-started-with-appcmdexe

+0

謝謝您的幫助。 – 2011-12-18 09:29:20

+3

做一個管理員 運行這個 %systemroot%\ system32 \ inetsrv \ appcmd set config/section:directoryBrowse/enabled:true – 2012-08-16 09:48:14

6

可以使用appcmd工具

APPCMD (command) (object-type) <identifier> < /parameter1:value1 ... >* 

,其中,通過。大多數支持的命令的一個對象支持日是基本的一組命令:

LIST顯示機器上的對象。可選可以指定要列出的唯一對象,或者可以指定一個或多個參數以匹配對象屬性。

ADD在創建過程中創建一個具有指定對象屬性的新對象。

DELETE刪除指定的對象。

SET在由指定的對象上設置參數。

啓用目錄瀏覽。

轉至IIS Express安裝目錄。

1:在服務器級別

Run `appcmd set config /section:system.webServer/directoryBrowse /enabled:true` 

2啓用目錄瀏覽:在網站級別

Run `appcmd set config ["SITE_NAME"] /section:system.webServer/directoryBrowse /enabled:true` 

注意啓用目錄瀏覽:使用提升權限

運行

您可以驗證站點或應用程序配置文件中的configuration/system.webServer/[email protected]屬性是否設置爲true。

參考:IIS

12
  1. 轉到Web.config文件的項目。

  2. 添加下面的兩個標籤中<system.webServer>標籤在web.config

<directoryBrowse enabled="true" />

<modules runAllManagedModulesForAllRequests="true" />