Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagepowershell
firstline1
linenumberstrue
#http://mvolo.com/anatomy-of-an-iis7-configuration-path/
[settingsxml]$dualconf = Get-Content Settings.xml

foreach( $item in $dualconf.settings.list.item) 
{
	if($item.protected -eq "yes")
	{
		$metapath = $item.path -replace "/LM/W3SVC/1/Root/", "MACHINE/WEBROOT/APPHOST/Default Web Site/"
		# write-host $metapath 
		Enable-WebGlobalModule -Name "DasIIS7Native" -PSPath $metapath
	}
}

...