IIS (Internet Information Server, por sus siglas en inglés) es un servidor web extensible que provee un conjunto de servicios para sistemas operativos Windows.
1 2 3 4 5 6 7 8 9 |
Import-Module webadministration Set-Location IIS:\AppPools\ $web = New-Item C:\web\ –ItemType directory -Force "<html>hola amigos</html>" | Out-File C:\web\index.html $Website = New-Website -Name "miweb" -HostHeader "" -Port 81 -PhysicalPath $web -ApplicationPool "DefaultAppPool" |
