Set-IisDirectoryBrowsing

Enables directory browsing under all or part of a website.

Syntax

Set-IisDirectoryBrowsing [-SiteName] <String> [[-Directory] <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.

Parameters

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

EXAMPLE 1

Set-IisDirectoryBrowsing -SiteName Peanuts

Enables directory browsing on the Peanuts website.

EXAMPLE 2

Set-IisDirectoryBrowsing -SiteName Peanuts -Directory Snoopy/DogHouse

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