-
Posted to
Configuration & Scripting
by
NickHunyady
on
07-21-2009, 11:18 PM
Continuing on with Dave's post,
IISReset can be run against a remote server. The second parameter can be a server name.
IISreset ServerName /restart
Which can be piped as Dave mentions above.
-
Posted to
Configuration & Scripting
by
NickHunyady
on
07-15-2009, 12:06 PM
Thanks for jumping there Paul, I should have clarified that further. I was going along the lines if you did not have an SSL cert added to a site. You have to have an SSL certificate enabled at the website level before you can go any lower.
It was to late when I posted that ;)
-
Posted to
Configuration & Scripting
by
NickHunyady
on
07-15-2009, 12:34 AM
This is not possible in Server 2003. You are only able to configure SSL settings at the web site level.
-
Posted to
IIS7 - General
by
NickHunyady
on
07-02-2009, 1:22 PM
Out of curiosity, what is the app?
-
Posted to
Configuration & Scripting
by
NickHunyady
on
07-02-2009, 12:33 PM
I don't believe there is an NTAuthentication node. Are you looking for NTAuthenticationProviders?
http://support.microsoft.com/kb/215383
Or, are you trying to find out what athentication mechanism is enabled in IIS, i.e. Anonymous, Integrated?
Those nodes would be found at something similar to ...
-
Posted to
Configuration & Scripting
by
NickHunyady
on
07-02-2009, 12:28 PM
Here is the ADSI way to do this. Put this in a vbscript and change the strServerName and strAppPoolName to suit your needs.
strServerName = "ServerName"
strAppPoolName = "DefaultAppPool"
set objAppPools = GetObject("IIS://" & strServerName & "/w3svc/AppPools/" & strAppPoolName ...
-
Posted to
IIS.NET Site Feedback
by
NickHunyady
on
07-02-2009, 10:52 AM
I have stuff for all flavors although I have not tested a lot of them on IIS 7. I was going to ask if that was a proper place for this type of stuff in my original posting.
I keep asking myself why I didn't join this community years ago!
-
Posted to
Configuration & Scripting
by
NickHunyady
on
07-02-2009, 10:20 AM
I can whip you up something to help out with this task. Can you please reply to the other posters question as well.
-
Posted to
IIS.NET Site Feedback
by
NickHunyady
on
07-02-2009, 3:09 AM
I have a couple of vbscripts I would like to share with the community to help with automating some IIS tasks. Where can I post these for others to use or add upon?
-
Posted to
Configuration & Scripting
by
NickHunyady
on
07-02-2009, 3:01 AM
This uses ADSI and should do the trick.
strComputer = "ServerName" 'Change this to your server name
strSiteID = "1" 'Change this to your website ID number
set objWebSite = GetObject("IIS://" & strComputer & "/W3SVC/" & strSiteID)
objWebSite.LogFileDirectory = ...