Advertisement
CryptoJones

FreeRDP Script fore Ubuntu

Mar 11th, 2019 (edited)
268
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.57 KB | None | 0 0
  1. #!/bin/bash
  2. xfreerdp \
  3. /v:$(zenity \
  4. --entry \
  5. --title="Hostname or IP" \
  6. --text="Enter the destination") \
  7. /d:$(zenity \
  8. --entry \
  9. --title="DOMAIN" \
  10. --text="Enter the DOMAIN" \
  11. --text="Enter the domain") \
  12. /u:"$(zenity \
  13. --entry \
  14. --title="Domain Username" \
  15. --text="Enter your Username")" \
  16. /p:$(zenity \
  17. --entry \
  18. --title="Domain Password" \
  19. --text="Enter your _password:" \
  20. --hide-text) \
  21. /f \
  22. /cert-ignore \
  23. /usb:auto \
  24. /floatbar:sticky:on,default:visible,show:fullscreen \
  25. /multimon /sound /microphone:sys:pulse,device:1,format:1,quality:high \
  26. +clipboard
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement