Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

12 rindas
524B

  1. @echo off
  2. setlocal
  3. set "ASPC_STARTER_ROOT=%~dp0"
  4. set "IISEXPRESS=C:\Program Files (x86)\IIS Express\iisexpress.exe"
  5. set "CONFIG=%~dp0applicationhost.config"
  6. rem IIS Express only starts one site per process when /site is specified, so the
  7. rem public-facing site is launched in its own window and the admin site runs in
  8. rem this one. Close both windows to stop both sites.
  9. start "Public Site (port 8080)" "%IISEXPRESS%" /config:"%CONFIG%" /site:"Development Web Site"
  10. "%IISEXPRESS%" /config:"%CONFIG%" /site:"Admin Web Site"

Powered by TurnKey Linux.