vote up 2 vote down star

Using Powershell 1.0 under Windows Server 2003 with IIS 6.

I have about 200 sites that I would like to change the IP address for (as listed in the website properties on the "website" tab in the "Web site identification" section "IP address" field.

I found this code:

$site = [adsi]"IIS://localhost/w3svc/$siteid"
$site.ServerBindings.Insert($site.ServerBindings.Count, ":80:$hostheader")
$site.SetInfo()

How can I do something like this but:

  1. Loop through all the sites in IIS
  2. Not insert a host header value, but change an existing one.
flag

67% accept rate
See my comments – Kev Oct 28 at 18:01
Ok...slight mod to make things a bit simpler and remove a redundant use of DirectoryEntry object for the site – Kev Oct 28 at 18:16
Glad that worked....you know you can upvote a correct answer too? :) – Kev Oct 28 at 19:00

1 Answer

vote up 4 vote down check

The following PowerShell script should help:

$oldIp = "172.16.3.214"
$newIp = "172.16.3.215"

# Get all objects at IIS://Localhost/W3SVC
$iisObjects = new-object `
    System.DirectoryServices.DirectoryEntry("IIS://Localhost/W3SVC")

foreach($site in $iisObjects.psbase.Children)
{
    # Is object a website?
    if($site.psbase.SchemaClassName -eq "IIsWebServer")
    {
    	$siteID = $site.psbase.Name

    	# Grab bindings and cast to array
    	$bindings = [array]$site.psbase.Properties["ServerBindings"].Value

    	$hasChanged = $false
    	$c = 0

    	foreach($binding in $bindings)
    	{
    		# Only change if IP address is one we're interested in
    		if($binding.IndexOf($oldIp) -gt -1)
    		{
    			$newBinding = $binding.Replace($oldIp, $newIp)
    			Write-Output "$siteID: $binding -> $newBinding"

    			$bindings[$c] = $newBinding
    			$hasChanged = $true
    		}
    		$c++
    	}

    	if($hasChanged)
    	{
    		# Only update if something changed
    		$site.psbase.Properties["ServerBindings"].Value = $bindings

    		# Comment out this line to simulate updates.
    		$site.psbase.CommitChanges()

    		Write-Output "Committed change for $siteID"
    		Write-Output "========================="
    	}
    }
}
link|flag
When running this I get the following prompt... cmdlet new-object at command pipeline position 1. Supply values for the following parameters: TypeName: – User Oct 28 at 17:08
Forgot that PS uses a backtick to indicate line continuation – Kev Oct 28 at 18:17
awesome that worked! – User Oct 28 at 18:56
When an answer helps you out, feel free to vote up the answer. I'm sure Kev would appreciate it. :-) – Keith Hill Oct 28 at 19:04
@Keith - I can't help myself :) – Kev Oct 29 at 1:18

Your Answer

Get an OpenID
or

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