Advertisement
Guest User

Remote

a guest
Sep 28th, 2015
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.49 KB | None | 0 0
  1. @echo off
  2. mode con:cols=36 lines=21
  3. :loop
  4. cls
  5. echo[
  6. echo " __ "
  7. echo " / / "
  8. echo "(___ ___ ___ ___ ___ ___ "
  9. echo " )|___)|___ |___ | | )| )"
  10. echo " __/ |__ __/ __/ | |__/ | / "
  11. echo " "
  12. echo[
  13. echo Host is %ip%
  14. echo[
  15. echo -----------
  16. echo Tracert:TR
  17. echo Pingx40:PING
  18. echo -----------
  19. echo Remote Assistance:RA
  20. echo Remote Desktop:RD
  21. echo Remote Cmd:CMD
  22. echo Criss:CC
  23. echo VNC
  24.  
  25. set /p no2=
  26. if "%no2%" == "ping" (echo Pinging Host %ip%
  27. ping %IP% -a -n 40)
  28.  
  29. if "%no2%" == "tr" (echo Tracing Host %ip%
  30. tracert %IP%)
  31.  
  32. if "%no2%" == "name" (
  33. set /p name=Name :)
  34. if "%no2%" == "who" (wmic.exe /node:%ip% ComputerSystem Get Username)
  35.  
  36. if "%no2%" == "ip" (
  37. Set /p IP=Select Machine Number Address to assist :)
  38. if "%no2%" == "ra" (%windir%\system32\msra.exe /offerra %ip%)
  39.  
  40. if "%no2%" == "rd" (%windir%\system32\mstsc.exe /v %ip% )
  41.  
  42. if "%no2%" == "vnc" (PSTools\vnc.exe %ip%)
  43.  
  44. if "%no2%" == "cmd" (PSTools\PsExec.exe \\%ip% cmd)
  45.  
  46. if "%no2%" == "info" (PSTools\PsInfo.exe \\%ip%)
  47.  
  48. if "%no2%" == "80" "C:\Program Files\Internet Explorer\iexplore.exe" http://%IP%
  49.  
  50.  
  51. if "%no2%" == "cc" (PSTools\CC.exe /h:%ip% /v /noask /go)
  52.  
  53. echo On %Date% @ %time% Host %ip% %no2% %Time% %UID% %name% Session >> RemoteHelplog.txt
  54. pause
  55. GOTO loop
  56. :endloop
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement