Link to home
Start Free TrialLog in
Avatar of invisibleman
invisibleman

asked on

"Permission denied" on .SetInfo when creating a new IIsWebServer object

Hello :)

I've written a script to create a new "webserver" in IIS 5.0. When I use .SetInfo after the .Create() method, I get a Permission denied :/

Here is the code that fail:

Set objServer = objIIS.Create("IIsWebServer", WebsiteIndex)

Domain = "invisibleman.dk"

objServer.ServerSize = 1
objServer.ServerComment = Domain
objServer.ServerBindings = Array(":80:" & Domain, ":80:www." & Domain)
objServer.UseHostName = True
objServer.SetInfo

"WebsiteIndex" contains the next free webserver index, retrieved from a function I wrote for that purpose.

It creates the webserver (as I get an error from the IIS Manager about a non-fatal error.) but it doesn't save the properties of the webserver (which is what causes IIS Mngr. to give me an error)

I've been trying to solve this problem for a few hours now, so ANY help is GREATLY appreciated!

Thanks in advance :)
Avatar of b1xml2
b1xml2
Flag of Australia image

the question is about credentials, you would have to run the scripts as an administrator of the box.
Avatar of invisibleman
invisibleman

ASKER

I am ..

I've set Administrator and IUSR_THOMSERV01 (THOMSERV01 is the name of my computer, running Win2K Server) as "Operators" of the IIS WebService.

And since the .Create() method doesn't fail, I guess it has something to do with permission to the metabase ... but how that could be, I have no idea...
Avatar of Michel Sakr
the IUSR_Webservername does not have permissions to create websites.. encapsulate your code in a component..
check this code.. you have to set some permissions on the metabse:

http://www.eggheadcafe.com/articles/20010609.asp

also you can try to make a vbs and call it from asp.. the vbs will take data from a temp database and will be executed using aspexec from www.serverobjects.com in an adminastrator account context..
...
Set objVirtualDirectory = objIIS.Create("IISWebVirtualDir", strVirtualDirectoryName)
objVirtualDirectory.AccessScript = blnScriptPermissions
objVirtualDirectory.Path = strVirtualDirectoryPath
objVirtualDirectory.AppCreate blnInProcessApplication <..
objVirtualDirectory.AccessWrite = blnWritePermissions <..
objVirtualDirectory.AccessRead = blnReadPermissions <..
objVirtualDirectory.AccessExecute = blnExecutePermissions <..
It worked just last Friday without any .vbs scripts, external components and such. Plain ASP.

But some other stuff made me reinstall IIS and after that, it doesn't work.
Access to MEtabase is restricted to members of Local Admin group. Check if IUser_<machine> is member of this group or not.
Are you using Anonymous or Windows Integrated authenticatiion? For manipulating metabase from ASP page, it is recommended that you should not use Anonymous authentication.

Naveen
ADMINISTRATION WILL BE CONTACTING YOU SHORTLY.  Moderators Computer101, Netminder or Mindphaser will return to finalize these if they are still open in 7 days.  Experts, please post closing recommendations before that time.

Below are your open questions as of today.  Questions which have been inactive for 21 days or longer are considered to be abandoned and for those, your options are:
1. Accept a Comment As Answer (use the button next to the Expert's name).
2. Close the question if the information was not useful to you, but may help others. You must tell the participants why you wish to do this, and allow for Expert response.  This choice will include a refund to you, and will move this question to our PAQ (Previously Asked Question) database.  If you found information outside this question thread, please add it.
3. Ask Community Support to help split points between participating experts, or just comment here with details and we'll respond with the process.
4. Delete the question (if it has no potential value for others).
   --> Post comments for expert of your intention to delete and why
   --> YOU CANNOT DELETE A QUESTION with comments; special handling by a Moderator is required.

For special handling needs, please post a zero point question in the link below and include the URL (question QID/link) that it regards with details.
https://www.experts-exchange.com/jsp/qList.jsp?ta=commspt
 
Please click this link for Help Desk, Guidelines/Member Agreement and the Question/Answer process.  https://www.experts-exchange.com/jsp/cmtyHelpDesk.jsp

Click you Member Profile to view your question history and please keep them updated. If you are a KnowledgePro user, use the Power Search option to find them.  

Questions which are LOCKED with a Proposed Answer but do not help you, should be rejected with comments added.  When you grade the question less than an A, please comment as to why.  This helps all involved, as well as others who may access this item in the future.  PLEASE DO NOT AWARD POINTS TO ME.

To view your open questions, please click the following link(s) and keep them all current with updates.
https://www.experts-exchange.com/questions/Q.20246258.html
https://www.experts-exchange.com/questions/Q.20278268.html
https://www.experts-exchange.com/questions/Q.20278239.html
https://www.experts-exchange.com/questions/Q.20301120.html
https://www.experts-exchange.com/questions/Q.20301102.html



*****  E X P E R T S    P L E A S E  ******  Leave your closing recommendations.
If you are interested in the cleanup effort, please click this link
https://www.experts-exchange.com/jsp/qManageQuestion.jsp?ta=commspt&qid=20274643 
POINTS FOR EXPERTS awaiting comments are listed in the link below
https://www.experts-exchange.com/commspt/Q.20277028.html
 
Moderators will finalize this question if in @7 days Asker has not responded.  This will be moved to the PAQ (Previously Asked Questions) at zero points, deleted or awarded.
 
Thanks everyone.
Moondancer
Moderator @ Experts Exchange
ASKER CERTIFIED SOLUTION
Avatar of Mindphaser
Mindphaser

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