婷婷综合国产,91蜜桃婷婷狠狠久久综合9色 ,九九九九九精品,国产综合av

主頁 > 知識庫 > 用VBS修改IIS Metabase 的代碼

用VBS修改IIS Metabase 的代碼

熱門標簽:深圳外呼系統收費 外呼系統telrobot 廣州ai電銷機器人一般多少錢 外呼系統免費招代理 外呼線路中繼線是什么 百度地圖標注是什么意思 怎么看地圖標注 拉薩外呼系統業務 合肥高德地圖標注
//////////////////////////
作者:Jaron, 江都資訊網 
郵件:jaron@jdinfo.net
網址:http://www.jiangdu.net
如果您要轉載該文章,請注明出處。
////////////////////////// 
本文解釋如何用 Microsoft 自帶的adsutil.vbs 來修改 IIS Metabase 的設置方法,這里是通過調用 BAT批處理的方法來實現的,靈活運用一下,可以用于 InstallShield 和其他地方。 

測試環境:Windows 2000 Server (裝有IIS服務)
所需文件::
1. cscript.exe 
2. adsutil.vbs (該文件在 C:\Inetpub\AdminScripts 下) 
已經在目標目錄下創建了一個IIS的子目錄 

在InstallShield中的應用:
######### 
LaunchAppAndWait( SUPPORTDIR ^ "vdir.bat", szVdir + " \"" + szTarget + " \""); 
######### 
# szVdir 是虛擬目錄名
# szTarget 是目錄文件夾名 C:\inetpub\wwwroot\iis
我們通過一個 bat 來實現這些功能. 

vdir.bat 的詳細內容:
###BEGIN### 
echo off 
set vdir=%1 
set vpath=%2 
chdir %vpath%\iis 
rem cd Inetpub\Adminscripts 
cscript adsutil.vbs delete w3svc/1/root/%vdir%   # 刪除已經存在的虛擬目錄
cscript adsutil.vbs create_vdir w3svc/1/root/%vdir%  #創建虛擬目錄 
cscript adsutil.vbs set w3svc/1/root/%vdir%/path %vpath%  # 主目錄路徑
cscript adsutil.vbs set w3svc/1/root/%vdir%/DefaultDoc "login.asp"  # 默認文檔
###END### 

adsutil.vbs 還可以實現很多功能,大家自已去探索吧,以下是關于 adsutil.vbs 的幫助(英文)
================================================================================
Usage:
     ADSUTIL.VBS CMD [param param] 

Note: ADSUTIL only supports the "no switch" option of MDUTIL 

Description:
IIS K2 administration utility that enables the manipulation with ADSI parameters 

Standard MDUTIL Commands:
adsutil.vbs GET      path             - display chosen parameter
adsutil.vbs SET      path value ...   - assign the new value
adsutil.vbs ENUM     path ["/P" | "/A"] - enumerate all parameters for given path
adsutil.vbs DELETE   path             - delete given path or parameter
adsutil.vbs CREATE   path [KeyType]   - create given path and assigns it the given KeyType 

adsutil.vbs APPCREATEINPROC  w3svc/1/root - Create an in-proc application
adsutil.vbs APPCREATEOUTPROC w3svc/1/root - Create an out-proc application
adsutil.vbs APPCREATEPOOLPROC w3svc/1/root- Create a pooled-proc application
adsutil.vbs APPDELETE        w3svc/1/root - Delete the application if there is one
adsutil.vbs APPUNLOAD        w3svc/1/root - Unload an application from w3svc runtime lookup table.
adsutil.vbs APPDISABLE       w3svc/1/root - Disable an application - appropriate for porting to another machine.
adsutil.vbs APPENABLE        w3svc/1/root - Enable an application - appropriate for importing from another machine.
adsutil.vbs APPGETSTATUS     w3svc/1/root - Get status of the application 

New ADSI Options:
/P - Valid for ENUM only.  Enumerates the paths only (no data)
/A - Valid for ENUM only.  Enumerates all data that CAN be set on the node
KeyType - Valide for CREATE only.  Assigns the valid KeyType to the path 

Extended ADSUTIL Commands:
adsutil.vbs FIND             path     - find the paths where a given parameter is set
adsutil.vbs CREATE_VDIR      path     - create given path as a Virtual Directory
adsutil.vbs CREATE_VSERV     path     - create given path as a Virtual Server
adsutil.vbs START_SERVER     path     - starts the given web site
adsutil.vbs STOP_SERVER      path     - stops the given web site
adsutil.vbs PAUSE_SERVER     path     - pauses the given web site
adsutil.vbs CONTINUE_SERVER  path     - continues the given web site 


Samples:
 adsutil.vbs GET W3SVC/1/ServerBindings
 adsutil.vbs SET W3SVC/1/ServerBindings ":81:"
 adsutil.vbs CREATE W3SVC/1/Root/MyVdir "IIsWebVirtualDir"
 adsutil.vbs START_SERVER W3SVC/1
 adsutil.vbs ENUM /P W3SVC
Extended ADSUTIL Commands:
adsutil.vbs FIND             path     - find the paths where a given parameter is set
adsutil.vbs CREATE_VDIR      path     - create given path as a Virtual Directory
adsutil.vbs CREATE_VSERV     path     - create given path as a Virtual Server
adsutil.vbs START_SERVER     path     - starts the given web site
adsutil.vbs STOP_SERVER      path     - stops the given web site
adsutil.vbs PAUSE_SERVER     path     - pauses the given web site
adsutil.vbs CONTINUE_SERVER  path     - continues the given web site 


Samples:
 adsutil.vbs GET W3SVC/1/ServerBindings
 adsutil.vbs SET W3SVC/1/ServerBindings ":81:"
 adsutil.vbs CREATE W3SVC/1/Root/MyVdir "IIsWebVirtualDir"
 adsutil.vbs START_SERVER W3SVC/1
 adsutil.vbs ENUM /P W3SVC

標簽:臺灣 周口 延安 玉林 廣安 漳州 嘉興 六安

巨人網絡通訊聲明:本文標題《用VBS修改IIS Metabase 的代碼》,本文關鍵詞  用,VBS,修改,IIS,Metabase,的,;如發現本文內容存在版權問題,煩請提供相關信息告之我們,我們將及時溝通與處理。本站內容系統采集于網絡,涉及言論、版權與本站無關。
  • 相關文章
  • 下面列出與本文章《用VBS修改IIS Metabase 的代碼》相關的同類信息!
  • 本頁收集關于用VBS修改IIS Metabase 的代碼的相關信息資訊供網民參考!
  • 推薦文章
    主站蜘蛛池模板: 通化市| 剑川县| 博罗县| 榆社县| 凤阳县| 太仓市| 宁国市| 若羌县| 宁晋县| 太谷县| 耿马| 宣恩县| 泾川县| 淳化县| 夏邑县| 枣强县| 保靖县| 安多县| 皋兰县| 炉霍县| 五莲县| 名山县| 芒康县| 醴陵市| 恩施市| 宜兰市| 永顺县| 澜沧| 开封县| 错那县| 定远县| 丽水市| 乐昌市| 和田市| 阿克苏市| 保康县| 公安县| 成武县| 萨嘎县| 浮梁县| 扶余县|