我尝试将西班牙语语言包添加到 Windows Vista Ultimate x64 SP2 iso 文件并删除英语 LP。
一些信息可以帮助您回答:
- 我的电脑上安装的操作系统是 Windows 7 Ultimate x64 SP1
- 文件中的操作系统
.iso
是 Windows Vista Ultimate x64 SP2 - 我正在使用 WAIK 的 DISM 工具 v6.1。
我已install.wim
成功将文件挂载到文件夹中,问题从这里开始:
我输入了命令dism /Image:mountedfolder /Get-Packages
并且 dism 输出以下内容:
The command specified is unknown or not supported when running DISM.exe against a Windows Vista with Service Pack 1 or a Windows Server 2008 target image.
For more information, see the Help documentation available in the Windows Automated Installation Kit <Windows-AIK> or the Windows OEM Preinstallation Kit <OPK>.
看来 dism 与 Windows Vista 映像不兼容。
DISM 能与 Windows Vista 映像一起使用吗?有没有 dism 的替代品?有没有办法添加 LP 而无需下载第三方软件(Microsoft 工具除外)?
答案1
看来您正在寻找imagex.exe
和peimg.exe
。
最低版本的 DISM 是为 Windows 7 制作的。如果您需要对 Windows Vista 执行相同操作,则可以使用适用于 Vista 的 WAIK,例如imagex.exe
、intlcfg.exe
和。如果您正在管理软件包,我建议它能满足您的确切需求。pkgmgr.exe
peimg.exe
peimg.exe
如果你从 Vistalizator 下载了 LP,请查看http://www.froggie.sk/download/langadd64.cmd和http://www.froggie.sk/download/langlist64.cmd这些命令是为 Windows Vista 制作的。如果您不想使用第三方工具,您可以阅读这些命令文件并了解如何使用peimg.exe
。
相当于/Get-Packages
in peimg.exe
。
peimg.exe /list path\to\your\mounted\wim
相当于/Add-Package
inpeimg.exe
是(下面的例子是根据你的问题和你的需要而来的)。
"%WAIK%\Tools\PETools\peimg.exe" /import=path\to\your\lp.cab path\to\your\mounted\wim
"%WAIK%\Tools\PETools\peimg.exe" /install=*LanguagePack* path\to\your\mounted\wim
要挂载/卸载你的 ISO,请使用imagex.exe
。