Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Thought I might share the script I came up with. Thanks to goes to Steven and leon.</p> <pre><code># Settings $newApplication = "MaxSys.Services" $poolUserName = "BRISBANE\svcMaxSysTest" $poolPassword = "ThisisforT3sting" $newVDirName = "W3SVC/1/ROOT/" + $newApplication $newVDirPath = "C:\" + $newApplication $newPoolName = $newApplication + "Pool" #Switch the Website to .NET 2.0 C:\windows\Microsoft.NET\Framework\v2.0.50727\aspnet_regiis.exe -sn W3SVC/ # Create Application Pool $appPoolSettings = [wmiclass] "root\MicrosoftIISv2:IISApplicationPoolSetting" $newPool = $appPoolSettings.CreateInstance() $newPool.Name = "W3SVC/AppPools/" + $newPoolName $newPool.PeriodicRestartTime = 0 $newPool.IdleTimeout = 0 $newPool.MaxProcesses = 2 $newPool.WAMUsername = $poolUserName $newPool.WAMUserPass = $poolPassword $newPool.AppPoolIdentityType = 3 $newPool.Put() # Do it again if it fails as there is a bug with Powershell/WMI if (!$?) { $newPool.Put() } # Create the virtual directory mkdir $newVDirPath $virtualDirSettings = [wmiclass] "root\MicrosoftIISv2:IIsWebVirtualDirSetting" $newVDir = $virtualDirSettings.CreateInstance() $newVDir.Name = $newVDirName $newVDir.Path = $newVDirPath $newVDir.EnableDefaultDoc = $False $newVDir.Put() # Do it a few times if it fails as there is a bug with Powershell/WMI if (!$?) { $newVDir.Put() } # Create the application on the virtual directory $vdir = Get-WmiObject -namespace "root\MicrosoftIISv2" -class "IISWebVirtualDir" -filter "Name = '$newVDirName'" $vdir.AppCreate3(2, $newPoolName) # Updated the Friendly Name of the application $newVDir.AppFriendlyName = $newApplication $newVDir.Put() </code></pre>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload