メイン コンテンツに進む
  • すばやく簡単にご注文が可能
  • 注文内容の表示、配送状況をトラック
  • 会員限定の特典や割引のご利用
  • 製品リストの作成とアクセスが可能
  • 「Company Administration(会社情報の管理)」では、お使いのDell EMCのサイトや製品、製品レベルでのコンタクト先に関する情報を管理できます。

Solving Windows 10 ISO Size Issue for FAT32: Split or Extract Install.wim

概要: Learn how to manage Windows 10 ISO files with oversized install.wim for FAT32. Splitting or extracting the install.wim can solve the issue.

この記事は自動翻訳されたものである可能性があります。品質に関するフィードバックがある場合は、このページの下部にあるフォームを使用してお知らせください。

文書の内容


手順


Microsoft ISO files for Windows 10 Volume License and maybe others as well are bigger than 4 GB in total but also contain an install.wim with a size of more than 4 GB. This does not allow creating, for example, a USB stick with a FAT32 file system and would require use of NTFS instead.
If you want to boot under UEFI you might fail, as not all systems can boot from external boot media using NTFS.


There are at least two options that do not require third-party tools to get it working with FAT32 anyway:
  1. Extract the needed index/edition from the original install.wim to get a smaller one
  2. Split the install.wim file into smaller ones - preserves all editions within the ISO

 

Extract the needed index/edition from the original install.wim to get a smaller one

 

Option 1 can be done as follows (DISM commands as available under Windows 10 RS4 - might be adapted to other operating system versions):

  1. Extract the required install.wim out of the ISO file or mount the ISO file

  2. Open an elevated command prompt to use Microsoft Windows Deployment Image Servicing and Management (DISM) commands

  3. Run the following DISM command with the correct path to the install.wim to get the index that represents your needed Windows edition:

    dism /Get-WimInfo /WimFile:"c:\temp\install.wim"

    The output might look like the following:
    CMD Output
    (Figure 01)

  4. Now extract the right index (3 in this case as I want to install Enterprise edition) into a new WIM file using the DISM command:

    dism /Export-Image /SourceImageFile:"c:\temp\install.wim" /SourceIndex: 3 /DestinationImageFile: "c:\temp\install_3.wim"

    This will then look like the following:
    CMD Output
    (Figure 02)

    It reduced the file size from 4.11 GB to only 3.68 GB which now fits within the file size limitation of FAT32. You now have to rename the created file to install.wim

  5. Insert the newly created install.wim into the original ISO file or just copy it onto an already prepared USB stick with all the other needed files from the original ISO


Back to Top


 

Split the install.wim file into smaller ones - preserves all editions within the ISO

 

Option 2 can be easily done as follows:

  1. Extract the required install.wim out of the ISO file or mount the ISO file

  2. Open an elevated command prompt to use DISM commands

  3. Run the following DISM command with the correct path to the install.wim and the wanted file size in MB:

    dism /Split-Image /ImageFile:"c:\temp\install.wim /SWMFile:"c:\temp\install.swm" /FileSize: 4000

  4. Now just replace the original install.wim with the created SWM files (install.swm, install2.swm)


Back to Top


文書のプロパティ


影響を受ける製品

Desktops & All-in-Ones, Laptops

最後に公開された日付

09 11月 2023

バージョン

5

文書の種類

How To