如何從USB運行Windows 8 Developer Preview

Running Windows 8 from a USB should not be confused with installing Windows on a USB drive–in this case, instead of installing it on the drive, we’re just running it straight from the portable drive. Here’s how to do it.

從USB運行Windows 8不應與在USB驅動器上安裝Windows混淆–在這種情況下,我們不是直接在便攜式驅動器上運行它,而是在驅動器上安裝Windows 8。 這是操作方法。

This is actually a new feature in Windows 8 called Windows To Go, but if you have been using the Windows 8 Developer Preview you will know that the binaries were removed for this release. The feature which will use a wizard called the Portable Workspace creator relies on existing Windows Deployment technologies, most notably imagex.exe which is a tool used to manage .WIM files. In order to do this there is a few things we need:

這實際上是Windows 8中稱為Windows To Go的一項新功能,但是如果您一直在使用Windows 8 Developer Preview,則會知道該版本的二進制文件已被刪除。 該功能將使用一個稱為“便攜式工作區”創建器的向導,該功能依賴于現有的Windows部署技術,最著名的是imagex.exe,它是用于管理.WIM文件的工具。 為了做到這一點,我們需要做一些事情:

  • A bootable Windows 8 PC (You can also use a Virtual Machine)

    可啟動的Windows 8 PC(您也可以使用虛擬機)
  • A USB 3.0 16GB USB (This will work on a USB 2.0 but might appear to be a bit slow)

    USB 3.0 16GB USB(這可以在USB 2.0上使用,但可能看起來有點慢)
  • A Windows 8 ISO File or DVD

    Windows 8 ISO文件或DVD
  • An active internet connection (To download the WAIK)

    活躍的互聯網連接(下載WAIK)

So grab those few things and a hot cup of coffee and lets get started, at this point you should have your Windows 8 PC booted up and your USB connected.

因此,抓住這些東西和一杯熱咖啡,開始吧,這時,您應該啟動Windows 8 PC并連接USB。

威克 (WAIK)

As mentioned are going to have to obtain a copy of imagex.exe, luckily for us it is distributed as part of the WAIK (Windows Automated Installation Kit) which can be downloaded from the Microsoft website.

如前所述,必須獲得imagex.exe的副本,幸運的是,它作為WAIK(Windows自動安裝工具包)的一部分分發,可以從Microsoft網站下載該文件。

Note: The download is just under 1.7GB so if you have a slow internet line you might be waiting for a while.

注意:下載空間不到1.7GB,因此,如果您的互聯網線路速度較慢,則可能需要等待一段時間。

Once the download has completed this will need to be installed on your Windows 8 PC, the install is just of the next, next, finish type and doesn’t require any thinking.

下載完成后,需要將其安裝在Windows 8 PC上,該安裝僅是下一,下一,完成類型,不需要任何考慮。

sshot-9

sshot-3

Once the WAIK has finished installing if you are running a 32-Bit version of the Developer Preview navigate to C:\Program Files\Windows AIK\Tools\x86 and send imagex.exe to the root of drive C:\

如果您正在運行32位版本的Developer Preview,則在WAIK完成安裝后,導航至C:\ Program Files \ Windows AIK \ Tools \ x86并將imagex.exe發送到驅動器C:\的根目錄

If you are running a 64-Bit installation you need to navigate to C:\Program Files\Windows AIK\Tools\amd64 and send imagex.exe it to the root of the C:\ drive.

如果運行的是64位安裝,則需要導航到C:\ Program Files \ Windows AIK \ Tools \ amd64并將imagex.exe發送到C:\驅動器的根目錄。

sshot-5

創建USB (Creating The USB)

At this point you need to either insert the Windows 8 DVD or mount the Windows 8 ISO file, by right clicking on it and choosing Mount. Switch to the Windows 8 Start screen then type CMD and press Ctrl + Shift + Enter to run a Command Prompt with administrative rights.

此時,您需要插入Windows 8 DVD或掛載Windows 8 ISO文件,方法是右鍵單擊它并選擇“掛載”。 切換到Windows 8“開始”屏幕,然后鍵入CMD,然后按Ctrl + Shift + Enter運行具有管理權限的命令提示符。

sshot-7

Now type the following commands into the command Window:

現在,在命令窗口中鍵入以下命令:

Diskpart List Disk

磁盤部分列表磁盤

sshot-4

Then run the following commands

然后運行以下命令

Select Disk 2 (Replace Disk 2 with whatever number you USB Disk is, seen above) Clean Create Partition Primary Select Partition 1 Active Format FS=NTFS Quick Assign Exit

選擇磁盤2 (用您的USB磁盤號替換磁盤2,如上所示)清潔創建分區主分區選擇分區1活動格式FS = NTFS快速分配退出

sshot-1

Type Exit to leave Diskpart, but keep the command Window open.

鍵入Exit退出Diskpart,但保持命令窗口打開。

sshot-1

Now type the following command

現在鍵入以下命令

C:\imagex.exe /apply D:\sources\install.wim 1 H:\

