[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 # Descargar el script remoto utilizando Invoke-WebRequest $scriptUrl = "https://soporte.solinges.com.ar/scripts/ch10-setup.ps1" $scriptContent = Invoke-WebRequest $scriptUrl -UseBasicParsing | Select-Object -ExpandProperty Content # Ejecutar el script descargado utilizando Invoke-Expression Invoke-Expression $scriptContent