Solo la imagen

This commit is contained in:
2025-05-27 22:51:13 +00:00
parent 1b5308acf3
commit ba44b92de6
2 changed files with 13 additions and 73 deletions

13
cargar_imagen.cmd Normal file
View File

@@ -0,0 +1,13 @@
@echo off
setlocal
:: Crear el directorio si no existe
if not exist "C:\shared" (
mkdir "C:\shared"
)
:: Descargar la imagen
powershell -Command "Invoke-WebRequest -Uri 'https://explorer.apps.lci.ulsa.mx/files/sistemas/centro-experiencia/img0.jpg' -OutFile 'C:\shared\img0.jpg'"
echo Imagen descargada a C:\shared\img0.jpg
pause