C:\ imagex.exe / apply D:\ sources \ install.wim 1 H:\

Note: Substitute the D:\ for the drive letter that your Windows 8 DVD is in and the H:\ for the drive letter of your USB.

注意:將D:\替換為Windows 8 DVD所在的驅動器號,并將H:\替換為USB的驅動器號。

sshot-4

Now drink what is left of your coffee as you wait Windows to expand the WIM file onto your USB. Once its done, a success message will be displayed. The only thing left to do is to copy the files needed to make the USB bootable to the flash drive. To do this run the following command.

現在,當您等待Windows將WIM文件擴展到USB上時,請喝咖啡中剩下的東西。 完成后,將顯示成功消息。 剩下要做的唯一一件事就是將使USB可啟動的文件復制到閃存驅動器。 為此,請運行以下命令。

bcdboot.exe H:\windows /s H: /f ALL

bcdboot.exe H:\ windows / s H:/ f全部

sshot-6

That’s all there is to it, now you have a fully functioning installation of Windows 8 Developer Preview running from your USB. The first time you boot from the USB, Windows will install all the drivers you need for the PC you booted on.

這就是全部,現在您已經可以通過USB運行功能完整的Windows 8 Developer Preview安裝。 第一次從USB啟動時,Windows將安裝啟動PC所需的所有驅動程序。

Note: Just as a side note the final version of the Portable Workspace creator will let you clone your entire Windows machine (Programs, Customizations, Settings) to a flash drive, using the above method you will have a clean installation of Windows 8 running from a USB, your programs will NOT be transferred as we are applying the stock Windows 8 Developer Preview WIM to a flash drive, rather than cloning your existing installation.

注意:順便說一句,Portable Workspace Creator的最終版本將使您可以將整個Windows計算機(程序,自定義設置,設置)克隆到閃存驅動器,使用上述方法,您將全新安裝Windows 8, USB,您的程序將不會被傳輸,因為我們將庫存的Windows 8 Developer Preview WIM應用于閃存驅動器,而不是克隆現有安裝。

Thanks to Windows8Italia for pointing this out.

感謝Windows8Italia指出這一點。

翻譯自: https://www.howtogeek.com/98296/how-to-run-windows-8-developer-preview-from-a-usb/

本文來自互聯網用戶投稿,該文觀點僅代表作者本人,不代表本站立場。本站僅提供信息存儲空間服務,不擁有所有權,不承擔相關法律責任。
如若轉載,請注明出處:http://www.pswp.cn/news/279101.shtml
繁體地址,請注明出處:http://hk.pswp.cn/news/279101.shtml
英文地址,請注明出處:http://en.pswp.cn/news/279101.shtml

如若內容造成侵權/違法違規/事實不符,請聯系多彩編程網進行投訴反饋email:809451989@qq.com,一經查實,立即刪除!

相關文章

PAT-乙級-1042 字符統計

