我想在外部驱动器上安装 Windows 8 Release Preview。
当我从外部硬盘中选择一个分区时,它显示
Windows cannot be installed to this disk. Setup does not support configuration
of or installation to disks connected through a USB or IEEE 1394 port.
因此我采取了以下步骤。
1. My External HDD is 1TB. I made an another partition and gave a letter S:
2. NTFS quick format
3. marked as active in Computer management. by the way the HDD is already basic.
由于我已阅读了互联网上的许多文章,我应该在 cmd 中执行类似的事情。
bootsect.exe/nt60 s:
我可以选择 S: 音量。但问题是
S:\>CD boot
The system cannot find the path specified.
谁能帮我?
答案1
Windows To Go 是 Windows 8 的一项新功能,它允许企业配置一个可从 USB 驱动器启动的完整企业环境。一旦 Windows 8 实例启动,它就会运行并由标准企业管理工具(如 SCCM 和 Active Directory 组策略)控制。在家办公和灾难恢复是主要用例,因为 Windows To Go 可以将任何 PC 转变为带有应用程序堆栈的企业 PC,所有这些都在 USB 驱动器上。Windows To Go 还非常适合在您的主要计算机上试用 Windows 8,而不会破坏您当前的操作系统。
首先你需要以下东西:
32 GB 或更大的 USB 驱动器(可以是 USB 硬盘)
用于构建 USB 驱动器的 Windows 8 PC。
Windows 8 DVD ISO。
Imagex.exe 的副本来自Windows 7 自动安装套件安装在 Windows 7 或 XP 上。ImageX 可以在 C:\Program Files\Windows AIK\Tools\amd64 或 C:\Program Files\Windows AIK\Tools\x86 中找到。
创建 Windows 8 To Go USB 设备:
Windows To Go 需要特定的分区设置才能运行。我们将使用 diskpart 来创建新的分区设置。在 Windows 8 中启动管理级命令提示符。
确保你的 USB 驱动器已插入,然后输入
磁盘分区
按 Enter 键
- 然后运行此命令列出可用的磁盘并按回车键
列出磁盘
你应该看到你的 USB 设备
- 通过键入来选择您的 USB 驱动器
选择磁盘
按回车键。# 代表您的 USB 驱动器
- 通过键入以下内容清理磁盘上的分区
干净的
点击回车。
- 现在通过运行以下命令创建分区:
创建分区主
点击回车
- 通过运行以下命令选择并格式化新的启动分区:
格式化 fs=ntfs quick
点击回车
- 通过键入以下命令将分区设置为活动分区
积极的
按 Enter 键。
- 输入 Exit 退出 Diskpart。
。
现在双击您下载的 Windows 8 ISO 以在 Windows 8 中安装它。
在 Windows 资源管理器中浏览到 ISO 文件,然后将 \sources\install.wim 复制到与复制 Imagex.exe 相同的文件夹中。
通过 Windows 资源管理器识别分配给 USB 驱动器的驱动器号,然后从包含 Imagex.exe 和 install.wim 的文件夹运行以下命令:
imagex.exe /应用安装.wim 1 d:\
将 d 替换为您的 USB 驱动器的驱动器号。)按回车键
应用映像后,您需要在 USB 驱动器上设置启动记录。在管理级命令提示符下运行:
bcdboot.exe d:\windows /sd: /f 全部
(将 d 替换为您的 USB 驱动器的驱动器号。)按回车键
命令运行完成后,您就可以使用新的 Windows To Go USB 设备了。
***注意:我唯一不确定的是这是否可以在 Windows 7 中完成,文章具体展示了使用 W8 执行此过程,可能与 bcdboot 命令有关,不确定。
。