windowOS-製作動畫.xml

大家有用過自動安裝window 系統嗎?正常我們都用 ISO光碟片,USB和網路方法安裝OS。可這些方法我們可能要一直按下一步等等。今天我想分享如何用自動化安裝,不需要寫程式,只要把unattend.xml放進我們window ISO 或是USB的根目錄就可以。
這個自動化工具叫做unattend 如果有興趣可以在網路找相關內容。
我會教大家如何建立unattend.xml檔案,他可以幫我們自動建立帳號,切磁區等等。在這分享我沒有教如何分切磁區。

為什麼要做這個?
如果你長期在安裝windowOS我建議可以學會這個,非長方便。

Part 1 : 建立autounattend.xml 檔案。

1. 去windowsafg 網站

2. window 相關設定

用預設的設定即可。You can use the default setting, or use the same setting I set.

  • 我只設定,時間,鍵盤語言,和帳號
  • I only changed time tone, keyboard to US, and account to administrator
    account admin

3.下載autounattend.xml檔案

Download autounattend.xml file. 下載autounattend.xml檔案
downloadfile

Part 2 :autounattend.xml 放進windowOS目錄(ISO檔案或是USBdisk)。

autounattend.xml檔案放進WindowOS的根目錄。add theautounattend.xml into window image file.

  • There are many way you can do, you just have to put your eautounattend.xmlfile into windowOS root directory.
  • 我們有多方法可以把autounattend.xml放進windowOS根目錄。

    方法一:放進window ISO樣案

    我們可以把剛剛下載的.xml放進window ISO檔案,以下是如何編輯我們ISO File

    1. 請下載anyburn這個工具再安裝他。 Download anyburn tool and install it

    2. 啟動anyburn再選edit image file Open the tool and click on edit image file

    editimage

3. 選取你的ISO檔案 Select your window iso file

select-iso-file

4. Select your file autounattend.xml file 選取你的eautounattend.xml檔案

xml

5. Save your iso name (recommend change different name) 存取新個ISO檔名(建議曲新的名字)

change-iso-name

6. 建立windowOS USB開機

  • Your new iso image is created, right now you create a bootable usb disk using the iso file.
  • Create USB bootable file for window OS, use tool RUFUS, and select your disk
    我們已建好window ISO 檔案,現在準備製作window USB 開機碟,我們用RUFUS這套軟體。
    RUFUS-burniso

7. You can install OS already. 現在可以安裝OS

  • After install OS you have to select which window you can to install, after that all will be automatic.
  • 安裝OS請輸選你要安裝那個window版本OS,選完就會自動幫你安裝成功,什麼都不用設。等他綁你安裝完成。

    方法2 :放進window USB碟

  • 這個是我們一般製作window OS 的開機碟,如果不知道可以參考上面的第6步。
  • 我們再把我們的autounattend.xml 放進USB-Disk的根目錄。

Part 3 bypass the os edition selection page

  • As you can see above setting, will still need to select which OS you need to install. To automatic not occur, there are some way you can do, edit the autounattend.xml.
  • 剛剛上面步驟你會發現我們要自己選我們要安裝那一個OS版本。在這我教大家如何自動幫我們選,重投安裝到完。

1. 編輯我們的autounattend.xml檔案

2. Check window edition vlaue 檢查我們window 11 pro的直

我們需要先知道我們要安裝的window的直是哪的,這裡有一個指令可以查看看:

指令: Dism /Get-ImageInfo /ImageFile:<your_path>

EXample: Dism /Get-ImageInfo /ImageFile:F:\sources\install.wim

Note: F: 我的Window位置。

以上圖你可以看的如果我們要安裝window 11 PRO,他是第5個選項,因此我們在下面步驟要把5加進去

3. 加window安裝OS選項進autounattend.xml

剛剛上面我們用指令可以查看window 11 Pro 是第幾個選項,他是第5個選項,我們先去編輯autounattend.xml ,然後把下面語法加進去。
Note: <Value>5</Value>記得要填你的window的選單得直。

1
2
3
4
5
6
<InstallFrom>
<MetaData wcm:action="add">
<Key>/image/index</Key>
<Value>5</Value>
</MetaData>
</InstallFrom>