1
我需要一個PowerShell腳本來啓用IIS6中物理文件夾上的「目錄瀏覽」。關鍵是我想修改的文件夾是另一個物理文件夾的子文件夾。這兩個文件夾都不是「虛擬目錄」。Powershell - 啓用IIS6中物理文件夾上的「目錄瀏覽」
我嘗試了以下操作,但DirectoryEntry爲空。我認爲這是因爲該文件夾不是「虛擬目錄」。
$oDir = New-Object System.DirectoryServices.DirectoryEntry("IIS://localhost/W3SVC/1/Root/Test/Upgrade")
# Loop thru all even though there should only be one...
foreach ($oDirEntry in $oDir)
{
Write-Host "Enabling Directory Browsing on IIS folder [" $oDirEntry.Name "]."
$oDirEntry.put("EnableDirBrowsing",$true)
$oDirEntry.psbase.CommitChanges()
}