Add Windows/WS1/DeviceServerIIS.md

This commit is contained in:
2024-03-01 13:56:27 +00:00
parent 75b9b7a853
commit c5ce616b35

View File

@@ -0,0 +1,13 @@
# 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
```