WIM2VHD失败,“无法从挂载点派生卷GUID”。

我试图根据Scott Hanselman的博客文章中的说明使用WIM2VHD来创buildSysprepped VHD映像以从其启动。 我已经安装了WAIK,并将我的Windows 7源作为虚拟驱动器进行装载。

当我尝试像这样运行WIM2VHD时:

cscript WIM2VHD.wsf /wim:F:\sources\install.wim /sku:Ultimate /vhd:E:\WindowsSeven.vhd /size:30721 

我得到以下日志:

 Log for WIM2VHD 6.1.7600.0 on 11/2/2009 at 10:51:18.16 Copyright (C) Microsoft Corporation. All rights reserved. MACHINE INFO: Build=7600 Platform=x86fre OS=Windows 7 Ultimate ServicePack= Version=6.1 BuildLab=win7_rtm BuildDate=090713-1255 Language=en-ZA INFO: Looking for IMAGEX.EXE... INFO: Looking for BCDBOOT.EXE... INFO: Looking for BCDEDIT.EXE... INFO: Looking for REG.EXE... INFO: Looking for DISKPART.EXE... INFO: Session key is E01E1ED7-C197-4814-BDE4-43B73E14FCC4 INFO: Inspecting the WIM... INFO: Configuring and formatting the VHD... ******************************************************************************* Error: 0: Cannot derive Volume GUID from mount point. ******************************************************************************* INFO: Unmounting the VHD due to error... WARNING: In order to help resolve the issue, temporary files have not been deleted. They are in: C:\Users\Jacob\AppData\Local\Temp\WIM2VHD.WSF\E01E1ED7-C197-4814-BDE4-43B73E14FCC4 *emphasized text*Summary: Errors: 1, Warnings: 1, Successes: 0 INFO: Done. 

有任何想法吗?

请修改你的命令行如下:

cscript WIM2VHD.wsf /wim:F:\sources\install.wim/sku:Ultimate /vhd:E:\WindowsSeven.vhd/size:30721/true:true

并发布日志文件的内容。 这将有助于我弄清楚发生了什么事情。

您可以通过在命令行中添加/classicmount:true来解决问题。

 cscript WIM2VHD.wsf /classicmount:true /wim:F:\sources\install.wim /sku:Ultimate /vhd:E:\WindowsSeven.vhd /size:30721