Add Windows/WS1/DeviceServerIIS.md
This commit is contained in:
13
Windows/WS1/DeviceServerIIS.md
Normal file
13
Windows/WS1/DeviceServerIIS.md
Normal 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
|
||||
```
|
||||
Reference in New Issue
Block a user