Enables directory browsing under all or part of a website.
Set-IisDirectoryBrowsing [-SiteName] <String> [[-Directory] <String>] [<CommonParameters>]
Enables directory browsing (i.e. showing the contents of a directory by requesting that directory in a web browser) for a website. To enable directory browsing on a directory under the website, pass the virtual path to that directory as the value to the Directory
parameter.
Name | Type | Description | Required? | Pipeline Input | Default Value |
---|---|---|---|---|---|
SiteName | String | The name of the site where the virtual directory is located. | true | false | |
Directory | String | The directory where directory browsing should be enabled. | false | false |
Set-IisDirectoryBrowsing -SiteName Peanuts
Enables directory browsing on the Peanuts
website.
Set-IisDirectoryBrowsing -SiteName Peanuts -Directory Snoopy/DogHouse
Enables directory browsing on the /Snoopy/DogHouse
directory under the Peanuts
website.