Para empezar el curso, les dejo una lista de las instalaciones generales que les recomiendo. Recuerden que más adelante tendremos una sección dedicada a la configuración y generalidades de ClaudeCode, estas son configuraciones generales del equipo.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $configSection = Get-IISConfigSection -SectionPath "system.applicationHost/sites" | |
| $state = Get-IISConfigCollection $configSection | Get-IISConfigCollectionElement -ConfigAttribute @{"Name"="Default Web Site"} | Get-IISConfigAttributeValue -AttributeName "State" | |
| if($state -eq "Started") | |
| { | |
| Write-Host "Default Web Site esta iniciado" -ForegroundColor Green | |
| }else | |
| { | |
| Write-Host "Default Web Site no esta iniciado" -ForegroundColor Red | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $goodmodules = @( | |
| "Web-Server", | |
| "Web-WebServer", | |
| "Web-Common-Http", | |
| "Web-Default-Doc", | |
| "Web-Default-Doc" | |
| ) | |
| $badmodules = @( | |
| "Web-DAV-Publishing", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Write-Host "Instalacion IIS Server Script V1" | |
| Import-Module servermanager | |
| Remove-WindowsFeature Web-ASP, Web-CGI,Web-Ftp-Server | |
| Add-WindowsFeature Web-WebServer, Web-Common-Http, Web-Asp-Net45, Web-Static-Content |
NewerOlder
