IIS 7 - IIS 6 Problem - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T07:37:44Z http://stackoverflow.com/feeds/question/218193 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/218193/iis-7-iis-6-problem 0 IIS 7 - IIS 6 Problem John 2008-10-20T12:03:15Z 2008-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#218249 0 Answer by MysticSlayer for IIS 7 - IIS 6 Problem MysticSlayer 2008-10-20T12:29:00Z 2008-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#218273 0 Answer by John for IIS 7 - IIS 6 Problem John 2008-10-20T12:36:43Z 2008-10-20T12:36:43Z <p>Thanks for your reply,</p> <p>How can I set strSitePath to the correct website? </p>