Enable-IisDirectoryBrowsing

Enables directory browsing under all or part of a website.

Syntax

Enable-IisDirectoryBrowsing [-SiteName] <String> [[-VirtualPath] <String>] [<CommonParameters>]

Description

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.

Parameters

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

EXAMPLE 1

Enable-IisDirectoryBrowsing -SiteName Peanuts

Enables directory browsing on the Peanuts website.

EXAMPLE 2

Enable-IisDirectoryBrowsing -SiteName Peanuts -Directory Snoopy/DogHouse

Enables directory browsing on the /Snoopy/DogHouse directory under the Peanuts website.