Si no te apetece codear el splashscreen aquí tienes una simple aplicación commandline para ejecutar una imágen durante un periodo de tiempo:
-> Splat By Elektro H@cker
-> Splat By Elektro H@cker
Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Mostrar Mensajes MenúCita de: el-brujo en 18 Junio 2013, 19:22 PMRuso tocando mil pechos
@Echo OFF
REM Creamos unas cuantas carpetas y archivos...
MKDIR ".\Test1" 2>NUL
MKDIR ".\Test2" 2>NUL
Echo Test>".\Test1\Test1.txt"
Echo Test>".\Test2\Test2.txt"
REM Definimos la carpeta de destino
Set "DESTINO=C:"
REM Procesamos las carpetas una a una
For /D %%# in ("*Test*") Do (
Echo Carpeta: %%~f#
REM Y procesamos los archivos de cada carpeta uno a uno
For %%@ in ("%%~f#\*.txt") Do (
Echo Archivo: %%@
Echo copy /Y "%%~f@" "%DESTINO%\%%~nx@"
)
Echo+
)
Pause&Exit
Carpeta: C:\Users\Administrador\Desktop\1\Test1
Archivo: C:\Users\Administrador\Desktop\1\Test1\Test1.txt
copy /Y "C:\Users\Administrador\Desktop\1\Test1\Test1.txt" "C:\Test1.txt"
Carpeta: C:\Users\Administrador\Desktop\1\Test2
Archivo: C:\Users\Administrador\Desktop\1\Test2\Test2.txt
copy /Y "C:\Users\Administrador\Desktop\1\Test2\Test2.txt" "C:\Test2.txt"
Presione una tecla para continuar . . .
@echo off
setlocal enabledelayedexpansion
set "dirvar=%~dpn0.%~nx1"
mkdir "%dirvar%"
for /f "usebackq delims=" %%a in ("%1") do (
set /A x+=1
echo Linea !x!
echo %%a>"%dirvar%\!x!"
)
Pause&Exit
Cita de: Elektro H@ckerYou can't break a limitation of the OS, you can't break the 255 chars path in Windows, and you can't break the CMD interpreter lenght limitation, simply as that!
Sorry but you can't store that line into a var, no way, don't exist any magic, computers are logical.
But it's not the end of the world, you can do it so easy in any other lenguage, I recommend you Ruby or python (Ruby for that), it's an easy job, open a file, store the content into a var, and then do what you want, don't need any experience for that, if you need a example just comment this.
Cita de: krizalidk en 18 Junio 2013, 00:54 AMno es un MSI
-s
-S
/s
/S
/silent
/Silent
mode -R
Cita de: Caster en 17 Junio 2013, 23:32 PM
Que alguien me invite