Enables directory browsing under all or part of a website.
Enable-IisDirectoryBrowsing [-SiteName] <String> [[-VirtualPath] <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.
Beginning with Carbon 2.0.1, this function is available only if IIS is installed.
Name | Type | Description | Required? | Pipeline Input | Default Value |
---|---|---|---|---|---|
SiteName | String | The name of the site where the virtual directory is located. |
true | false | |
VirtualPath | String | The directory where directory browsing should be enabled. |
false | false |
Enable-IisDirectoryBrowsing -SiteName Peanuts
Enables directory browsing on the Peanuts
website.
Enable-IisDirectoryBrowsing -SiteName Peanuts -Directory Snoopy/DogHouse
Enables directory browsing on the /Snoopy/DogHouse
directory under the Peanuts
website.