IIS 7 - IIS 6 Problem - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T07:37:44Zhttp://stackoverflow.com/feeds/question/218193http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/218193/iis-7-iis-6-problem0IIS 7 - IIS 6 ProblemJohn2008-10-20T12:03:15Z2008-10-20T12:36:43Z
<p>Hi,</p>
<p>I'm trying to run this script to assign Application Pool to web site running under IIS 6</p>
<p>Set oWebAdmin = GetObject("winmgmts:root\WebAdministration")
Set oSite = oWebAdmin.Get("Site.Name='Site'")
oSite.ApplicationDefaults.ApplicationPool = "NewAppPool"
oSite.Put_</p>
<p>This script can't run under IIS 6... Is there is something wrong?</p>
<p>Thanks,</p>
http://stackoverflow.com/questions/218193/iis-7-iis-6-problem/218249#2182490Answer by MysticSlayer for IIS 7 - IIS 6 ProblemMysticSlayer2008-10-20T12:29:00Z2008-10-20T12:29:00Z<p>Set objVirtualDirectory = GetObject( "IIS://localhost/" + strSitePath + "/ROOT" )</p>
<p>' Assign the Pool to the Site
objVirtualDirectory.AppPoolID = strAppPool
objVirtualDirectory.AppFriendlyName = "me app"
objVirtualDirectory.Put_()</p>
http://stackoverflow.com/questions/218193/iis-7-iis-6-problem/218273#2182730Answer by John for IIS 7 - IIS 6 ProblemJohn2008-10-20T12:36:43Z2008-10-20T12:36:43Z<p>Thanks for your reply,</p>
<p>How can I set strSitePath to the correct website? </p>