Advertisement
0xCor3

SO TB1

Oct 11th, 2020 (edited)
1,240
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 1.13 KB | None | 0 0
  1. echo "nim : NIM ELU DISINI" >> hasil.txt
  2. echo "nama : NAMA ELU DISINI" >> hasil.txt
  3. echo "Waktu " >> hasil.txt
  4. time /T >> hasil.txt
  5. echo "user dalam komputer ini adalah " >> hasil.txt
  6. echo " ======================" >> hasil.txt
  7. net user >> hasil.txt
  8. echo "===========" >> hasil.txt
  9. echo "mac address komputer ini" >> hasil.txt
  10. echo "user ini adalah " %USERNAME% >> hasil.txt
  11. echo "user tersebut  terakhir login " >> hasil.txt
  12. net user %USERNAME% | findstr "Last logon" >> hasil.txt
  13. echo "===========" >> hasil.txt
  14. echo " arsitektur komp ini" >> hasil.txt
  15. wmic OS get OSArchitecture >> hasil.txt
  16. echo   " windows ini versi " >> hasil.txt
  17. ver >> hasil.txt
  18. echo "windows serial number ini" >> hasil.txt
  19. wmic bios get serialnumber >> hasil.txt
  20. echo  " memory dalam komp ini" >> hasil.txt
  21. systeminfo | findstr "Total Physical:" >> hasil.txt
  22. echo " buat folder test" >> hasil.txt
  23. mkdir test
  24. echo " list folder aktif" >> hasil.txt
  25. dir >> hasil.txt
  26. echo " proses yang aktif di windows" >> hasil.txt
  27. tasklist >> hasil.txt
  28. echo "semua informasi list driver windows" >> hasil.txt
  29. echo "agak lama gaes" >> hasil.txt
  30. systeminfo >> hasil.txt
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement