Crear un servicio FTP anónimo en Windows Server con IIS y PowerShell
INSTALAR EL PAQUETE Abre PowerShell como Administrador y ejecuta: install-windowsfeature web-ftp-server -includemanagementtools -includeallsubfeature CREAR EL SITIO FTP Da de alta el sitio, ejecutando: New-WebFtpSite -Name «FTPAnon» -IPAddress «*» -Port 21 Crea la carpeta para el sitio FTP: mkdir «c:\inetpub\ftproot\FTPAnon» Agrega la carpeta a la configuración del sitio: import-module WebAdministration Set-ItemProperty «IIS:\Sites\FTPAnon» -Name physicalPath -Value ‘C:\inetpub\ftproot\FTPAnon’ […]