欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

讓IIS建立的站點默認是.net 2.0的,而不是.net 1.1的代碼

 更新時間:2008年07月28日 23:19:00   作者:  
讓IIS建立的站點默認是.net 2.0的,而不是.net 1.1的,沒有使用WMI,所以在操作前先得停止IIS相關服務
'/*=========================================================================   
' * Intro       讓IIS建立的站點默認是.net 2.0的,而不是.net 1.1的,沒有使用WMI,所以在操作前先得停止IIS相關服務   
' * FileName    ChangeMetaBaseScriptMaps.vbs   
' * Author      yongfa365   
' * Version     v1.0   
' * WEB         http://www.yongfa365.com   
' * Email       yongfa365[at]qq.com   
' * FirstWrite  http://www.yongfa365.com/Item/ChangeMetaBaseScriptMaps.vbs.html   
' * MadeTime    2008-07-24 17:38:20   
' * LastModify  2008-07-24 17:38:20   
' *==========================================================================*/   

WScript.Echo "點確定前,請先運行" & vbCrLf & "net stop iisadmin /y " & vbCrLf & "以停止IIS相關服務"  
Path = "C:\WINDOWS\system32\inetsrv\MetaBase.xml"  
Node = "http://configuration/MBProperty/IIsWebService"  
Set XmlDom = CreateObject("MSXML2.DOMXmlDomument")   
XmlDom.async = False  
XmlDom.load(Path)   
ScriptMaps = XmlDom.selectSingleNode(Node).getAttribute("ScriptMaps")   
ScriptMaps = Replace(ScriptMaps, "v1.1.4322", "v2.0.50727")   
XmlDom.selectSingleNode(Node).setAttribute("ScriptMaps") = ScriptMaps   
XmlDom.Save(Path)   
WScript.Echo "OK,請運行" & vbCrLf & "iisreset" & vbCrLf & "重啟IIS相關服務" 

相關文章

最新評論