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.
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.