Estamos en el proceso de mover más de 100 dominios a un nuevo servidor. Creé un script que permitirá agregar una entrada al sitio web y una entrada FTP en IIS 7 usando un archivo BAT simple. Encontré varios tutoriales usando AppCmd ADD SITE, que funciona muy bien. Ejecutando :: c: \ scripts \ createIIS.bat youdomainname.com. ¿Cualquier retroalimentación? - Está funcionando.Agregar sitio web y FTP a IIS 7 mediante el script
@Echo off
:: --------------------------------------------
:: Create IIS 7 Site Entry/FTP Site
:: --------------------------------------------
:: Get variable from command %1 Root Domain Name.
set rootDomainName = %1
:: This is the path to the Web Pages on the server.
set WebFile=C:\websites\
:: ADD NEW Directory
MKDIR %WebFile%%1
:: ADD IIS ENTRY
%windir%\system32\inetsrv\AppCmd ADD SITE /name:%1 /bindings:http/*:80:%1,http/*:80:www.%1 /physicalPath:C:\websites\%1
:: --------------------------------------------
:: CREATE FTP in IIS
:: --------------------------------------------
%windir%\system32\inetsrv\AppCmd add vdir /app.name:"Default FTP Site/" /path:/%1 /physicalPath:"%WebFile%%1"
echo New Directory Created: %WebFile%%1
echo IIS Website Created: %1 and www.%1
echo FTP SITE Created: %1
echo ...
echo ...
echo COMPLETED!
pause