无忧启动论坛

 找回密码
 注册
搜索

【转载】一个值得我一样的新手学习的ipxe 网启脚本文件

查看数: 12319 | 评论数: 12 | 收藏 21
关灯 | 提示:支持键盘翻页<-左 右->
    组图打开中,请稍候......
发布时间: 2016-2-22 13:13

正文摘要:

本帖最后由 nytc006 于 2016-2-23 08:08 编辑 这个是在notepad 网盘里找到的ipxe网启资源里用到的脚本文件。 相当给力哦~值得学习。感谢 notepad #!ipxe    #http://boot.ipxe.org/ipxe.iso # Bo ...

回复

tang009 发表于 2017-5-11 19:55:45

期待高手破解
oob 发表于 2017-4-22 06:30:02
不太会
lslkh 发表于 2016-7-2 00:25:45
强烈感谢楼主安乐死药价格多少  哪里有买慢性药怎么卖【QQ  2557860556】
波涛澎湃mw67 发表于 2016-6-24 11:42:05
我顶啊。接着顶












老婆不在家,约请人来家里做
史上最恐怖迷宫,千万别点
男人抵挡不住这处丰满的女人
看日本女忧的私密生活l
十个男人也征服不了这个女人
女子独处一室,寂寞难耐
恐怖!酒店摄像头拍下的灵体
AV拍摄时的花絮
灵异事件!真实记录紫禁城的午夜
艳照门事件,视频照片完整版
高清偷拍邻居少妇换内衣
dd777 发表于 2016-5-2 20:29:43
看看看看看
qmvnarqf 发表于 2016-5-1 15:40:57
提示: 作者被禁止或删除 内容自动屏蔽
cctvyz 发表于 2016-4-2 11:08:04
到底怎么做 有教程吗?  上面那些代码保存到那个位置啊   我不明白啊
nytc006 发表于 2016-2-25 12:39:56
Windows10 10586 PE x86+64(2016.2.3更新)
http://bbs.wuyou.net/forum.php?m ... &fromuid=343911
(出处: 无忧启动论坛)
ljycslg 的pe中带的ipxe脚本,给力→
  1. #!ipxe
  2.    set menu-timeout 10000
  3.    iseq ${platform} efi && set menu-default win64 || set menu-default win32
  4.    set xieyi:string http
  5.    isset ${ip} || dhcp
  6. :start
  7.   menu iPXE Boot Menu --${platform}--${ip}
  8.   item --gap --             --------------------------------- PE --------------------------------
  9.   item
  10.   item win32                Windows10 PE x86
  11.   item
  12.   item win64                Windows10 PE x64
  13.   item
  14.   item --gap --             -------------------------------- TOOL --------------------------------
  15.   item
  16.   item winmem               Windows Memmory Diagnostic
  17.   item memtest              Memtest86+ 5.01  ---- online
  18.   item test                 ${xieyi} ----  select change
  19.   item
  20.   item --gap --             ---------------------------- Advanced options -----------------------
  21.   item
  22.   item msboot               Enter Windows Boot Manager Menu (BIOS)
  23.   item --key c config       Configure settings                                   -- c
  24.   item shell                Drop to iPXE shell
  25.   item reboot               Reboot computer
  26.   item --key h local        Boot from local drive                                -- h
  27.   item --key x exit         Exit iPXE and continue BIOS boot                     -- x
  28.   choose --timeout ${menu-timeout} --default ${menu-default} selected
  29.   goto ${selected}

  30. :local
  31.   sanboot --no-describe --drive 0x80

  32. :shell
  33.   echo Type 'exit' to get the back to the menu
  34.   shell
  35.   goto start

  36. :reboot
  37.   reboot

  38. :exit
  39.   exit

  40. :config
  41.   config
  42.   goto start

  43. :msboot
  44.   chain tftp://${next-server}/pxeboot.n12
  45.   goto start

  46. :test
  47.    iseq ${xieyi} tftp && set xieyi http && goto start ||
  48.    iseq ${xieyi} http && set xieyi tftp && goto start ||

  49. :memtest
  50.   chain http://boot.ipxe.org/memtest.0 || goto retry
  51.   goto start

  52. :winmem
  53.   kernel ${xieyi}://${next-server}/boot/wimboot || goto retry
  54.   initrd ${xieyi}://${next-server}/bootmgr.exe     bootmgr.exe || goto retry
  55.   initrd ${xieyi}://${next-server}/boot/bme    BXD  || goto retry
  56.   initrd ${xieyi}://${next-server}/boot/Fonts/segmono_boot.ttf  segmono_boot.ttf || goto retry
  57.   initrd ${xieyi}://${next-server}/boot/Fonts/wgl4_boot.ttf     wgl4_boot.ttf || goto retry
  58.   initrd ${xieyi}://${next-server}/boot/memtest.exe   memtest.exe || goto retry
  59.   boot || goto retry
  60.   goto start

  61. :win32
  62.   set pefile PE32.wim
  63.   goto bootpe

  64. :win64
  65.   set pefile PE64.wim
  66.   goto bootpe

  67. :winefi
  68.   initrd ${xieyi}://${next-server}/EFI/Boot/bootx64.efi || goto retry
  69.   initrd ${xieyi}://${next-server}/boot/bcd  || goto retry
  70.   initrd ${xieyi}://${next-server}/boot/PE64.WIM || goto retry
  71.   boot || goto retry
  72.   goto start

  73. :bootpe
  74.   kernel ${xieyi}://${next-server}/boot/wimboot gui || goto retry
  75.   initrd ${xieyi}://${next-server}/boot/boot.sdi   boot.sdi  || goto retry
  76.   iseq ${platform} pcbios || goto winefi
  77.   initrd ${xieyi}://${next-server}/bootmgr.exe bootmgr.exe || goto retry
  78.   initrd ${xieyi}://${next-server}/boot/bxe bxd || goto retry
  79.   initrd ${xieyi}://${next-server}/boot/${pefile}  boot.WIM  || goto retry
  80.   boot || goto retry
  81.   goto start

  82. :retry
  83.   imgfree
  84.   prompt Error! press any key to retry
  85.   goto start
