我想在外部磁碟機上安裝 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
按回車鍵
- 透過鍵入將分區設定為活動狀態
積極的
按 Enter 鍵。
- 透過鍵入 Exit 退出 Diskpart。
。
現在雙擊您下載的 Windows 8 ISO 將其安裝到 Windows 8 中。
在 Windows 資源管理器中瀏覽到 ISO 文件,並將 \sources\install.wim 複製到複製 Imagex.exe 的相同資料夾中。
識別 Windows 資源管理器指派給 USB 磁碟機的磁碟機代號,然後從包含 Imagex.exe 和 install.wim 的資料夾執行下列命令:
imagex.exe /應用 install.wim 1 d:\
將 d 替換為 USB 隨身碟的磁碟機號碼。
套用映像後,您需要在 USB 磁碟機上設定引導記錄。在管理層級命令提示字元下運行:
bcdboot.exe d:\windows /sd: /f 全部
(將 d 替換為 USB 隨身碟的磁碟機代號。)按 Enter 鍵
命令運行完成後,您就可以使用新的 Windows To Go USB 裝置了。
***注意:我唯一不確定的是這是否可以在 Windows 7 中完成,文章專門顯示使用 W8 執行此過程,可能與 bcdboot 命令有關,不確定。
。