vote up 1 vote down star

I'm configuring a web site using PowerShell and I want to set the default document. How do I do this?

flag

1 Answer

vote up 1 vote down check

This is one way:

$metabasePath = "IIS://Localhost/W3SVC"
$iisNumber = "12345"
$site = new-object 
        System.DirectoryServices.DirectoryEntry("$metabasePath/$iisNumber/root")
$site.psbase.Properties["DefaultDoc"].Value = 
    "newdefdoc.htm," + $site.psbase.Properties["DefaultDoc"].Value
$site.psbase.CommitChanges()

The value returned in $site.psbase.Properties["DefaultDoc"].Value is a comma separated list of documents so you may need to re-jig the order to suit your case. The example above just adds a new default document (newdefdoc.htm) to the top of the list.

link|flag
Sweet! Thanks mate! – Matthew Jun 25 at 13:17
No probs :) – Kev Jun 25 at 13:18

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.