我正在尝试使用 vb 脚本将应用程序池分配给 IIS7 中的一个网站:
' Connect to the WMI WebAdministration namespace.'
Set oWebAdmin = GetObject("winmgmts:root\WebAdministration")
' Retrieve the application and display its Web site name and path.'
Set oApp = oWebAdmin.Get("Application.SiteName='Default Web Site',Path='/site'")
' Specify a new application pool name and save it.'
oApp.ApplicationPool = "NewAppPool"
oApp.Put_
上面的脚本不起作用!
有没有更好的方法在 IIS(使用脚本)下将应用程序池分配给网站?