Where can I find appcmd.exe for IIS Express?

asp.net, asp.net-mvc, azure, iis, windows

Solution

For IIS Express the `appcmd.exe` application can be found here:

`C:\Program Files\IIS Express\appcmd.exe`

Problem

I'm trying to run the following: ``` rem %windir%\system32\inetsrv\appcmd set config -section:applicationPools -applicationPoolDefaults.processModel.idleTimeout:00:00:00 rem %windir%\system32\inetsrv\appcmd set config -section:applicationPools -applicationPoolDefaults.recycling.periodicRestart.time:48:00:00 ``` However there is no `appcmd.exe` file in these directories. Is there a place where I can download this file from?

Original source