Remove unused executable and image files; add script to download image to shared directory

This commit is contained in:
2025-05-28 07:49:16 -06:00
parent 0e7257f13c
commit 1b3de2f223
4 changed files with 0 additions and 51 deletions

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