克隆的 1TB 容量驱动器已为 WinRE 工具分配 813GB,我无法扩展 C 盘

克隆的 1TB 容量驱动器已为 WinRE 工具分配 813GB,我无法扩展 C 盘

我使用 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
      1. 通过以下方式打开管理终端WinKey+R
        1. 打开: cmd
        2. 按下CTRL+SHIFT选择好的并批准提升权限
        3. 问题:reagentc /disable
        4. 问题:DiskPart
          1. sel dis 0
            • 01TB 硬盘在哪里(通过 列出驱动器lis dis
          2. sel par 3
            • 3WinRE 分区在哪里(通过 列出分区lis par
          3. del par
            • 如果收到错误,请发出del par override
      2. 通过磁盘管理调整系统分区的大小(不要关闭DiskPart
        • 右键单击系统分区>扩大音量...
      3. 重新创建 WinRE 分区(返回DiskPart终端)
        1. MBR:cre par pri size=512 id=27
          GPT:cre par pri size=512 id=de94bba4-06d1-4d40-a16a-bfd50179d6ac
          • 分配正确的属性:gpt attributes=0x8000000000000001
        2. 格式化 WinRE 分区:format fs=ntfs quick label=Recovery
        3. 分配驱动器号:assign letter=z
        4. 将文件从旧驱动器的 WinRE 分区复制到 WinRE 驱动器 Z:
        5. 通过重新注册 WinRE新的管理员终端:
          1. reagentc /setreimage /path Z:\Recovery\WindowsRE /target C:\Windows
          2. reagentc /enable
        6. 删除 WinRE 驱动器号(返回Diskpart终端)remove



影像

对于 Windows 来说,第三方工具不是对分区进行映像的有效方法。

  • Windows 有总是本机支持分区或单个目录的映像。
    • 系统分区只能从 WinPE/WinRE 进行映像,而所有其他分区都可以在启动到 Windows 时进行映像。
    • 工作记忆模块西窗口我是年龄)可以捕获整个分区或单个文件夹/文件。
      创建WimScript.ini配置文件来指定排除或例外。

  • 所有 WinPE/WinRE 工作记忆模块ImageXDISM包含在其中。

    • 温控器: 道斯重新安装环境

      • 例如 Windows 安装启动媒体 (SHIFT+F10访问终端)
    • 温瑞: 道斯R生态恢复环境


命令

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 先决条件


例如:/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.

相关内容