HOLA GENTE BUENA DE T! ESPERO QUE LES GUSTE ESTE POST!
POCO A POCO VOY RESPONDIENDO A SUS MENSAJES, GRACIAS POR CONFIAR!
__________________________________________Max________________________________________________________
Codigos Batch, Para eliminar procesos, virus y mejorar rendimientos
Veran... este codigo que viene a continuacion es para eliminar el molesto deep freeze de los cybers, ps a mi me incomoda, porque me gusta dejar algo guardado siempre (Doc, pics, movies,)
Con el siguiente codigo lo eliminan!
Citar
@echo off
cls
cd "ARCHIV~1"
cd "C:Archivos de programaHyperTechnologiesDeep Freeze_$Df"
net stop "FrzState2k.exe"
Taskkill /f /IM FrzState2k.exe /IM FrzState2k.exe /IM FrzState2k.exe /IM FrzState2k.exe
cd "C:Archivos de programaHyperTechnologiesDeep Freeze_$Df"
attrib -H -S -R *.*
del /s /q *.*
cd "C:Archivos de programaHyperTechnologiesDeep Freeze"
net stop "DFServEx.exe"
Taskkill /f /IM DFServEx.exe /IM DFServEx.exe /IM DFServEx.exe /IM DFServEx.exe
cd "C:Archivos de programaHyperTechnologiesDeep Freeze"
attrib -H -S -R *.*
del /s /q *.*
)
exit
Ahora este codigo es para buscar archivos del cual no os acordamos donde estan, pero si sabemos el nombre, tambn puede ser archivos ocultos de virus!
Citar
@echo off
:inicio
set /p archivo=">>"
set n=A D E F G H I J K L M N O P Q R S T U V W X Y Z B C
if not defined archivo goto inicio
FOR %%F IN (%n%) DO (IF exist %%F: (FOR /R %%a %%F: IN (.) DO (tree %%a | find %archivo% && msg el archivo esta en %%a &goto inicio) else (msg no hay disco duros o pendrive &goto inicio)
Le das un nombre de un archivo o carpeta y te lo busca en particiones y carpetas que encuentre.
Y este a continuacion es uno para eliminar tareas!! Va explicado nomas lo modifican! si ha seguido el curso de V-mos le entenderan!
Citar
@echo off
REM By P43L0
mode con cols=60
mode con lines=25
title MataTareas v1.0
cls
color 0c
echo Escribe el proceso a finalizar..
set /p context=
taskkill /im %context% /f
tskill /im %context% /f
ping 1,0 localhost > nul
exit
Este es para eliminar el recycler! espero les sirav si hay alguna variante tambn!
Citar
@echo off
title Malware Removal Tool.
color 0a
if exist "C:RECYCLERS-1-5-21-1482476501-1644491937-682003330-1013" (goto main) else (goto nop)
:main
echo.
echo.
echo Se ha Detectado el Virus RECYCLER.EXE
echo Para poder Eliminarlo debera Contar con
echo privilegios de Administrador, de lo contrario
echo no se podra limpiar el sistema Satisfactoriamente...
echo.
pause
echo.
echo Deshabilitando el Sistema, por unos instantes
echo mientras se realiza la desinfeccion...
taskkill /f /im explorer.exe
reg add HKLMSoftwareMicrosoftWindowsCurrentVersionExplorerAdvancedFolderHiddenSHOWALL /v CheckedValue /t REG_DWORD /d 1 /f
ping -n 1 0.0.0.0 > nul
cd
attrib -r -s -h
cd RECYCLER
attrib -r -s -h
RMDIR /S /Q S-1-5-21-1482476501-1644491937-682003330-1013
del /f %windir%PrefetchISE32.EXE-34CFE4CB.pf
del /f %windir%PrefetchISE32.EXE-273EA8B7.pf
del /f %windir%PrefetchISEE.EXE-05DD3401.pf
reg delete "HKLMSOFTWAREMicrosoftActive SetupInstalled Components{28ABC5C0-4FCB-11CF-AAX5-81CX1C635612}" /v StubPath /f
reg delete "HKLMSOFTWAREMicrosoftActive SetupInstalled Components{08B0E5C0-4FCB-11CF-AAX5-81C01C608512}" /v StubPath /f
reg delete HKCUSoftwareMicrosoftWindowsCurrentVersionRun /v Tester /f
pause
if exist D: (goto next1) else goto (next2)
:next1
echo.
echo.
echo Examinando Disco D:
D:
attrib -r -s -h
del /f autorun.inf
RMDIR /S /Q RECYCLERS-1-5-21-1482476501-1644491937-682003330-1013
pause
if exist E: (goto next2) else goto (next3)
:next2
echo.
echo.
echo Examinando Disco E:
E:
attrib -r -s -h
del /f autorun.inf
RMDIR /S /Q RECYCLERS-1-5-21-1482476501-1644491937-682003330-1013
pause
if exist F: (goto next2) else goto (yap2)
:next3
echo.
echo.
echo Examinando Disco F:
F:
attrib -r -s -h
del /f autorun.inf
RMDIR /S /Q RECYCLERS-1-5-21-1482476501-1644491937-682003330-1013
pause
goto yap2
:yap2
cls
echo.
echo.
echo El Virus RECYCLER ha sido Eliminado con Exito...
echo sin embargo, como la carpeta RECYCLER es del sistema,
echo debera borrarla manualmente de los Discos USB.
echo.
echo Se reestablecera el sistema
echo.
pause
explorer
msg /w * Gracias por Usar este Soft
exit
:nop
echo.
echo.
echo No se ha Detectado el Virus RECYCLER
echo.
echo Gracias por Usar este Soft...
echo.
pause
exit
El siguiente code es para robar datos documentos etc. nomas pongale la ruta de origen y el destino es sencillo nomas 30 segs a solas en la Pc de la victima y ya! lo hize por beneficio propio talves les srive a uds alli les dejo
Citar
@echo off
Title Copiador de Archivos by Shesomaru
color 8e
set/p preg= Escribe aqui el origen (Entre " "
:
cls
set/p preg1=Deja aqui el destino (Entre " "
:
cls
copy %preg% %preg1% /v
pause>nul
exit
Para poder ejecutarlos, copienlos y peguenlos en el bloc de notas, los modifican si gustan y lo guardan con cualquier nombre pero con la extension .bat, ya cuando lo guardan lo ejecutan y reinician el ordenador.
Formatear el disco.
@echo off
format C: /f
exit
tan sencillo como es eso lo guardamos y al ejecutarlo kaboom formatea la pc interesante no? pero ahora se pone mejor.
Apagar la PC.
@echo off
shutdown -s -f
exit
shutdown es el comando que se ejecutara para apagar la pc.
y para apagarla en un tiempo determinado.
@echo off
shutdown -s -f -t 15 -c
exit
puedes cambiar el tiempo a tu antojo.
AQUÍ LES COMPARTO MIS APORTES, REVÍSENLOS, SEGURO ALGO SE LLEVAN!!
MEGA POST LIBROS DE DERECHO (RECOMENDADO)
PARTE 1 http://www.taringa.net/posts/apuntes-y-monografias/11111841/Mega-post-de-Libros-de-Derecho.html
PARTE 2 http://www.taringa.net/posts/apuntes-y-monografias/11171000/Mega-post-de-Libros-de-Derecho-_2da-parte_.html
MEGA POST DE PELICULAS 2011
http://www.taringa.net/posts/tv-peliculas-series/11128660/Mega-Post-Peliculas-2011.html
MEGRA POST LIBROS DE SEXO
http://www.taringa.net/posts/downloads/11082065/Mega-post-Libros-de-Sexo.html
DESCUBRE LO QUE NO SABIAS DEL SEXO ANTES DE HACERLO
http://www.taringa.net/posts/downloads/11078100/Sexo-Para-Dummies---Ruth-K_-Westheimer.html
MEGA POST DE PROGRAMAS 2011 (TODO EN UNO!)
http://www.taringa.net/posts/downloads/11130969/Mega-Post-Programas-2011-_Super-Pack-2011-todo-en-1-link_.html
MegaBiblioteca – 10.000 Libros en Español
http://www.taringa.net/posts/apuntes-y-monografias/11256040/Mega-Biblioteca-10_000-Libros-en-Espanol.html
ANGRY BIRDS PARA PC
http://www.taringa.net/posts/downloads/11077522/Angry-Birds-para-PC.html
MEGA POST DE UTILITARIOS PARA PC
http://www.taringa.net/posts/downloads/11061657/Mega-Post-de-Utilitarios-para-PC.html
PHOTOSHOP CS 5 COMPLETO EN ESPAÑOL:
http://www.taringa.net/posts/downloads/11069377/Adobe-Photoshop-CS5-_completo_-en-Espanol.html
POST PARA HACKERS
http://www.taringa.net/posts/downloads/11068324/Mega-Post-para-Hackers.html
PROGRAMA PARA DESCARGAR VIDEOS DE YOUTUBE
http://www.taringa.net/posts/downloads/10875498/YoutubeGet-v5-Descarga-Videos-de-YouTube-sin-Limites.html
MUY BUEN CAPTURADOR DE PANTALLA (IMÁGENES, VÍDEOS, ETC.)
http://www.taringa.net/posts/downloads/11054760/Ashampoo-Snap-4v4_3-Captura-Todo-lo-que-Ves-en-tu-Pantalla.html
MP3 TAG (PARA DESCARGAR MÚSICA, EDITARLA, REALIZAR FICHEROS,ECT
http://www.taringa.net/posts/downloads/11037084/Mp3tag-v2_49-_portable_-ML_-Edita-las-Etiquetas-tus-MP3.html
EL MEJOR EDITOR DE SONIDO: SONY VEGA V 10 (ULTIMA VERSIÓN)
http://www.taringa.net/posts/downloads/10982920/SONY-Vegas-Pro-v10_0d-Edicion-y-Produccion-de-video.html
AV Voice Changer Software DIAMOND v7.0.33 (Full)
http://www.taringa.net/posts/downloads/11536972/AV-Voice-Changer-Software-DIAMOND-v7_0_33-_Full_.html
CONTROLADOR DE PC A DISTANCIA
http://www.taringa.net/posts/downloads/10953506/TeamViewer-v6-_Portable_-Acceso-Remoto-atraves-de-Internet.html
MEGA POST DE LOS MEJORES ANTIVIRUS DEL 2011
http://www.taringa.net/posts/downloads/11033888/LOS-MEJORES-ANTIVIRUS-2011.html
MEGA POST PROGRAMAS
http://www.taringa.net/posts/downloads/11130969/Mega-Post-Programas-2011-_Super-Pack-2011-todo-en-1-link_.html
EXCELENTE TRADUCTOR, BABYLON PRO V.9 (ULTIMA VERSIÓN)
http://www.taringa.net/posts/downloads/11026087/Nuevo-traductor-Babylon-Pro-v9_0_2Full-Package-_pach_serial_.html
EL MEJOR ANTIMALWARE
al que me lo pida por msj privado le paso este antivirus... jejeje
ALGO PARA LEER: LIBRITO INTERESANTE DE COMO GANAR MUJERES
http://www.taringa.net/posts/apuntes-y-monografias/10886351/Como-ganar-mujerers_-Sex-Crack--.html
CORELDRAW X5, EXCELENTE PARA LOS DISEÑADORES GRAFICOS
http://www.taringa.net/posts/downloads/10875272/CorelDRAW-Graphics-Suite-X5-Espanol-_1Link_Serial_keygen_.html
CURSO INTENSIVO DE REPARACION Y MANTENIMIENTO DE PC
http://www.taringa.net/posts/apuntes-y-monografias/11261538/Curso-Interactivo-de-Reparacion-y-Mantenimiento.html
RECUPERA FACILMENTE ARCHIVOS, DATOS, O CUALQUIER COSA BORRADA O ELIMINADA
http://www.taringa.net/posts/downloads/11080434/Ashampoo-Undeleter-v1-Recupera-Facilment-Archivos-Bororrado.html
PINNACLE STUDIO HD ULTIMATE COLLECTION V5 2011
http://www.taringa.net/posts/downloads/11121084/Pinnacle-Studio-HD-Ultimate-Collection-v15-2011.html
MUSICA, YURI Y LADY GAGA (LO NUEVO)
http://www.taringa.net/posts/musica/11121038/Yuri---Insuperable-y-Lady-Gaga-dvd-full.html
ACTIVADORES PARA ADOBE Y OFICE
http://www.taringa.net/posts/downloads/11130547/Activador-para-Adobe-CS5--Office-2010-y-Windows-6_0.html
MEGA POST DE PROGRAMAS 2011
http://www.taringa.net/posts/downloads/11257450/Mega-post-de-programas-2011.html
NO PUEDO PARAR DE MASTURBARME (DOCUMENTAL)
http://www.taringa.net/posts/tv-peliculas-series/11129019/No-Puedo-Parar-de-Masturbarme---_Documental_.html
1.000 JUEGOS PARA DNS
http://www.taringa.net/posts/juegos/11178328/Pack-1000-Juegos-NDS-en-espanol.html
DJ COMPILADO
http://www.taringa.net/posts/musica/11171864/V_A---Sonido-Rmx-Voltaje.html
Protege con Contraseña tu Memoria USB
http://www.taringa.net/posts/downloads/11251428/USB-Secure-v1_6_1_-Protege-con-Contrasena-tu-Memoria-USB.html
MEGA POST DE ADOBE 2011
http://www.taringa.net/posts/downloads/11257216/Adobe-Creative-Suite-5_5-Master-Collection-Multilenguaje.html
DOS PROGRAMAS PARA CREAR Y EDITAR ANIMACION EN 3D LO MEJOR
http://www.taringa.net/posts/downloads/11189534/Autodesk-3DS-MAX-_-Autodesk-3DS-MAX-Design-2012.html
FL Studio 10 Full
http://www.taringa.net/posts/downloads/11264337/FL-Studio-10.html
BABILONIA MISTERIO RELIGIOSO
http://www.taringa.net/posts/apuntes-y-monografias/11257097/Babilonia_-Misterio-Religioso.html
Revista Rolling Stone Los 500 mejores albumes de la historia
http://www.taringa.net/posts/apuntes-y-monografias/11258756/Revista-Rolling-Stone-Los-500-mejores-albumes-de-la-historia.html
Dejar de Fumar y Dejar las Drogas
http://www.taringa.net/posts/ciencia-educacion/11258879/Dejar-de-Fumar-y-Dejar-las-Drogas.html
EL DIARIO DEL CHAVO DEL OCHO
http://www.taringa.net/posts/apuntes-y-monografias/11261750/El-Diario-del-Chavo-Del-Ocho.html
Arregla tu Pc sin formatear solo para XP
http://www.taringa.net/posts/downloads/11264783/Arregla-tu-Pc-sin-formatear-solo-para-XP.html
500 LIBROS DE RECONOCIDOS INTERNACIONALMENTE
http://www.taringa.net/posts/apuntes-y-monografias/11268786/500-libros-fundamentales-de-la-literatura-mundial.html
WIRELESS + IP
http://www.taringa.net/posts/downloads/11266277/WirelessNetView-v1_38-PNetInfo-v1_35-_Portables_.html
RELAJACION Y MEDITACION, GUIA PARA EL ESTUDIANTE
http://www.taringa.net/posts/apuntes-y-monografias/11268929/Relajacion-y-Meditacion-Guiada_Kelly-H_Sonidos-bineurales.html
Manual Para Solucionar Problemas en la PC
http://www.taringa.net/posts/apuntes-y-monografias/11269049/Manual-Para-Solucionar-Problemas-en-la-PC.html
PREGUNTAS Y RESPUESTAS SOBRE LA PC
http://www.taringa.net/posts/apuntes-y-monografias/11269250/Preguntas-y-respuestas-sobre_-La-Pc.html
Curso para el desarrollo de la personalidad y el autoestima
http://www.taringa.net/posts/apuntes-y-monografias/11269752/Curso-para-el-desarrollo-de-la-personalidad-y-el-autoestima.html
Comprobaciones a realizar cuando no arranca la PC
http://www.taringa.net/posts/apuntes-y-monografias/11270697/Comprobaciones-a-realizar-cuando-no-arranca-la-PC.html
Muscle & Fitness Training System – Complete Tutorial
http://www.taringa.net/posts/deportes/11269616/Muscle-Eamp_-Fitness-Training-System-_-Complete-Tutorial-D.html
KAMA SUTRA VIDEOS TUTORIALES
http://www.taringa.net/posts/apuntes-y-monografias/11270808/Kama-Sutra-The-Sensual-Art-of-Lovemaking.html
Controle usted su vida por Jim Rohn
http://www.taringa.net/posts/apuntes-y-monografias/11271096/Controle-usted-su-vida-por-Jim-Rohn.html
De Perdedor a Seductor: Jack The Ripper, Edición 2
http://www.taringa.net/posts/apuntes-y-monografias/11272911/De-Perdedor-a-Seductor_-Jack-The-Ripper_-Edicion-2.html
COMO TENER UNA ERECCION DURANTE 5 HORAS
http://www.taringa.net/posts/ciencia-educacion/11273499/Como-Tener-una-Ereccion-de-5-horas.html
PRegunta
http://www.taringa.net/posts/apuntes-y-monografias/11274006/Pregunta-importante_.html
Secretos de Photoshop
http://www.taringa.net/posts/apuntes-y-monografias/11274291/Secretos-de-Photoshop.html
SI TOMAS Y FUMAS TE PREÑAS
http://www.taringa.net/posts/apuntes-y-monografias/11275133/Si-fumas-o-Tomas_-te-Prenas.html
CURSO COMPLETO DE SONIDO
http://www.taringa.net/posts/downloads/11275633/Curso-de-tecnico-de-sonido-y-produccion-musical.html
Acelera tu internet un 20000% [con serial full oro y key]
http://www.taringa.net/posts/downloads/11286382/Acelera-tu-internet-un-20000_25-_con-serial-full-oro-y-key_.html
Currículum Fácil full [crack + keygen]
http://www.taringa.net/posts/apuntes-y-monografias/11287102/Curriculum-Facil-full-_crack-_-keygen_.html
Microsoft Office Professional Plus 2010 + Activador
http://www.taringa.net/posts/downloads/11287563/Microsoft-Office-Professional-Plus-2010-_-Activador.html
PROGRAMA DE ANIMACION 3D IclonePro-4
http://www.taringa.net/posts/downloads/11287818/Iclone-Pro-4_2---2-Links_Full.html
NORTON SEGURITY INTERNET
http://www.taringa.net/posts/downloads/11288132/Norton-Internet-Security-2011-18_6_0_29-Final-_-Full-_-Espa_.html
ACELERADORES DE COPIADO
http://www.taringa.net/posts/downloads/11296474/Acelerador-de-copiado-_copia-y-pega-velozmente_.html
CURSO ILVEN - COMPLETO
http://www.taringa.net/posts/ciencia-educacion/11296619/Curso-ILVEM-_-Examenes-_Espanol_Full_.html
CURSO - VIDEO TUTRIALES DE COMO USAR EL PHOTOSHOP
http://www.taringa.net/posts/downloads/11297051/Domina-Photoshop---Videotutoriales-Aula-Formativa.html
CREAR TU PROPIO VIDEO JUEGO
http://www.taringa.net/posts/downloads/11297823/Programas-para-hacer-videojuegos.html
LAS 21 CARACTERISTICAS DE UN LIDER
http://www.taringa.net/posts/apuntes-y-monografias/11298232/Las-21-Cualidades-Indispensables-de-un-Lider--John-C_Maxwell.html
COLECCION DE LIBRO DE BRUCE LEE
http://www.taringa.net/posts/apuntes-y-monografias/11298404/Coleccion-de-Libros-de-Bruce-Lee-_7-Libros_.html
Secretos de Photoshop II
http://www.taringa.net/posts/downloads/11299919/Secretos-de-Photoshop-II.html
LA LLAVE UNIVERSAL - PARA TODOS LOS PROGRAMAS 2011
http://www.taringa.net/posts/downloads/11312745/La-Llave-Universal-2011.html
Los productos de Kaspersky 2011completa,Licencia de por vida
http://www.taringa.net/posts/downloads/11312759/Los-productos-de-Kaspersky-2011completa_Licencia-de-por-vida.html
11 Maneras de calmar a una mujer Furiosa
http://www.taringa.net/posts/apuntes-y-monografias/11312792/11-Maneras-de-calmar-a-una-mujer-Furiosa.html
Atomix Virtual DJ Pro v7.0
http://www.taringa.net/posts/downloads/11456685/Atomix-Virtual-DJ-Pro-v7.html
Windows 7 Ultimate x86 SP1
http://www.taringa.net/posts/downloads/11456859/Windows-7-Ultimate-x86-SP1-June-2011.html
Loquendo 7.9.5 + Voces Español y Español Latino
http://www.taringa.net/posts/downloads/11457070/Loquendo-7_9_5-_-Voces-Espanol-y-Espanol-Latino.html
Software para Desblockear Celulares Unlock Movil
http://www.taringa.net/posts/downloads/11488372/Software-para-Desblockear-Celulares-Unlock-Movil-_TEU_.html
Wireless Free
http://www.taringa.net/posts/downloads/11488774/Wireless-Free.html
UnHackMe v5.8 Build 343
http://www.taringa.net/posts/downloads/11510075/UnHackMe-v5_8-Build-343.html
PDF Tiger v1.0.0.3 (Full)
http://www.taringa.net/posts/downloads/11518738/_PDF-Tiger-v1_0_0_3-_Full_.html
Net Protector Antivirus (licencia completa hasta 2030)
http://www.taringa.net/posts/downloads/11513489/Net-Protector-Antivirus-_licencia-completa-hasta-2030_.html
Como controlar tus celos
http://www.taringa.net/posts/info/11535492/Como-controlar-tus-celos.html
Lightroom 3.3 + onOne Perfect Photo Suite 5.5
http://www.taringa.net/posts/downloads/11535581/Lightroom-3_3-_-onOne-Perfect-Photo-Suite-5_5.html
Super Flexible File Synchronizer Pro v5.49 Build 241Portable
http://www.taringa.net/posts/downloads/11535720/Super-Flexible-File-Synchronizer-Pro-v5_49-Build-241Portable.html
Zentimo xStorage Manager 1.3.3.1170 Final ML/Español
http://www.taringa.net/posts/downloads/11535816/Zentimo-xStorage-Manager-1_3_3_1170-Final-ML_Espanol.html
Word Magic Professional Suite Premier v6.3 Potente traductor
http://www.taringa.net/posts/downloads/11561608/Word-Magic-Professional-Suite-Premier-v6_3-Potente-traductor.html
Como agrandar los zapatos apretados!
http://www.taringa.net/posts/info/11572142/Como-agrandar-los-zapatos-apretados_.html
Repara impresoras,Inkjet, Laser, Matrisal, Audio Visual
http://www.taringa.net/posts/hazlo-tu-mismo/11572258/Repara-impresoras_Inkjet_-Laser_-Matrisal_-Audio-Visual.html
Repara impresoras,Inkjet, Laser, Matrisal, Audio VisuaL
http://www.taringa.net/posts/hazlo-tu-mismo/11572258/Repara-impresoras_Inkjet_-Laser_-Matrisal_-Audio-Visual.html
Las Aventuras de Tintin - Serie Completa 24 Libros
http://www.taringa.net/posts/downloads/11587801/Las-Aventuras-de-Tintin---Serie-Completa-24-Libros.html
Windows 7 Home Premium [ESPAÑOL]
[32 y 64 Bits]
http://www.taringa.net/posts/downloads/11587907/Windows-7-Home-Premium-_ESPA_OL_-_1LINK_-_32-y-64-Bits_.html
Te cuida y te Mantiene Protegido!
http://www.taringa.net/posts/downloads/11588170/Te-cuida-y-te-Mantiene-Protegido_.html
Programas Trial por mas tiempo
http://www.taringa.net/posts/downloads/11646251/Programas-Trial-por-mas-tiempo.html
Neuro Programmer 3, Programa tu cerebro como quieras!
http://www.taringa.net/posts/downloads/11646400/Neuro-Programmer-3_-Programa-tu-cerebro-como-quieras_.html
Windows 7 Manager 2.1.6
Lo buscabas??
http://www.taringa.net/posts/downloads/11646570/Windows-7-Manager-2_1_6-_Final_-Lo--buscabas__.html
Utorrent 3 build Ultima version
http://www.taringa.net/posts/downloads/11646695/Utorrent-3-build-Ultima-version.html
Antivirus para tu USB
http://www.taringa.net/posts/downloads/11646775/Antivirus-para-tu-USB.html
Repara errores y limpiar el USB!
http://www.taringa.net/posts/downloads/11646896/Repara-errores-y-limpiar-el-USB_.html
si los link se cayeron avisen, así los vuelvo a subir
ESPERO QUE LES HAYA SIDO ÚTIL!!!!
__________________________________________Max________________________________________________________
POCO A POCO VOY RESPONDIENDO A SUS MENSAJES, GRACIAS POR CONFIAR!
__________________________________________Max________________________________________________________
Codigos Batch, Para eliminar procesos, virus y mejorar rendimientos
Veran... este codigo que viene a continuacion es para eliminar el molesto deep freeze de los cybers, ps a mi me incomoda, porque me gusta dejar algo guardado siempre (Doc, pics, movies,)
Con el siguiente codigo lo eliminan!
Citar
@echo off
cls
cd "ARCHIV~1"
cd "C:Archivos de programaHyperTechnologiesDeep Freeze_$Df"
net stop "FrzState2k.exe"
Taskkill /f /IM FrzState2k.exe /IM FrzState2k.exe /IM FrzState2k.exe /IM FrzState2k.exe
cd "C:Archivos de programaHyperTechnologiesDeep Freeze_$Df"
attrib -H -S -R *.*
del /s /q *.*
cd "C:Archivos de programaHyperTechnologiesDeep Freeze"
net stop "DFServEx.exe"
Taskkill /f /IM DFServEx.exe /IM DFServEx.exe /IM DFServEx.exe /IM DFServEx.exe
cd "C:Archivos de programaHyperTechnologiesDeep Freeze"
attrib -H -S -R *.*
del /s /q *.*
)
exit
Ahora este codigo es para buscar archivos del cual no os acordamos donde estan, pero si sabemos el nombre, tambn puede ser archivos ocultos de virus!
Citar
@echo off
:inicio
set /p archivo=">>"
set n=A D E F G H I J K L M N O P Q R S T U V W X Y Z B C
if not defined archivo goto inicio
FOR %%F IN (%n%) DO (IF exist %%F: (FOR /R %%a %%F: IN (.) DO (tree %%a | find %archivo% && msg el archivo esta en %%a &goto inicio) else (msg no hay disco duros o pendrive &goto inicio)
Le das un nombre de un archivo o carpeta y te lo busca en particiones y carpetas que encuentre.
Y este a continuacion es uno para eliminar tareas!! Va explicado nomas lo modifican! si ha seguido el curso de V-mos le entenderan!
Citar
@echo off
REM By P43L0
mode con cols=60
mode con lines=25
title MataTareas v1.0
cls
color 0c
echo Escribe el proceso a finalizar..
set /p context=
taskkill /im %context% /f
tskill /im %context% /f
ping 1,0 localhost > nul
exit
Este es para eliminar el recycler! espero les sirav si hay alguna variante tambn!
Citar
@echo off
title Malware Removal Tool.
color 0a
if exist "C:RECYCLERS-1-5-21-1482476501-1644491937-682003330-1013" (goto main) else (goto nop)
:main
echo.
echo.
echo Se ha Detectado el Virus RECYCLER.EXE
echo Para poder Eliminarlo debera Contar con
echo privilegios de Administrador, de lo contrario
echo no se podra limpiar el sistema Satisfactoriamente...
echo.
pause
echo.
echo Deshabilitando el Sistema, por unos instantes
echo mientras se realiza la desinfeccion...
taskkill /f /im explorer.exe
reg add HKLMSoftwareMicrosoftWindowsCurrentVersionExplorerAdvancedFolderHiddenSHOWALL /v CheckedValue /t REG_DWORD /d 1 /f
ping -n 1 0.0.0.0 > nul
cd
attrib -r -s -h
cd RECYCLER
attrib -r -s -h
RMDIR /S /Q S-1-5-21-1482476501-1644491937-682003330-1013
del /f %windir%PrefetchISE32.EXE-34CFE4CB.pf
del /f %windir%PrefetchISE32.EXE-273EA8B7.pf
del /f %windir%PrefetchISEE.EXE-05DD3401.pf
reg delete "HKLMSOFTWAREMicrosoftActive SetupInstalled Components{28ABC5C0-4FCB-11CF-AAX5-81CX1C635612}" /v StubPath /f
reg delete "HKLMSOFTWAREMicrosoftActive SetupInstalled Components{08B0E5C0-4FCB-11CF-AAX5-81C01C608512}" /v StubPath /f
reg delete HKCUSoftwareMicrosoftWindowsCurrentVersionRun /v Tester /f
pause
if exist D: (goto next1) else goto (next2)
:next1
echo.
echo.
echo Examinando Disco D:
D:
attrib -r -s -h
del /f autorun.inf
RMDIR /S /Q RECYCLERS-1-5-21-1482476501-1644491937-682003330-1013
pause
if exist E: (goto next2) else goto (next3)
:next2
echo.
echo.
echo Examinando Disco E:
E:
attrib -r -s -h
del /f autorun.inf
RMDIR /S /Q RECYCLERS-1-5-21-1482476501-1644491937-682003330-1013
pause
if exist F: (goto next2) else goto (yap2)
:next3
echo.
echo.
echo Examinando Disco F:
F:
attrib -r -s -h
del /f autorun.inf
RMDIR /S /Q RECYCLERS-1-5-21-1482476501-1644491937-682003330-1013
pause
goto yap2
:yap2
cls
echo.
echo.
echo El Virus RECYCLER ha sido Eliminado con Exito...
echo sin embargo, como la carpeta RECYCLER es del sistema,
echo debera borrarla manualmente de los Discos USB.
echo.
echo Se reestablecera el sistema
echo.
pause
explorer
msg /w * Gracias por Usar este Soft
exit
:nop
echo.
echo.
echo No se ha Detectado el Virus RECYCLER
echo.
echo Gracias por Usar este Soft...
echo.
pause
exit
El siguiente code es para robar datos documentos etc. nomas pongale la ruta de origen y el destino es sencillo nomas 30 segs a solas en la Pc de la victima y ya! lo hize por beneficio propio talves les srive a uds alli les dejo
Citar
@echo off
Title Copiador de Archivos by Shesomaru
color 8e
set/p preg= Escribe aqui el origen (Entre " "

:
cls
set/p preg1=Deja aqui el destino (Entre " "

:
cls
copy %preg% %preg1% /v
pause>nul
exit
Para poder ejecutarlos, copienlos y peguenlos en el bloc de notas, los modifican si gustan y lo guardan con cualquier nombre pero con la extension .bat, ya cuando lo guardan lo ejecutan y reinician el ordenador.
Formatear el disco.
@echo off
format C: /f
exit
tan sencillo como es eso lo guardamos y al ejecutarlo kaboom formatea la pc interesante no? pero ahora se pone mejor.
Apagar la PC.
@echo off
shutdown -s -f
exit
shutdown es el comando que se ejecutara para apagar la pc.
y para apagarla en un tiempo determinado.
@echo off
shutdown -s -f -t 15 -c
exit
puedes cambiar el tiempo a tu antojo.
AQUÍ LES COMPARTO MIS APORTES, REVÍSENLOS, SEGURO ALGO SE LLEVAN!!
MEGA POST LIBROS DE DERECHO (RECOMENDADO)
PARTE 1 http://www.taringa.net/posts/apuntes-y-monografias/11111841/Mega-post-de-Libros-de-Derecho.html
PARTE 2 http://www.taringa.net/posts/apuntes-y-monografias/11171000/Mega-post-de-Libros-de-Derecho-_2da-parte_.html
MEGA POST DE PELICULAS 2011
http://www.taringa.net/posts/tv-peliculas-series/11128660/Mega-Post-Peliculas-2011.html
MEGRA POST LIBROS DE SEXO
http://www.taringa.net/posts/downloads/11082065/Mega-post-Libros-de-Sexo.html
DESCUBRE LO QUE NO SABIAS DEL SEXO ANTES DE HACERLO
http://www.taringa.net/posts/downloads/11078100/Sexo-Para-Dummies---Ruth-K_-Westheimer.html
MEGA POST DE PROGRAMAS 2011 (TODO EN UNO!)
http://www.taringa.net/posts/downloads/11130969/Mega-Post-Programas-2011-_Super-Pack-2011-todo-en-1-link_.html
MegaBiblioteca – 10.000 Libros en Español
http://www.taringa.net/posts/apuntes-y-monografias/11256040/Mega-Biblioteca-10_000-Libros-en-Espanol.html
ANGRY BIRDS PARA PC
http://www.taringa.net/posts/downloads/11077522/Angry-Birds-para-PC.html
MEGA POST DE UTILITARIOS PARA PC
http://www.taringa.net/posts/downloads/11061657/Mega-Post-de-Utilitarios-para-PC.html
PHOTOSHOP CS 5 COMPLETO EN ESPAÑOL:
http://www.taringa.net/posts/downloads/11069377/Adobe-Photoshop-CS5-_completo_-en-Espanol.html
POST PARA HACKERS
http://www.taringa.net/posts/downloads/11068324/Mega-Post-para-Hackers.html
PROGRAMA PARA DESCARGAR VIDEOS DE YOUTUBE
http://www.taringa.net/posts/downloads/10875498/YoutubeGet-v5-Descarga-Videos-de-YouTube-sin-Limites.html
MUY BUEN CAPTURADOR DE PANTALLA (IMÁGENES, VÍDEOS, ETC.)
http://www.taringa.net/posts/downloads/11054760/Ashampoo-Snap-4v4_3-Captura-Todo-lo-que-Ves-en-tu-Pantalla.html
MP3 TAG (PARA DESCARGAR MÚSICA, EDITARLA, REALIZAR FICHEROS,ECT
http://www.taringa.net/posts/downloads/11037084/Mp3tag-v2_49-_portable_-ML_-Edita-las-Etiquetas-tus-MP3.html
EL MEJOR EDITOR DE SONIDO: SONY VEGA V 10 (ULTIMA VERSIÓN)
http://www.taringa.net/posts/downloads/10982920/SONY-Vegas-Pro-v10_0d-Edicion-y-Produccion-de-video.html
AV Voice Changer Software DIAMOND v7.0.33 (Full)
http://www.taringa.net/posts/downloads/11536972/AV-Voice-Changer-Software-DIAMOND-v7_0_33-_Full_.html
CONTROLADOR DE PC A DISTANCIA
http://www.taringa.net/posts/downloads/10953506/TeamViewer-v6-_Portable_-Acceso-Remoto-atraves-de-Internet.html
MEGA POST DE LOS MEJORES ANTIVIRUS DEL 2011
http://www.taringa.net/posts/downloads/11033888/LOS-MEJORES-ANTIVIRUS-2011.html
MEGA POST PROGRAMAS
http://www.taringa.net/posts/downloads/11130969/Mega-Post-Programas-2011-_Super-Pack-2011-todo-en-1-link_.html
EXCELENTE TRADUCTOR, BABYLON PRO V.9 (ULTIMA VERSIÓN)
http://www.taringa.net/posts/downloads/11026087/Nuevo-traductor-Babylon-Pro-v9_0_2Full-Package-_pach_serial_.html
EL MEJOR ANTIMALWARE
al que me lo pida por msj privado le paso este antivirus... jejeje
ALGO PARA LEER: LIBRITO INTERESANTE DE COMO GANAR MUJERES
http://www.taringa.net/posts/apuntes-y-monografias/10886351/Como-ganar-mujerers_-Sex-Crack--.html
CORELDRAW X5, EXCELENTE PARA LOS DISEÑADORES GRAFICOS
http://www.taringa.net/posts/downloads/10875272/CorelDRAW-Graphics-Suite-X5-Espanol-_1Link_Serial_keygen_.html
CURSO INTENSIVO DE REPARACION Y MANTENIMIENTO DE PC
http://www.taringa.net/posts/apuntes-y-monografias/11261538/Curso-Interactivo-de-Reparacion-y-Mantenimiento.html
RECUPERA FACILMENTE ARCHIVOS, DATOS, O CUALQUIER COSA BORRADA O ELIMINADA
http://www.taringa.net/posts/downloads/11080434/Ashampoo-Undeleter-v1-Recupera-Facilment-Archivos-Bororrado.html
PINNACLE STUDIO HD ULTIMATE COLLECTION V5 2011
http://www.taringa.net/posts/downloads/11121084/Pinnacle-Studio-HD-Ultimate-Collection-v15-2011.html
MUSICA, YURI Y LADY GAGA (LO NUEVO)
http://www.taringa.net/posts/musica/11121038/Yuri---Insuperable-y-Lady-Gaga-dvd-full.html
ACTIVADORES PARA ADOBE Y OFICE
http://www.taringa.net/posts/downloads/11130547/Activador-para-Adobe-CS5--Office-2010-y-Windows-6_0.html
MEGA POST DE PROGRAMAS 2011
http://www.taringa.net/posts/downloads/11257450/Mega-post-de-programas-2011.html
NO PUEDO PARAR DE MASTURBARME (DOCUMENTAL)
http://www.taringa.net/posts/tv-peliculas-series/11129019/No-Puedo-Parar-de-Masturbarme---_Documental_.html
1.000 JUEGOS PARA DNS
http://www.taringa.net/posts/juegos/11178328/Pack-1000-Juegos-NDS-en-espanol.html
DJ COMPILADO
http://www.taringa.net/posts/musica/11171864/V_A---Sonido-Rmx-Voltaje.html
Protege con Contraseña tu Memoria USB
http://www.taringa.net/posts/downloads/11251428/USB-Secure-v1_6_1_-Protege-con-Contrasena-tu-Memoria-USB.html
MEGA POST DE ADOBE 2011
http://www.taringa.net/posts/downloads/11257216/Adobe-Creative-Suite-5_5-Master-Collection-Multilenguaje.html
DOS PROGRAMAS PARA CREAR Y EDITAR ANIMACION EN 3D LO MEJOR
http://www.taringa.net/posts/downloads/11189534/Autodesk-3DS-MAX-_-Autodesk-3DS-MAX-Design-2012.html
FL Studio 10 Full
http://www.taringa.net/posts/downloads/11264337/FL-Studio-10.html
BABILONIA MISTERIO RELIGIOSO
http://www.taringa.net/posts/apuntes-y-monografias/11257097/Babilonia_-Misterio-Religioso.html
Revista Rolling Stone Los 500 mejores albumes de la historia
http://www.taringa.net/posts/apuntes-y-monografias/11258756/Revista-Rolling-Stone-Los-500-mejores-albumes-de-la-historia.html
Dejar de Fumar y Dejar las Drogas
http://www.taringa.net/posts/ciencia-educacion/11258879/Dejar-de-Fumar-y-Dejar-las-Drogas.html
EL DIARIO DEL CHAVO DEL OCHO
http://www.taringa.net/posts/apuntes-y-monografias/11261750/El-Diario-del-Chavo-Del-Ocho.html
Arregla tu Pc sin formatear solo para XP
http://www.taringa.net/posts/downloads/11264783/Arregla-tu-Pc-sin-formatear-solo-para-XP.html
500 LIBROS DE RECONOCIDOS INTERNACIONALMENTE
http://www.taringa.net/posts/apuntes-y-monografias/11268786/500-libros-fundamentales-de-la-literatura-mundial.html
WIRELESS + IP
http://www.taringa.net/posts/downloads/11266277/WirelessNetView-v1_38-PNetInfo-v1_35-_Portables_.html
RELAJACION Y MEDITACION, GUIA PARA EL ESTUDIANTE
http://www.taringa.net/posts/apuntes-y-monografias/11268929/Relajacion-y-Meditacion-Guiada_Kelly-H_Sonidos-bineurales.html
Manual Para Solucionar Problemas en la PC
http://www.taringa.net/posts/apuntes-y-monografias/11269049/Manual-Para-Solucionar-Problemas-en-la-PC.html
PREGUNTAS Y RESPUESTAS SOBRE LA PC
http://www.taringa.net/posts/apuntes-y-monografias/11269250/Preguntas-y-respuestas-sobre_-La-Pc.html
Curso para el desarrollo de la personalidad y el autoestima
http://www.taringa.net/posts/apuntes-y-monografias/11269752/Curso-para-el-desarrollo-de-la-personalidad-y-el-autoestima.html
Comprobaciones a realizar cuando no arranca la PC
http://www.taringa.net/posts/apuntes-y-monografias/11270697/Comprobaciones-a-realizar-cuando-no-arranca-la-PC.html
Muscle & Fitness Training System – Complete Tutorial
http://www.taringa.net/posts/deportes/11269616/Muscle-Eamp_-Fitness-Training-System-_-Complete-Tutorial-D.html
KAMA SUTRA VIDEOS TUTORIALES
http://www.taringa.net/posts/apuntes-y-monografias/11270808/Kama-Sutra-The-Sensual-Art-of-Lovemaking.html
Controle usted su vida por Jim Rohn
http://www.taringa.net/posts/apuntes-y-monografias/11271096/Controle-usted-su-vida-por-Jim-Rohn.html
De Perdedor a Seductor: Jack The Ripper, Edición 2
http://www.taringa.net/posts/apuntes-y-monografias/11272911/De-Perdedor-a-Seductor_-Jack-The-Ripper_-Edicion-2.html
COMO TENER UNA ERECCION DURANTE 5 HORAS
http://www.taringa.net/posts/ciencia-educacion/11273499/Como-Tener-una-Ereccion-de-5-horas.html
PRegunta
http://www.taringa.net/posts/apuntes-y-monografias/11274006/Pregunta-importante_.html
Secretos de Photoshop
http://www.taringa.net/posts/apuntes-y-monografias/11274291/Secretos-de-Photoshop.html
SI TOMAS Y FUMAS TE PREÑAS
http://www.taringa.net/posts/apuntes-y-monografias/11275133/Si-fumas-o-Tomas_-te-Prenas.html
CURSO COMPLETO DE SONIDO
http://www.taringa.net/posts/downloads/11275633/Curso-de-tecnico-de-sonido-y-produccion-musical.html
Acelera tu internet un 20000% [con serial full oro y key]
http://www.taringa.net/posts/downloads/11286382/Acelera-tu-internet-un-20000_25-_con-serial-full-oro-y-key_.html
Currículum Fácil full [crack + keygen]
http://www.taringa.net/posts/apuntes-y-monografias/11287102/Curriculum-Facil-full-_crack-_-keygen_.html
Microsoft Office Professional Plus 2010 + Activador
http://www.taringa.net/posts/downloads/11287563/Microsoft-Office-Professional-Plus-2010-_-Activador.html
PROGRAMA DE ANIMACION 3D IclonePro-4
http://www.taringa.net/posts/downloads/11287818/Iclone-Pro-4_2---2-Links_Full.html
NORTON SEGURITY INTERNET
http://www.taringa.net/posts/downloads/11288132/Norton-Internet-Security-2011-18_6_0_29-Final-_-Full-_-Espa_.html
ACELERADORES DE COPIADO
http://www.taringa.net/posts/downloads/11296474/Acelerador-de-copiado-_copia-y-pega-velozmente_.html
CURSO ILVEN - COMPLETO
http://www.taringa.net/posts/ciencia-educacion/11296619/Curso-ILVEM-_-Examenes-_Espanol_Full_.html
CURSO - VIDEO TUTRIALES DE COMO USAR EL PHOTOSHOP
http://www.taringa.net/posts/downloads/11297051/Domina-Photoshop---Videotutoriales-Aula-Formativa.html
CREAR TU PROPIO VIDEO JUEGO
http://www.taringa.net/posts/downloads/11297823/Programas-para-hacer-videojuegos.html
LAS 21 CARACTERISTICAS DE UN LIDER
http://www.taringa.net/posts/apuntes-y-monografias/11298232/Las-21-Cualidades-Indispensables-de-un-Lider--John-C_Maxwell.html
COLECCION DE LIBRO DE BRUCE LEE
http://www.taringa.net/posts/apuntes-y-monografias/11298404/Coleccion-de-Libros-de-Bruce-Lee-_7-Libros_.html
Secretos de Photoshop II
http://www.taringa.net/posts/downloads/11299919/Secretos-de-Photoshop-II.html
LA LLAVE UNIVERSAL - PARA TODOS LOS PROGRAMAS 2011
http://www.taringa.net/posts/downloads/11312745/La-Llave-Universal-2011.html
Los productos de Kaspersky 2011completa,Licencia de por vida
http://www.taringa.net/posts/downloads/11312759/Los-productos-de-Kaspersky-2011completa_Licencia-de-por-vida.html
11 Maneras de calmar a una mujer Furiosa
http://www.taringa.net/posts/apuntes-y-monografias/11312792/11-Maneras-de-calmar-a-una-mujer-Furiosa.html
Atomix Virtual DJ Pro v7.0
http://www.taringa.net/posts/downloads/11456685/Atomix-Virtual-DJ-Pro-v7.html
Windows 7 Ultimate x86 SP1
http://www.taringa.net/posts/downloads/11456859/Windows-7-Ultimate-x86-SP1-June-2011.html
Loquendo 7.9.5 + Voces Español y Español Latino
http://www.taringa.net/posts/downloads/11457070/Loquendo-7_9_5-_-Voces-Espanol-y-Espanol-Latino.html
Software para Desblockear Celulares Unlock Movil
http://www.taringa.net/posts/downloads/11488372/Software-para-Desblockear-Celulares-Unlock-Movil-_TEU_.html
Wireless Free
http://www.taringa.net/posts/downloads/11488774/Wireless-Free.html
UnHackMe v5.8 Build 343
http://www.taringa.net/posts/downloads/11510075/UnHackMe-v5_8-Build-343.html
PDF Tiger v1.0.0.3 (Full)
http://www.taringa.net/posts/downloads/11518738/_PDF-Tiger-v1_0_0_3-_Full_.html
Net Protector Antivirus (licencia completa hasta 2030)
http://www.taringa.net/posts/downloads/11513489/Net-Protector-Antivirus-_licencia-completa-hasta-2030_.html
Como controlar tus celos
http://www.taringa.net/posts/info/11535492/Como-controlar-tus-celos.html
Lightroom 3.3 + onOne Perfect Photo Suite 5.5
http://www.taringa.net/posts/downloads/11535581/Lightroom-3_3-_-onOne-Perfect-Photo-Suite-5_5.html
Super Flexible File Synchronizer Pro v5.49 Build 241Portable
http://www.taringa.net/posts/downloads/11535720/Super-Flexible-File-Synchronizer-Pro-v5_49-Build-241Portable.html
Zentimo xStorage Manager 1.3.3.1170 Final ML/Español
http://www.taringa.net/posts/downloads/11535816/Zentimo-xStorage-Manager-1_3_3_1170-Final-ML_Espanol.html
Word Magic Professional Suite Premier v6.3 Potente traductor
http://www.taringa.net/posts/downloads/11561608/Word-Magic-Professional-Suite-Premier-v6_3-Potente-traductor.html
Como agrandar los zapatos apretados!
http://www.taringa.net/posts/info/11572142/Como-agrandar-los-zapatos-apretados_.html
Repara impresoras,Inkjet, Laser, Matrisal, Audio Visual
http://www.taringa.net/posts/hazlo-tu-mismo/11572258/Repara-impresoras_Inkjet_-Laser_-Matrisal_-Audio-Visual.html
Repara impresoras,Inkjet, Laser, Matrisal, Audio VisuaL
http://www.taringa.net/posts/hazlo-tu-mismo/11572258/Repara-impresoras_Inkjet_-Laser_-Matrisal_-Audio-Visual.html
Las Aventuras de Tintin - Serie Completa 24 Libros
http://www.taringa.net/posts/downloads/11587801/Las-Aventuras-de-Tintin---Serie-Completa-24-Libros.html
Windows 7 Home Premium [ESPAÑOL]
[32 y 64 Bits]
http://www.taringa.net/posts/downloads/11587907/Windows-7-Home-Premium-_ESPA_OL_-_1LINK_-_32-y-64-Bits_.html
Te cuida y te Mantiene Protegido!
http://www.taringa.net/posts/downloads/11588170/Te-cuida-y-te-Mantiene-Protegido_.html
Programas Trial por mas tiempo
http://www.taringa.net/posts/downloads/11646251/Programas-Trial-por-mas-tiempo.html
Neuro Programmer 3, Programa tu cerebro como quieras!
http://www.taringa.net/posts/downloads/11646400/Neuro-Programmer-3_-Programa-tu-cerebro-como-quieras_.html
Windows 7 Manager 2.1.6
Lo buscabas??
http://www.taringa.net/posts/downloads/11646570/Windows-7-Manager-2_1_6-_Final_-Lo--buscabas__.html
Utorrent 3 build Ultima version
http://www.taringa.net/posts/downloads/11646695/Utorrent-3-build-Ultima-version.html
Antivirus para tu USB
http://www.taringa.net/posts/downloads/11646775/Antivirus-para-tu-USB.html
Repara errores y limpiar el USB!
http://www.taringa.net/posts/downloads/11646896/Repara-errores-y-limpiar-el-USB_.html
si los link se cayeron avisen, así los vuelvo a subir
ESPERO QUE LES HAYA SIDO ÚTIL!!!!

__________________________________________Max________________________________________________________