无忧启动论坛

 找回密码
 注册
搜索
系统gho:最纯净好用系统下载站投放广告、加入VIP会员,请联系 微信:wuyouceo
楼主: a66
打印 上一主题 下一主题

[教程] 【2023.6.11】安装Windows PE 到硬盘常用方法及所需工具

    [复制链接]
151#
发表于 2025-3-11 09:05:35 | 只看该作者
回复

使用道具 举报

152#
发表于 2025-3-11 09:27:28 | 只看该作者
感谢分享
回复

使用道具 举报

153#
发表于 2025-3-22 19:32:00 | 只看该作者
写的很详细,各种方法都有,谢谢分享!
回复

使用道具 举报

154#
发表于 2025-3-24 18:04:38 | 只看该作者
好详细的教程,这个软件原来还可以这么用
回复

使用道具 举报

155#
发表于 2025-4-20 21:40:12 | 只看该作者
感谢分享啊啊啊
回复

使用道具 举报

156#
发表于 2025-5-13 09:25:08 | 只看该作者
谢谢提供分享
回复

使用道具 举报

157#
发表于 2025-5-13 17:40:07 | 只看该作者
教程很有用,感谢分享
回复

使用道具 举报

158#
发表于 2025-5-19 15:20:48 | 只看该作者
谢谢分享!!!
回复

使用道具 举报

159#
发表于 2025-5-20 11:06:33 | 只看该作者
请问硬盘上没有系统,能安装PE到硬盘上当系统使用吗?老电脑有这个需求;具体该如何操作?谢谢。

点评

a66
不能  详情 回复 发表于 2025-5-20 11:15
回复

使用道具 举报

160#
 楼主| 发表于 2025-5-20 11:15:25 | 只看该作者
whyak 发表于 2025-5-20 11:06
请问硬盘上没有系统,能安装PE到硬盘上当系统使用吗?老电脑有这个需求;具体该如何操作?谢谢。

不能
回复

使用道具 举报

161#
发表于 2025-6-25 17:08:50 | 只看该作者
需要这个但是没有权限下载啊!!

点评

a66
蓝奏云也无下载权限,胡说?  详情 回复 发表于 2025-6-25 17:37
回复

使用道具 举报

162#
发表于 2025-6-25 17:26:16 | 只看该作者
好东西,谢谢分享
回复

使用道具 举报

163#
 楼主| 发表于 2025-6-25 17:37:42 | 只看该作者
Leo6064 发表于 2025-6-25 17:08
需要这个但是没有权限下载啊!!

蓝奏云也无下载权限,胡说?
回复

使用道具 举报

164#
发表于 2025-7-5 10:55:20 | 只看该作者
感谢分享
回复

使用道具 举报

165#
发表于 5 天前 | 只看该作者
三、利用批处理一键傻瓜安装
1. 将Windows PE映像文件.wim 重命名为 boot.wim 后放进boot文件夹中
是放在system32文件夹的boot文件夹下吗?

点评

a66
在磁盘根目录建立的boot文件夹  详情 回复 发表于 5 天前
回复

使用道具 举报

166#
发表于 5 天前 | 只看该作者
个人一直在用的vbs代码,文件名为:启动.vbs,相同目录下,包含boot.sdi、boot.wim。

dim WshShell,ph
'管理员身份运行
Set WshShell = WScript.CreateObject("WScript.Shell")
If WScript.Arguments.Length = 0 Then
  Set ObjShell = CreateObject("Shell.Application")
  ObjShell.ShellExecute "wscript.exe" , """" & WScript.ScriptFullName   & """ RunAsAdministrator " &   WshShell.CurrentDirectory   , , "runas", 1
  WScript.Quit
End if

'获取当前目录
ph= WScript.Arguments(1) & "\"

'获取系统目录
set fs=wscript.createobject("scripting.filesystemobject")
set wfolder=fs.getspecialfolder(1)
wfolder=wfolder & "\"

WshShell.Run wfolder & "xcopy " & ph & "boot.* c:\",0,true

'追加WinPe启动条目
WshShell.Run wfolder & "bcdedit /create {ramdiskoptions}",0,true
WshShell.Run wfolder & "bcdedit /set {ramdiskoptions} ramdisksdidevice partition=C:",0,true
WshShell.Run wfolder & "bcdedit /set {ramdiskoptions} ramdisksdipath  \boot.sdi",0,true

WshShell.Run wfolder & "bcdedit /create  {ffffffff-8d96-11de-8e71-fffffffffffe} /d WinPe /application osloader",0,true
WshShell.Run wfolder & "bcdedit /set  {ffffffff-8d96-11de-8e71-fffffffffffe} device ramdisk=[C:]\boot.wim,{ramdiskoptions}",0,true

WshShell.Run wfolder & "bcdedit /set  {ffffffff-8d96-11de-8e71-fffffffffffe} description WinPe",0,true
WshShell.Run wfolder & "bcdedit /set  {ffffffff-8d96-11de-8e71-fffffffffffe} locale zh-CN",0,true
WshShell.Run wfolder & "bcdedit /set  {ffffffff-8d96-11de-8e71-fffffffffffe} inherit {bootloadersettings}",0,true
WshShell.Run wfolder & "bcdedit /set  {ffffffff-8d96-11de-8e71-fffffffffffe} osdevice ramdisk=[C:]\boot.wim,{ramdiskoptions}",0,true
WshShell.Run wfolder & "bcdedit /set  {ffffffff-8d96-11de-8e71-fffffffffffe} systemroot \windows",0,true
WshShell.Run wfolder & "bcdedit /set  {ffffffff-8d96-11de-8e71-fffffffffffe} detecthal   Yes",0,true
WshShell.Run wfolder & "bcdedit /set  {ffffffff-8d96-11de-8e71-fffffffffffe} winpe  Yes",0,true
WshShell.Run wfolder & "bcdedit /set  {ffffffff-8d96-11de-8e71-fffffffffffe} ems    no",0,true
WshShell.Run wfolder & "bcdedit /displayorder {ffffffff-8d96-11de-8e71-fffffffffffe} /addlast",0,true

WshShell.Run wfolder & "bcdedit.exe /default {ffffffff-8d96-11de-8e71-fffffffffffe}",0,true

WshShell.Run  wfolder & "bcdedit.exe /timeout 5",0,true

'重启
WshShell.Run wfolder & "Shutdown.exe -r -t 0",0,true

回复

使用道具 举报

167#
 楼主| 发表于 5 天前 | 只看该作者
本帖最后由 a66 于 2025-7-15 16:26 编辑
annyhow 发表于 2025-7-15 15:35
三、利用批处理一键傻瓜安装
1. 将Windows PE映像文件.wim 重命名为 boot.wim 后放进boot文件夹中
是放在 ...
下载蓝奏云的 "安装 Windows PE 到硬盘"  解压后的boot文件夹
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

闽公网安备 35020302032614号

GMT+8, 2025-7-20 21:32

Powered by Discuz! X3.3

© 2001-2017 Comsenz Inc.

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