13 lines
387 B
Markdown
13 lines
387 B
Markdown
# Changes to IIS Application Pool to make the Administrative Page load faster
|
|
|
|
```powershell
|
|
### needed if not installed (uncomment)
|
|
#Import-Module ServerManager
|
|
#Add-WindowsFeature Web-Scripting-Tools
|
|
|
|
Import-Module WebAdministration
|
|
$AppPool = Get-Item "IIS:\AppPools\AirWatch"
|
|
$AppPool.startMode = "AlwaysRunning"
|
|
$AppPool.processModel.idleTimeout = "04:00:00"
|
|
$AppPool | Set-Item
|
|
``` |