将 Hyper-V RTM 集成到 Windows Server 2008 安装源

简介:
+关注继续查看
Hyper-V RTM 正式发布了,我们可以通过下载更新补丁来进行安装。此外,我们都知道 Windows Server 2008 RTM 中的 Hyper-V 是 RC0,在 Windows Server 2008 零售版未正式上架前,或微软并未推出包含 Hyper-V RTM 的 Windows Server 2008 前,我们仍然需要先安装 Hyper-V RC0 之后再进行更新么?其实不然,我们完全可以将 Hyper-V RTM 集成到 Windows Server 2008 安装源中。
首先,我们先把下载到的 Hyper-V RTM 更新补丁包解开。
expand -F:* Windows6.0-KB-950050-x64.msu C:\950050

然后,将 Windows Server 2008 安装盘中“Sources” 目录下的“Install.wim”文件拷贝到本地磁盘上。我们可以使用 “imagex /info” 来查看该安装映像的信息,以获取每个安装版本,如:Standard Full、Enterprise Full、Datacenter Full 以及 Core 所对应的标示号码(WIM Image Index)。
要将 Hyper-V RTM 集成到 WIM 映像前,需要在当前系统中加载 WIM,为此:
imagex /mountrw c:\ws08\sources\install.wim 〈WIM Image Index〉 c:\mount

然后,使用 pkgmgr 将更新补丁集成到安装源映像中。
start /w pkgmgr /ip /m:C:\950050\Windows6.0-KB950050-x64.cab /o:C:\mount;C:\mount\windows

最后,从系统中 unmount 该映像,并将修改写入到映像文件。
imagex /unmount /commit C:\mount



本文转自 苏繁 51CTO博客,原文链接:http://blog.51cto.com/goxia/221220,如需转载请自行联系原作者
目录
相关文章
|
3天前
|
JavaScript Windows 内存技术
windows下使用winget快速安装nvm
windows下使用winget快速安装nvm
17 0
|
3天前
|
Ubuntu Linux 虚拟化
如何在windows 11中安装WSLG(WSL2)
如何在windows 11中安装WSLG(WSL2)
21 0
|
8天前
|
Nacos 数据安全/隐私保护 Windows
windows下安装nacos
windows下安装nacos
29 0
|
9天前
|
数据可视化 关系型数据库 数据库
Windows安装PostgreSQL失败:There has been an error
Windows安装PostgreSQL失败:There has been an error
17 0
|
9天前
|
关系型数据库 MySQL 数据安全/隐私保护
Windows安装 MySQL5.7(超详细)
Windows安装 MySQL5.7(超详细)
18 0
|
10天前
|
Python Windows
2023年 windows python2/3 最新安装使用教程
2023年 windows python2/3 最新安装使用教程
2023年 windows python2/3 最新安装使用教程
|
12天前
|
NoSQL Linux Redis
【Redis从头学 -1】17张图带你学会Redis多环境(Linux、Windows)安装与配置
【Redis从头学 -1】17张图带你学会Redis多环境(Linux、Windows)安装与配置
26 0
|
15天前
|
Linux 开发工具 索引
安装Windows和Linux双系统需要注意的一些问题
安装Windows和Linux双系统需要注意的一些问题
25 0
|
22天前
|
NoSQL Linux Redis
redis安装(Windows+Linux)
redis安装(Windows+Linux)
30 0
|
24天前
|
关系型数据库 MySQL 数据库
免安装版MySQL(windows解压版)安装详细教程以及过程中的问题解决
免安装版MySQL(windows解压版)安装详细教程以及过程中的问题解决
推荐文章
更多