分享
 
 
 

ASP建立虚吕目录

王朝asp·作者佚名  2006-11-24
窄屏简体版  字體: |||超大  

'---------------------------------------------------------------------

' This function creates a virtual web directory on the specified web site

' and with the specified path

'

'mkwebdir [--computer|-c COMPUTER1, COMPUTER2, COMPUTER3]

' <--website|-w WEBSITE>

' <--virtualdir|-v NAME1,PATH1,NAME2,PATH2,...>

' [--help|-?]

'

'COMPUTER Computer on which users exists

'WEBSITE1,WEBSITE2 Virtual Web Sites on which directories will be created

'NAME1,PATH1,NAME2,PATH2 Virtual Directories names and paths to create

'

'Example 1 mkwebdir -c MyComputer -w "Default Web Site"

' -v "Virtual Dir1","c:\inetpub\wwwroot\dir1","Virtual Dir2","c:\inetpub\wwwroot\dir2"

'

'----------------------------------------------------------------

' Force explicit declaration of all variables.

Option Explicit

On Error Resume Next

Dim oArgs, ArgNum

Dim ArgComputer, ArgWebSites, ArgVirtualDirs, ArgDirNames(), ArgDirPaths(), DirIndex

Dim ArgComputers

Set oArgs = WScript.Arguments

ArgComputers = Array("LocalHost")

ArgNum = 0

While ArgNum < oArgs.Count

If (ArgNum + 1) >= oArgs.Count Then

Call DisplayUsage

End If

Select Case LCase(oArgs(ArgNum))

Case "--computer","-c":

ArgNum = ArgNum + 1

ArgComputers = Split(oArgs(ArgNum), ",", -1)

Case "--website","-w":

ArgNum = ArgNum + 1

ArgWebSites = oArgs(ArgNum)

Case "--virtualdir","-v":

ArgNum = ArgNum + 1

ArgVirtualDirs = Split(oArgs(ArgNum), ",", -1)

Case "--help","-?"

Call DisplayUsage

End Select

ArgNum = ArgNum + 1

Wend

ArgNum = 0

DirIndex = 0

ReDim ArgDirNames((UBound(ArgVirtualDirs)+1) \ 2)

ReDim ArgDirPaths((UBound(ArgVirtualDirs)+1) \ 2)

if isArray(ArgVirtualDirs) then

While ArgNum <= UBound(ArgVirtualDirs)

ArgDirNames(DirIndex) = ArgVirtualDirs(ArgNum)

If (ArgNum + 1) > UBound(ArgVirtualDirs) Then

WScript.Echo "Error understanding virtual directories"

Call DisplayUsage

End If

ArgNum = ArgNum + 1

ArgDirPaths(DirIndex) = ArgVirtualDirs(ArgNum)

ArgNum = ArgNum + 1

DirIndex = DirIndex + 1

Wend

end if

If (ArgWebSites = "") Or (IsArray(ArgDirNames) = False or IsArray(ArgDirPaths) = False) Then

Call DisplayUsage

Else

Dim compIndex

for compIndex = 0 to UBound(ArgComputers)

Call ASTCreateVirtualWebDir(ArgComputers(compIndex),ArgWebSites,ArgDirNames,ArgDirPaths)

next

End If

'-------------------------------------------------------------

Sub Display(Msg)

WScript.Echo Now & ". Error Code: " & Hex(Err) & " - " & Msg

End Sub

Sub Trace(Msg)

WScript.Echo Now & " : " & Msg

End Sub

Sub DisplayUsage()

WScript.Echo "Usage: mkwebdir [--computer|-c COMPUTER1,COMPUTER2]"

WScript.Echo " <--website|-w WEBSITE1>"

WScript.Echo " <--virtualdir|-v NAME1,PATH1,NAME2,PATH2,...>"

WScript.Echo " [--help|-?]"

WScript.Echo ""

WScript.Echo "Note, WEBSITE is the Web Site on which the directory will be created."

WScript.Echo "The name can be specified as one of the following, in the priority specified:"

WScript.Echo " Server Number (i.e. 1, 2, 10, etc.)"

WScript.Echo " Server Description (i.e ""My Server"")"

WScript.Echo " Server Host name (i.e. ""www.domain.com"")"

WScript.Echo " IP Address (i.e., 127.0.0.1)"

WScript.Echo ""

WScript.Echo ""

WScript.Echo "Example : mkwebdir -c MyComputer -w ""Default Web Site"""

WScript.Echo " -v ""dir1"",""c:\inetpub\wwwroot\dir1"",""dir2"",""c:\inetpub\wwwroot\dir2"""

WScript.Quit

End Sub

'----------------------------------------------------------------

Sub ASTCreateVirtualWebDir(ComputerName,WebSiteName,DirNames,DirPaths)

Dim Computer, webSite, WebSiteID, vRoot, vDir, DirNum

On Error Resume Next

set webSite = findWeb(ComputerName, WebSiteName)

if IsObject(webSite) then

set vRoot = webSite.GetObject("IIsWebVirtualDir", "Root")

Trace "Accessing root for " & webSite.ADsPath

If (Err <> 0) Then

Display "Unable to access root for " & webSite.ADsPath

Else

DirNum = 0

If (IsArray(DirNames) = True) And (IsArray(DirPaths) = True) And (UBound(DirNames) = UBound(DirPaths)) Then

While DirNum < UBound(DirNames)

'Create the new virtual directory

Set vDir = vRoot.Create("IIsWebVirtualDir",DirNames(DirNum))

If (Err <> 0) Then

Display "Unable to create " & vRoot.ADsPath & "/" & DirNames(DirNum) &"."

Else

'Set the new virtual directory path

vDir.AccessRead = true

vDir.Path = DirPaths(DirNum)

If (Err <> 0) Then

Display "Unable to bind path " & DirPaths(DirNum) & " to " & vRootName & "/" & DirNames(DirNum) & ". Path may be invalid."

Else

'Save the changes

vDir.SetInfo

If (Err <> 0) Then

Display "Unable to save configuration for " & vRootName & "/" & DirNames(DirNum) &"."

Else

Trace "Web virtual directory " & vRootName & "/" & DirNames(DirNum) & " created successfully."

End If

End If

End If

Err = 0

DirNum = DirNum + 1

Wend

End If

End If

else

Display "Unable to find "& WebSiteName &" on "& ComputerName

End if

Trace "Done."

End Sub

function getBinding(bindstr)

Dim one, two, ia, ip, hn

one=Instr(bindstr,":")

two=Instr((one+1),bindstr,":")

ia=Mid(bindstr,1,(o

[1] [2] 下一页

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有