Link to home
Start Free TrialLog in
Avatar of webbysteve
webbysteve

asked on

trying to create website programmitically in IIS 6

I'm trying to automate creating a website in IIS using classic asp.
I've used the solution in this thread https://www.experts-exchange.com/questions/21031974/IIS-6-and-ASP-How-to-create-new-website-on-IIS-6-0-from-ASP-page-using-a-batch-file-The-file-will-not-execute.html but have become stuck with the settings I need for the security as all I'm getting is permission denied messages. I did have it working but now it's stopped and not sure why.

I have the following situation:
Windows2003 server running IIS6
I have a main admin user lets say called Admin :)
I have a domain group called DomainGroup :)
I have the usual IUSR account as well...DomainGroup is just a domain group that will hold all my created domains....hopefully.
DomainGroup is the owner of domain1 and domain2
domain1 contains code that happily creates the folder structure for domain3 within the DomainGroup folder by copying everything from domain2 (my template site)

That bit works ok...now trying to do the IIS bit -

Firstly, this line
set websrv = getobject("IIS://DSVR009456/W3SVC") no longer works and returns a permssion denied error.
This is where I get stuck as I'm not sure what account needs what anymore and I'm losing the will to live!
What is actually running the script....IUSR or domainGroup?
What settings do I change and where? Please go through step by step as I'm really really confused now!

Attached my code below



newSite = "example.com"
dim websrv, site
dim webinfo,exists
exists=false
set websrv = getobject("IIS://DSVR009456/W3SVC")
if (err <> 0) then
else
    err.Clear
    for each site in websrv
	if instr(Site.ServerComment,newSite) > 0 then
	if err.number = 0 then 
		exists=true 
	else
		err.clear
	end if
	end if
    next
end if
on error goto 0
if not exists then 
 
	' first of all copy the blank site
	set fso = createobject("scripting.filesystemobject")
	if fso.folderExists("d:\home\domainGroup\" & newSite) then
	  ' don't create folders - they already exist
	else
	  fso.createFolder("d:\home\domainGroup\" & newSite)
	  fso.CopyFolder "d:\home\domainGroup\domain1\*", "d:\home\domainGroup\" & newSite
	end if
	
	response.Write("<p>" & newSite & " directories created</p>")
 
	' Make connections to WMI, to the IIS namespace on MyMachine, and to the Web service.
	set locatorObj = CreateObject("WbemScripting.SWbemLocator")
	set providerObj = locatorObj.ConnectServer("DSVR009456", "root/MicrosoftIISv2")
	set serviceObj = providerObj.Get("IIsWebService='W3SVC'")
	
	' Build binding object, which is a required parameter of the CreateNewSite method.
	' Use the SpawnInstance WMI method since we are creating a new instance of an object.
	Bindings = Array(0)
	Set Bindings(0) = providerObj.get("ServerBinding").SpawnInstance_()
	Bindings(0).IP = ""
	Bindings(0).Port = "80"
	Bindings(0).Hostname = newSite
	
	' Create the new Web site using the CreateNewSite method of the IIsWebService object.
	Dim strSiteObjPath
	strSiteObjPath = serviceObj.CreateNewSite(newSite, Bindings, "D:\home\domainGroup\" & newSite & "\htdocs")
	If Err Then
	response.Write( "*** Error Creating Site: " & Hex(Err.Number) & ": " & Err.Description & " ***")
	response.End()
	End If
	
	' strSiteObjPath is in the format of IIsWebServer='W3SVC/1180970907'
	' To parse out the absolute path, W3SVC/1180970907, use the SWbemObjectPath WMI object.
	Set objPath = CreateObject("WbemScripting.SWbemObjectPath")
	objPath.Path = strSiteObjPath
	strSitePath = objPath.Keys.Item("")
	
	' Set some properties on the root virtual directory which was created by CreateNewSite.
	Set vdirObj = providerObj.Get("IIsWebVirtualDirSetting='" & strSitePath & "/ROOT'")
	vdirObj.AuthFlags = 5 ' AuthNTLM + AuthAnonymous
	vdirObj.EnableDefaultDoc = True
	vdirObj.DirBrowseFlags = &H4000003E ' date, time, size, extension, longdate
	vdirObj.AccessFlags = 513 ' read, script
	vdirObj.AppFriendlyName = ""
	
	' Save the new settings to the metabase
	vdirObj.Put_()
	
	' CreateNewSite does not start the server, so start it now.
	Set serverObj = providerObj.Get(strSiteObjPath)
	serverObj.Start
	
	response.Write(strSitePath)
else
	response.Write("The site  already existed")
 
end if

Open in new window

Avatar of Randy Wilson
Randy Wilson
Flag of United States of America image

Can you post the error messages?
Avatar of webbysteve
webbysteve

ASKER

Hi wrwilson.

The only error messages are "permission denied" ones. However as an update to this, I've (literally) just managed - i think - to get it working again by restarting the server after making IUSR a member of the administrators group. Probably not a good idea but it works...unless someone tells me that is ok?

However this has thrown up another problem as I thought the system created DNS entries too but doesn't seem to. I may need to raise that as another question although it's linked to this - if anyone has tried to automate creating websites then I'm sure they've need to create DNS records too. I've tried to create files in the servers/dns/ folder but they don't seem to be recognised.

groping in the dark so any help appreciated.

Sorry chaps - think I've sorted myself but this might prove useful for others.....

Because all my created sites will be subdomains all I had to do was add an A record of *. That's it. Every subdomain site I create now will automatically work. No trying to use WMI, ADSI or anything else locally or remotely to configure the DNS....so far so good it's still working after a reboot.

The IIS bit was just permissions too, not sure if it's right or secure but I'll carry on looking with that.
ASKER CERTIFIED SOLUTION
Avatar of webbysteve
webbysteve

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial