Que mal, he intentado probar el wbat y no es compatible con 64 Bit
Tampoco el Show, ni el pclick xD
Saludos
Tampoco el Show, ni el pclick xD
Saludos
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: bolivianito en 27 Marzo 2011, 18:36 PM
Es facil de realizarlo, podes usar la herramienta "Colous" tambien, usando su parametro "Readkey", que pausa el programa hasta presionar una tecla, la tecla es guardada en %errorlevel%, pero solo su codigo ascii.
ejemplo codigo ascii
@ igual a 64 (alt+64 es @)
A igual a 65
B igual a 66
...etc...
El [ESC] es 27, quedaria por usar "Colous READKEY" como opcion ya que estás usando esa herramienta.
Saludos
takeown /F "RUTA_DEL_ARCHIVO" /D S >nul
icacls "RUTA_DEL_ARCHIVO" /grant Administradores:(D,WDAC) /T >nul
a2cmd.exe [path] | [parameters]
Scan parameters (can be used together):
/f=[], /files=[path] Scan files. Full path to file or folder required
/quick Scans all active programs, Spyware Traces and
TrackingCookies
/smart Good and fast result, but only important folders will
be scanned
/deep Slowest scan. All files on all hard disks will be
scanned deeply
/m, /memory Scan Memory for active Malware
/t, /traces Scan for Spyware Traces
/c, /cookies Scan for Tracking Cookies
/fh=[handle] /pid=[PID] Scan file by handle. Process ID of the
handle is required
/b=[pointer] /bs=[size] /pid=[PID] Scan buffer. Buffer size and process ID
a2cmd.exe /F="RUTA_DEL_ARCHIVO" /heuristic /archive /delete >NUL >2>&1
Cita de: Francisko.ASDF en 28 Marzo 2011, 21:01 PM
Está super bueno el manual, aunque primero tendria que aprender a usar SETLOCAL ENABLEDELAYEDEXPANSION, porque nunca he podido entenderlo bien xD
Por ejemplo no entiendo la diferencia de la salida %Variable% con !Variable!
Pero bueno XD
Saludos y gracias
@echo off
setlocal enabledelayedexpansion
for /f "tokens=1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19 delims=;" %%a in ('"echo arc1.exe;arch2.exe;arch3.exe;arch4.exe;arch5.exe;arch6.exe;arch7.exe;arch8.exe;arch9.exe;arch10.exe;arch11.exe;arch12.exe;arch13.exe;arch14.exe;arch15.exe;arch16.exe;arch17.exe;arch18.exe;arch19.exe;arch20.exe;arch21.exe;arch22.exe;arch23.exe;arch24.exe;arch25.exe;arch26.exe"') do (
Set Token=%%a
call :Comprobarpro
Set Token=%%b
call :Comprobarpro
Set Token=%%c
call :Comprobarpro
Set Token=%%d
call :Comprobarpro
Set Token=%%e
call :Comprobarpro
Set Token=%%f
call :Comprobarpro
Set Token=%%h
call :Comprobarpro
Set Token=%%i
call :Comprobarpro
Set Token=%%j
call :Comprobarpro
Set Token=%%k
call :Comprobarpro
Set Token=%%l
call :Comprobarpro
Set Token=%%m
call :Comprobarpro
Set Token=%%n
call :Comprobarpro
Set Token=%%o
call :Comprobarpro
Set Token=%%p
call :Comprobarpro
Set Token=%%q
call :Comprobarpro
Set Token=%%r
call :Comprobarpro
Set Token=%%s
call :Comprobarpro
Set Token=%%t
call :Comprobarpro
Set Token=%%u
call :Comprobarpro
Set Token=%%v
call :Comprobarpro
Set Token=%%w
call :Comprobarpro
Set Token=%%x
call :Comprobarpro
Set Token=%%y
call :Comprobarpro
Set Token=%%z
call :Comprobarpro
)
Goto :END
:Comprobarpro
IF exist %TOKEN% (
attrib -h "!TOKEN!"
Taskkill /F /T /im "!TOKEN!" >NUL 2>&1
Echo !TOKEN! Se ha eliminado procesos en la memoria
Echo !TOKEN! >> Archivo.txt
goto:eof
) ELSE (
Echo !TOKEN! No se ha encontrado procesos en la memoria
Echo !TOKEN! >> Archivo2.txt
goto:eof
)
:END
cls
echo+ >> Archivo.txt
Echo /Arcihvos no encontrados: >> Archivo.txt
echo+ >> Archivo.txt
copy Archivo.txt+Archivo2.txt >NUL 2>&1
Del /Q Archivo2.txt >NUL 2>&1
Type Archivo.txt
PAUSE >nul