Creating an IIS 6.0 Application Pool using Powershell
- by Robert Wagner
How do I create an Application Pool on IIS 6.0 using a Powershell script?
This is what I have come up with so far:
$appPool = [wmiclass] "root\MicrosoftIISv2:IIsApplicationPool"
Thanks