I am using a appcmdto script site that I am deploying. At the beginning of this, I try to remove some sites that are automatically installed on the provider's site. They need to be deleted because they are incorrectly configured on a non-existent part of the disk.
The command I use does not work:
C:\Windows\System32\inetsrv>appcmd delete app "AccessViaWeb(80)/AVInclude"
ERROR ( message:Must use exact identifer for APP object with verb DELETE. )
I cannot understand what syntax is required to avoid this error.
The list of applications on this server can be seen with the command appcmd list apps:
C:\Windows\System32\inetsrv>appcmd list apps
APP "Default Web Site/" (applicationPool:DefaultAppPool)
APP "Default Web Site/OPCService" (applicationPool:DefaultAppPool)
APP "PeopleFinder - 8010/" (applicationPool:PeopleFinder - 8010)
APP "AccessViaWeb(80)/" (applicationPool:DefaultAppPool)
APP "AccessViaWeb(80)/AVInclude" (applicationPool:AccessViaWeb)
APP "AccessViaWeb(80)/AccessViaPrint" (applicationPool:AccessViaPrint)
APP "AccessViaWeb(80)/SignFunctionService" (applicationPool:SignFunctionService)
source
share