我使用 Macrium Reflect 将 120GB SSD 克隆到 1TB SSD。我按照以下视频中的说明进行操作(https://www.youtube.com/watch?v=7H7D1HcfY9o),但当我从新克隆的 SSD 启动并检查新的(克隆的)驱动器时,它似乎已将旧驱动器的相同 120GB 分配给新驱动器作为主分区,并将剩余的 813GB 分配给 WinRE 工具。如何扩展主分区以使其使用错误分配给 WinRE 分区的可用空间?
答案1
这是不推荐使用第三方克隆工具的众多原因之一。Windows 本身支持通过以下方式对分区进行映像DISM
在 Windows >=8 中,或ImageX
在 Windows <=7 中,其远远优于第三方克隆工具并且不会导致配置问题。
- 重新映像 SSD 并通过
DISM
或重新应用映像可能会更有效ImageX
,在下面的换行符后显示如何执行此操作影像。 - 如果知道如何重新创建 WinRE 分区,并且没有从 SSD 中删除其内容,只需通过
DiskPart
或 磁盘管理 (diskmgmt.msc
) 删除该分区,通过以下方式打开WinKey+R。- 完成后,你将能够扩展系统分区并重新创建 512MB WinRE 分区
(带有其特殊的十六进制或 GUID 标识符Diskpart
)- 通过以下方式打开管理终端WinKey+R
- 打开:
cmd
- 按下CTRL+SHIFT选择好的并批准提升权限
- 问题:
reagentc /disable
- 问题:
DiskPart
sel dis 0
0
1TB 硬盘在哪里(通过 列出驱动器lis dis
)
sel par 3
3
WinRE 分区在哪里(通过 列出分区lis par
)
del par
- 如果收到错误,请发出
del par override
- 如果收到错误,请发出
- 打开:
- 通过磁盘管理调整系统分区的大小(不要关闭
DiskPart
)- 右键单击系统分区>扩大音量...
- 重新创建 WinRE 分区(返回
DiskPart
终端):- MBR:
cre par pri size=512 id=27
GPT:cre par pri size=512 id=de94bba4-06d1-4d40-a16a-bfd50179d6ac
- 分配正确的属性:
gpt attributes=0x8000000000000001
- 分配正确的属性:
- 格式化 WinRE 分区:
format fs=ntfs quick label=Recovery
- 分配驱动器号:
assign letter=z
- 将文件从旧驱动器的 WinRE 分区复制到 WinRE 驱动器 Z:
- 通过重新注册 WinRE新的管理员终端:
reagentc /setreimage /path Z:\Recovery\WindowsRE /target C:\Windows
reagentc /enable
- 删除 WinRE 驱动器号(返回
Diskpart
终端):remove
- MBR:
- 通过以下方式打开管理终端WinKey+R
- 完成后,你将能够扩展系统分区并重新创建 512MB WinRE 分区
影像
对于 Windows 来说,第三方工具不是对分区进行映像的有效方法。
- Windows 有总是本机支持分区或单个目录的映像。
- 系统分区只能从 WinPE/WinRE 进行映像,而所有其他分区都可以在启动到 Windows 时进行映像。
- 工作记忆模块(西窗口我是年龄)可以捕获整个分区或单个文件夹/文件。
创建WimScript.ini
配置文件来指定排除或例外。
所有 WinPE/WinRE 工作记忆模块有
ImageX
或DISM
包含在其中。温控器: 赢道斯磷重新安装埃环境
- 例如 Windows 安装启动媒体 (SHIFT+F10访问终端)
温瑞: 赢道斯R生态恢复埃环境
- WinRE 是包含额外WinPE 可选组件对恢复至关重要
命令
WinPE 默认只有 32MB 的暂存 [临时] 空间,因此/ScratchDir
是必需的
Windows >=8:
DISM
被利用捕获图像:
DISM /Capture-Image /ImageFile:"Z:\Base.wim" /CaptureDir:"C:" /Name:"Windows Backup" /Description:"Base Image 2019.09.14 @ 09:25" /Compress:Max /CheckIntegrity /Verify /NoRpFix /ScratchDir:"Z:\"
应用图像:
DISM /Apply-Image /ImageFile:"Z:\Base.esd" /Index:1 /ApplyDir:"C:" /CheckIntegrity /Verify /NoRpFix /ScratchDir:"Z:\"
Windows <=7:
ImageX
代替使用DISM
:捕获图像:
ImageX /Capture "C:" "Z:\Base.esd" "Windows Backup" "Base Image 2019.09.14 @ 09:25" /Compress:Recovery /Check /Verify /NoRpFix /ScratchDir:"Z:\"
应用图像:
ImageX /Apply "Z:\Base.wim" 1 "C:" /Check /Verify /NoRpFix /ScratchDir:"Z:\"
笔记:
- 它是不可能的ESD/WIM 映像损坏
- 提供的成像命令是总是发行:
- 故障诊断管理:
/CheckIntegrity
&/Verify
- 图像X:
/Check
&/Verify
- 故障诊断管理:
- 提供的成像命令是总是发行:
- ESD 只能采取系统分割
/Compress:Recovery
是唯一可用的压缩算法。- ESD 压缩比比 WIM 压缩比高出约 33%。
- 在 Windows 10 中,Microsoft 仅允许通过 ESD 按钮重置导出图像
- ESD/WIM 是智能压缩图像格式
- 当将新图像附加到图像时,仅将更改的文件添加到图像中
- 新附加的图像利用先前图像中已包含的未更改文件的相同副本。
- 这使得图像相对于其中包含的数据来说保持较小。
- 新附加的图像利用先前图像中已包含的未更改文件的相同副本。
- 当将新图像附加到图像时,仅将更改的文件添加到图像中
DISM 和 ImageX 先决条件
- 简单的
- 下载并创建可启动USB:
- 故障诊断管理: Windows Media 创建工具
- 图像X: Windows 7 安装 ISO
- 启动后,按:SHIFT+F10打开终端
- 分布式系统管理/图像处理命令
- 下载并创建可启动USB:
- 风俗: 创建 WinPE/RE 映像Create a WinPE/RE image
- 安装:
- Windows ADK(8和10)|| 愛克(7)特定于所安装的 Windows 版本。
- 增强型:
- 对于 Windows >=10 v1809:用于 ADK 的 WinPE 插件
- 对于 Windows <=10 v1803:Windows ADK
- 选择: Windows PE&部署工具
- AIK:
- 图像X:Windows 7 AIK
- 跑步:
StartCD.exe
>Windows AIK 设置
- 跑步:
- 图像X:Windows 7 AIK
- 增强型:
- Windows ADK(8和10)|| 愛克(7)特定于所安装的 Windows 版本。
- 创造:
- 启动
- 安装:
例如:/Get-WIMinfo
||/Info
PS $ ls -file
Directory: Z:\WIM
Mode LastWriteTime Length Name
---- ------------- ------ ----
-a---- 2018.12.24 03:34:13 95,019,530,773B Base.wim
-a---- 2016.06.14 22:32:36 568B DISM.cmd
-a---- 2016.05.17 05:36:10 97B wimscript.ini
PS $ dism /get-wiminfo /wimfile:Base.wim
Deployment Image Servicing and Management tool
Version: 10.0.18362.1
Details for image : Base.wim
Index : 1
Name : Alienware 18: Windows 10
Description : v1803: Base (Drivers Only)
Size : 22,710,283,446 bytes
Index : 2
Name : Alienware 18: Windows 10
Description : v1803: Software Installed (No Customizations)
Size : 45,591,850,754 bytes
Index : 3
Name : Alienware 18: Windows 10
Description : v1803: Software Installed (Customized)
Size : 94,958,267,312 bytes
Index : 4
Name : Alienware 18: Windows 10
Description : v1803: Software Group 1 Installed (Customized)
Size : 101,588,267,910 bytes
Index : 5
Name : Alienware 18: Windows 10
Description : v1803: Software Group 2 Installed (Customized)
Size : 101,905,314,237 bytes
Index : 6
Name : Alienware 18: Windows 10
Description : v1809: Updated Applications
Size : 114,959,954,040 bytes
The operation completed successfully.
PS $ dism /get-wiminfo /wimfile:Base.wim /index:1
Deployment Image Servicing and Management tool
Version: 10.0.18362.1
Details for image : Base.wim
Index : 1
Name : Alienware 18: Windows 10
Description : v1803: Base (Drivers Only)
Size : 22,710,283,446 bytes
WIM Bootable : No
Architecture : x64
Hal : acpiapic
Version : 10.0.17134
ServicePack Build : 1
ServicePack Level : 1
Edition : Professional
Installation : Client
ProductType : WinNT
ProductSuite : Terminal Server
System Root : WINDOWS
Directories : 24288
Files : 112665
Created : 2018.05.05 - 13:56:47
Modified : 2018.05.05 - 13:56:47
Languages :
en-US (Default)
The operation completed successfully.
PS $ dism /get-wiminfo /wimfile:Base.wim /index:2
Deployment Image Servicing and Management tool
Version: 10.0.18362.1
Details for image : Base.wim
Index : 2
Name : Alienware 18: Windows 10
Description : v1803: Software Installed (No Customizations)
Size : 45,591,850,754 bytes
WIM Bootable : No
Architecture : x64
Hal : acpiapic
Version : 10.0.17134
ServicePack Build : 1
ServicePack Level : 1
Edition : Professional
Installation : Client
ProductType : WinNT
ProductSuite : Terminal Server
System Root : WINDOWS
Directories : 45803
Files : 203058
Created : 2018.05.06 - 01:55:47
Modified : 2018.05.06 - 01:55:48
Languages :
en-US (Default)
The operation completed successfully.
PS $ dism /get-wiminfo /wimfile:Base.wim /index:3
Deployment Image Servicing and Management tool
Version: 10.0.18362.1
Details for image : Base.wim
Index : 3
Name : Alienware 18: Windows 10
Description : v1803: Software Installed (Customized)
Size : 94,958,267,312 bytes
WIM Bootable : No
Architecture : x64
Hal : acpiapic
Version : 10.0.17134
ServicePack Build : 1
ServicePack Level : 81
Edition : Professional
Installation : Client
ProductType : WinNT
ProductSuite : Terminal Server
System Root : WINDOWS
Directories : 62409
Files : 350446
Created : 2018.06.01 - 19:09:51
Modified : 2018.06.19 - 21:26:18
Languages :
en-US (Default)
The operation completed successfully.
PS $ dism /get-wiminfo /wimfile:Base.wim /index:4
Deployment Image Servicing and Management tool
Version: 10.0.18362.1
Details for image : Base.wim
Index : 4
Name : Alienware 18: Windows 10
Description : v1803: Software Group 1 Installed (Customized)
Size : 101,588,267,910 bytes
WIM Bootable : No
Architecture : x64
Hal : acpiapic
Version : 10.0.17134
ServicePack Build : 1
ServicePack Level : 81
Edition : Professional
Installation : Client
ProductType : WinNT
ProductSuite : Terminal Server
System Root : WINDOWS
Directories : 61908
Files : 346074
Created : 2018.06.08 - 21:54:02
Modified : 2018.06.19 - 21:26:18
Languages :
en-US (Default)
The operation completed successfully.
PS $ dism /get-wiminfo /wimfile:Base.wim /index:5
Deployment Image Servicing and Management tool
Version: 10.0.18362.1
Details for image : Base.wim
Index : 5
Name : Alienware 18: Windows 10
Description : v1803: Software Group 2 Installed (Customized)
Size : 101,905,314,237 bytes
WIM Bootable : No
Architecture : x64
Hal : acpiapic
Version : 10.0.17134
ServicePack Build : 1
ServicePack Level : 81
Edition : Professional
Installation : Client
ProductType : WinNT
ProductSuite : Terminal Server
System Root : WINDOWS
Directories : 76113
Files : 423408
Created : 2018.06.09 - 20:38:36
Modified : 2018.06.19 - 21:26:18
Languages :
en-US (Default)
The operation completed successfully.
PS $ dism /get-wiminfo /wimfile:Base.wim /index:6
Deployment Image Servicing and Management tool
Version: 10.0.18362.1
Details for image : Base.wim
Index : 6
Name : Alienware 18: Windows 10
Description : v1809: Updated Applications
Size : 114,959,954,040 bytes
WIM Bootable : No
Architecture : x64
Hal : acpiapic
Version : 10.0.17763
ServicePack Build : 195
ServicePack Level : 0
Edition : Professional
Installation : Client
ProductType : WinNT
ProductSuite : Terminal Server
System Root : WINDOWS
Directories : 87659
Files : 452028
Created : 2018.12.24 - 04:27:13
Modified : 2018.12.24 - 04:27:15
Languages :
en-US (Default)
The operation completed successfully.