1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
Configuration ServidorWeb{ param( [string[]]$computerName="localhost" ) Node $computerName{ #Install IIS Role WindowsFeature IIS{ Ensure = "Present" Name = "Web-Server" } #Install ASP.NET 4.5 WindowsFeature ASP { Ensure = "Present" Name = "Web-Asp-Net45" } } } ServidorWeb |