复制代码
nytc006 发表于 2016-2-23 10:13:18
notepad 发表于 2016-2-23 08:59
其实这个菜单文件还是有一些毛病的,不过主要的部分能用,所以不管也管不了。

还好只是供学习之用,如果遇到问题再去找问题解决——不遇到问题就不能进步。。。
notepad 发表于 2016-2-23 08:59:58
nytc006 发表于 2016-2-23 08:02
看了一下你发的帖子,确实是你的。
多谢!!!

其实这个菜单文件还是有一些毛病的,不过主要的部分能用,所以不管也管不了。

点评

还好只是供学习之用,如果遇到问题再去找问题解决——不遇到问题就不能进步。。。  详情 回复 发表于 2016-2-23 10:13
nytc006 发表于 2016-2-23 08:02:56
notepad 发表于 2016-2-23 00:26
看着眼熟,貌似是我网盘里面的东西。

看了一下你发的帖子,确实是你的。
多谢!!!

点评

其实这个菜单文件还是有一些毛病的,不过主要的部分能用,所以不管也管不了。  详情 回复 发表于 2016-2-23 08:59
notepad 发表于 2016-2-23 00:26:12
看着眼熟,貌似是我网盘里面的东西。

点评

哈哈~好眼力  发表于 2016-10-20 08:41
看了一下你发的帖子,确实是你的。 多谢!!!  详情 回复 发表于 2016-2-23 08:02

小黑屋|手机版|Archiver|捐助支持|无忧启动 ( 闽ICP备05002490号-1 )

闽公网安备 35020302032614号

GMT+8, 2025-7-19 10:48

Powered by Discuz! X3.3

© 2001-2017 Comsenz Inc.

快速回复 返回顶部 返回列表