diff --git a/Windows/WS1/DeviceServerIIS.md b/Windows/WS1/DeviceServerIIS.md new file mode 100644 index 0000000..0cae036 --- /dev/null +++ b/Windows/WS1/DeviceServerIIS.md @@ -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 +``` \ No newline at end of file