Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- @echo off
- setlocal
- set "ASPC_STARTER_ROOT=%~dp0"
- set "IISEXPRESS=C:\Program Files (x86)\IIS Express\iisexpress.exe"
- set "CONFIG=%~dp0applicationhost.config"
-
- rem IIS Express only starts one site per process when /site is specified, so the
- rem public-facing site is launched in its own window and the admin site runs in
- rem this one. Close both windows to stop both sites.
- start "Public Site (port 8080)" "%IISEXPRESS%" /config:"%CONFIG%" /site:"Development Web Site"
- "%IISEXPRESS%" /config:"%CONFIG%" /site:"Admin Web Site"
|