Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

What's the use of CreateWeb.vbs?

2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/03 Report--

This article mainly shows you "what is the use of CreateWeb.vbs", the content is easy to understand, clear, hope to help you solve your doubts, the following let the editor lead you to study and learn "what is the use of CreateWeb.vbs" this article?

'=

'

'The .NET PetShop Blueprint Application WebSite Setup

'

'File: CreateWeb.vbs

'Date: November 10, 2001

'

'Creates a new vdir for this project. Set vName to name of folder on disk

'that holds the files.

'

'=

'

'Copyright (C) 2001 Microsoft Corporation

'

'=

Option Explicit

Dim vPath

Dim scriptPath

Dim vName

VName= "PetShop" 'name of web to create

'*

'

'1. Create the IIS Virtual Directory

'

'*

'get current path to folder and add web name to it

ScriptPath = left (Wscript.ScriptFullName,len (Wscript.ScriptFullName)-len (Wscript.ScriptName))

VPath = scriptPath & "Web"

'call to create vDir

CreateVDir (vPath)

'

'

'Helper Functions

'

'

''

'Creates a single Virtual Directory (code taken from mkwebdir.vbs and

'changed for single vDir creation).

''

Sub CreateVDir (vPath)

Dim vRoot,vDir,webSite

On Error Resume Next

'get the local host default web

Set webSite = findWeb ("localhost", "Default Web Site")

If IsObject (webSite) = False then

Display "Unable to locate the Default Web Site"

Exit sub

Else

'display webSite.name

End if

'get the root

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

If (Err 0) Then

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

Exit sub

Else

'display vRoot.name

End IF

'delete existing web if needed

VRoot.Delete "IIsWebVirtualDir", vName

VRoot.SetInfo

Err=0 'reset error

'create the new web

Set vDir = vRoot.Create ("IIsWebVirtualDir", vName)

If (Err 0) Then

Display "Unable to create" & vRoot.ADsPath & "/" & vName & "."

Exit sub

Else

'display vdir.name

End if

'set properties on the new web

VDir.AccessRead = true

VDir.Path = vPath

VDir.Accessflags = 529

VDir.AppCreate False

If (Err 0) Then

Display "Unable to bind path" & vPath & "to" & vRoot.Name & "/" & vName &. Path may be invalid. "

Exit sub

End If

'commit changes

VDir.SetInfo

If (Err 0) Then

Display "Unable to save changes for" & vRoot.Name & "/" & vName & "."

Exit sub

End if

'report all ok

WScript.Echo Now & "vName &" virtual directory "& vRoot.Name &" / "& vname &" created successfully. "

End Sub

''

'Finds the specified web.

''

Function findWeb (computer, webname)

On Error Resume Next

Dim websvc, site

Dim webinfo

Dim aBinding, binding

Set websvc = GetObject ("IIS://" & computer& "/ W3svc")

If (Err 0) then

Exit function

End if

'First try to open the webname.

Set site = websvc.GetObject ("IIsWebServer", webname)

If (Err = 0) and (not isNull (site)) then

If (site.class = "IIsWebServer") then

'Here we found a site that is a web server.

Set findWeb = site

Exit function

End if

End if

Err.clear

For each site in websvc

If site.class = "IIsWebServer" then

'

'First, check to see if the ServerComment

'matches

'

If site.ServerComment = webname Then

Set findWeb = site

Exit function

End If

ABinding=site.ServerBindings

If (IsArray (aBinding)) then

If aBinding (0) = "" then

Binding = Null

Else

Binding = getBinding (aBinding (0))

End if

Else

If aBinding = "" then

Binding = Null

Else

Binding = getBinding (aBinding)

End if

End if

If IsArray (binding) then

If (binding (2) = webname) or (binding (0) = webname) then

Set findWeb = site

Exit function

End If

End if

End if

Next

End Function

''

'Gets binding info.

''

Function getBinding (bindstr)

Dim one, two, ia, ip, hn

One=Instr (bindstr, ":"

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

Ia=Mid (bindstr,1, (one-1))

Ip=Mid (bindstr, (one+1), (two-one)-1))

Hn=Mid (bindstr, (two+1))

GetBinding=Array (ia,ip,hn)

End function

''

'Displays error message.

''

Sub Display (Msg)

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

End Sub

''

'Display progress/trace message.

''

Sub Trace (Msg)

WScript.Echo Now & ":" & Msg

End Sub

''

'Remove the web.

''

Sub DeleteWeb (WebServer, WebName)

'delete the exsiting web (ignore error if missing)

On Error Resume Next

Dim vDir

Display "deleting" & WebName

WebServer.Delete "IISWebVirtualDir", WebName

WebServer.SetInfo

If Err=0 Then

DISPLAY "WEB" & WebName & "deleted."

Else

Display "can't find" & webname

End If

End Sub

The above is all the content of this article "what's the use of CreateWeb.vbs?" Thank you for reading! I believe we all have a certain understanding, hope to share the content to help you, if you want to learn more knowledge, welcome to follow the industry information channel!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report