Archive for June, 2008
Inside IIS Part 1 of 1
Introduction
This arcticle is for those, who has better understanding how to publish the websites using IIS and who does not have indepth knowledge inside IIS
Difference between windows 32Bit and 64Bit
Difference between kernal and user mode
Compare IIS 6.0 with legacy IIS versions
Concepts of IIS
The difference between 64 and 32 bit processors
1. Mathematics
Processor
Holds
32Bit
0 to [...]
Read Full Post | Make a Comment ( None so far )Set AppPoolName using Script
On error Resume Next
set vdirObj= _
GetObject(“IIS://localhost/W3svc/1/Root/Documentation”)
ObjAppPool = vdirObj.AppPoolId
vdirObj.AppPoolId = “Documentation”
vdirObj.SetInfo
wscript.echo “Stopping Application Pool : ” & vdirObj.AppPoolId
Set objAppPool = GetObject(“IIS://localhost/W3SVC/AppPools/” & vdirObj.AppPoolId)
objAppPool.Stop()
wscript.echo “Starting Application Pool : ” & vdirObj.AppPoolID
objAppPool.Start()