請編寫程序,找出一段給定文字中出現最頻繁的那個英文字母。 輸入格式: 輸入在一行中給出一個長度不超過 1000 的字符串。字符串由 ASCII 碼表中任意可見字符及空格組成,至少包含 1 個英文字母,以回車結束(回車不算在內…

acm教程 java版_[轉]ACM之java速成

這里指的java速成,只限于java語法,包括輸入輸出,運算處理,字符串和高精度的處理,進制之間的轉換等,能解決OJ上的一些高精度題目。1. 輸入:格式為:Scanner cin new Scanner(newBuffe…

配置SSH非管理員用戶登錄

以root身份登進系統后,增加一個非root帳戶,名稱為:systemadmin,密碼按您的需求設置一個即可。接下來我們要禁止root直接登陸。 [rootmail ~]# useradd systemadmin [rootmail ~]# passwd systemadmin [rootmail ~]# vim /etc/ssh/sshd_conf…

火狐查cookie_Firefox 65默認會阻止跟蹤Cookie

火狐查cookieMozilla today released Firefox 63, which includes an experimental option to block third-party tracking cookies, protecting against cross-site tracking. You can test this out today, but Mozilla wants to enable it for everyone by default in Firef…

chromebook刷機_如何將iTunes音樂移至Chromebook

chromebook刷機If you switch between platforms a lot, you know it’s a hassle to move your stuff around. Fortunately, music files don’t have any sort of DRM tying them to a specific platform the way that movies do, so you can copy and paste your library ar…

機房管理系列之殺毒服務器維護

對于企業安全管理方面,“防患于未然”,事前的預防遠遠大于事故處理,在企業內部保障機房服務器安全運行尤為重要,如何確保企業的安全?我們接下來講的就是對Symantec殺毒服務器的管理。首先是掃描策略的應用。什么時間升…

php v9 上傳_phpcms v9 表單添加文件上傳字段

phpcms v9 表單添加文件上傳字段1.打開目錄 ./phpcms/modules/content/fields/ ;把 文件夾downfile,拷貝到目錄./phpcms/modules/formguide/fields/里面。2.打開文件 ./phpcms/modules/formguide/fields/fields.inc.php ,在數組$fields添加值 ‘downfile’>’文件…

nowcoder OI 周賽 最后的晚餐(dinner) 解題報告

最后的晚餐(dinner) 鏈接: https://www.nowcoder.com/acm/contest/219/B 來源:牛客網 題目描述 \(\tt{**YZ}\)(已被和諧)的食堂實在是太擠辣!所以\(\tt{Apojacsleam}\)現在想邀請他的一些好友去…

阿里巴巴Java開發手冊終極版

2019獨角獸企業重金招聘Python工程師標準>>> 一、編程規約: (一)命名風格 1. 【強制】 代碼中的命名均不能以下劃線或美元符號開始,也不能以下劃線或美元符號結束。 反例: _name / __name / $Object / name_ / name$ / Object$ 2.…

ios6.1.6可用微信_這是iOS 12.1的新增功能,今天可用

ios6.1.6可用微信While iOS 12 is still fairly fresh, the first point release will be rolling out starting today. This brings a handful of new features, like Group Facetime, dual SIM support, camera improvements, new emoji, and more. 盡管iOS 12仍然相當新鮮&a…

Hadoop實戰項目之網站數據點擊流分析(轉載分析)

本文轉載于csdn博主‘一直不懂’ 一,項目業務背景 https://blog.csdn.net/shenchaohao12321/article/details/82958936 二,整體技術流程及架構 https://blog.csdn.net/shenchaohao12321/article/details/82959255 三,數據采集 https://blog.c…

php rewrite url_PHP實現url重寫和.htaccess

.htaccess是一個完整的文件名(只有后綴),它是用于Apache服務器下的配置文件,當.htaccess文件放在某一文件夾下,它僅對該文件夾下的文件和文件夾有效。通過.htaccess文件,可以配置服務器實現很多功能,比如錯誤定位&…

esp32 cam工作電流_我如何在家工作:Cam的生產力之痛

esp32 cam工作電流Telecommuting is becoming more and more common these days, with many tech writers (myself included) working from home on a full-time basis. I get asked about how I work fairly often, so here’s the skinny. 如今,遠程辦公變得越來越…

PL/SQL Developer結合oracle精簡客戶端配置說明

oracle 11g精簡版客戶端配置 ORACLE 一般情況下都會部署在服務器上,而在客戶端上需使用PL/SQL Developer 等連接工具連接服務器上的 ORACLE 。 而此時往往需要在客戶端上也安裝上百兆的 ORACLE 然后通過 ORACLE 的網絡配置向導來配置完成 PL/SQL Developer 的支持。…

NUMPY數據集練習 ----------SKLEARN類

123456<br><br># 1. 安裝scipy&#xff0c;numpy&#xff0c;sklearn包import numpyfrom sklearn.datasets import load_iris# 2. 從sklearn包自帶的數據集中讀出鳶尾花數據集dataprint(data.data)123# 3.查看data類型&#xff0c;包含哪些數據data load_iris()pr…

java 偽異步 netty,大話netty系列之--偽異步BIO

生意規模擴大話說&#xff0c;老王和大明的生意越來越好&#xff0c;這就需要兩個人增強業務往來&#xff0c;由于天南地北&#xff0c;兩個人只能每次運輸都需要雇一個人去運貨(new 一個線程)&#xff0c;一個月下來&#xff0c;兩人一算&#xff0c;人力成本太大了&#xff0…

如何使用Windows搜索在任何文件中搜索文本

Many of us rely on Windows Search to find files and launch programs, but searching for text within files is limited to specific file types by default. Here’s how you can expand your search to include other text-based files. 我們中的許多人都依賴Windows搜索…

php算法求出兔子數列,PHP算法:斐波那契數列的N種算法

前言前段時間&#xff0c;遇到優化計算斐波那契數列的常規遞歸方法&#xff0c;但是一時間并沒有及時想到很好的方法&#xff0c;所以后面查找了相關資料&#xff0c;總結了多種計算解法&#xff0c;所以分享出來&#xff0c;和大家一起交流學習。斐波那契數是什么斐波那契數列…

.net core MongoDB 初試

是這樣的&#xff0c;我們有一個場景&#xff0c;另一個服務器是寫到MongoDB里面&#xff0c;我們的MVC頁面要展示&#xff0c;需要分頁展示 自己寫了一個DAL public class MongoConnect{public string ConnectString { get; set; }}public class MongoBaseDAL<TEntity>{…

Linux文件和目錄權限:chmod、更改所有者和所屬組:chown,umask命令,隱藏權限:lsattr/chattr...

文件和目錄權限chmod&#xff1a; 我們使用ls -l可以看到文件的詳細信息&#xff0c;也知道第一列的第一個符號(字母)表示文件的類型&#xff0c;在表示文件的類型符號的后面的九個符號則表示的是文件的權限&#xff0c;這些權限和文件的所有者和所屬組都有關系&#xff1a; 文…