AyrA

https://redd.it/9o827z

Oct 14th, 2018
236
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 0.84 KB | None | 0 0
  1. @ECHO OFF
  2. REM Put this into the Tools directory
  3.  
  4. REM Make sure the current directory is what we expect
  5. SETLOCAL
  6. PUSHD %~dp0
  7.  
  8. REM Dump RAM
  9. ECHO y | DumpIt.exe
  10.  
  11. REM System Info
  12. ECHO Date of Report: [%DATE% %TIME%] > info.txt
  13. SYSTEMINFO >> info.txt
  14. WHOAMI /ALL >> info.txt
  15.  
  16. REM List of all tasks with details
  17. TASKLIST /V > tasks.txt
  18. REM Some services are not their own tasks. Show them seperately
  19. TASKLIST /SVC > services.txt
  20.  
  21. REM Network Information
  22. IPCONFIG /ALL > netinfo.txt
  23. NETSTAT -A -N >>netinfo.txt
  24.  
  25. REM Encrypted Disk Info
  26. EDD.EXE /accepteula /batchfile > eddDisks.txt
  27.  
  28. REM Export all images
  29. ROBOCOPY C:\ F:\Images\C *.jpg *.jpeg *.png *.gif *.bmp /S
  30. ROBOCOPY D:\ F:\Images\D *.jpg *.jpeg *.png *.gif *.bmp /S
  31. ROBOCOPY E:\ F:\Images\E *.jpg *.jpeg *.png *.gif *.bmp /S
  32.  
  33. POPD
  34. ENDLOCAL
  35.  
  36. CLS
  37. ECHO Dump Complete
  38. PAUSE
Add Comment
Please, Sign In to add comment