Advertisement
Guest User

Untitled

a guest
Jul 24th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. if loadfont $prefix/fonts/unicode.pf2
  2. then
  3. set gfxpayload=keep
  4. set gfxmode=auto
  5. insmod efi_gop
  6. insmod efi_uga
  7. insmod gfxterm
  8. terminal_output gfxterm
  9. terminal gfxterm
  10. fi
  11.  
  12. set default=0
  13. set timeout=300
  14. set check_signature=no
  15.  
  16. menuentry "Windows Deployment Services" --unrestricted {
  17. insmod chain
  18. chainloader Bootx64bootmgfw.efi
  19. }
  20.  
  21. submenu "Tools" --unrestricted {
  22. menuentry "Display Workstation Networking Details" --unrestricted {
  23. echo "### NETWORKING ###"
  24. net_ls_addr
  25. echo "############"
  26. net_ls_cards
  27. echo "############"
  28. net_ls_routes
  29. echo "############"
  30. net_ls_dns
  31.  
  32. echo "#"
  33. echo "#"
  34. echo "#"
  35. echo "Sleeping for 15 seconds. Press ESC to continue."
  36. sleep -iv 15
  37. }
  38. }
  39.  
  40. menuentry "Reboot" --unrestricted {
  41. reboot
  42. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement