Passer au contenu principal
  • Passer des commandes rapidement et facilement
  • Afficher les commandes et suivre l’état de votre expédition
  • Profitez de récompenses et de remises réservées aux membres
  • Créez et accédez à une liste de vos produits
  • Gérer vos sites, vos produits et vos contacts au niveau des produits Dell EMC à l’aide de la rubrique Gestion des informations de l’entreprise.

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

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

Cet article a peut-être été traduit automatiquement. Si vous avez des commentaires concernant sa qualité, veuillez nous en informer en utilisant le formulaire au bas de cette page.

Contenu de l’article


Instructions


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


Propriétés de l’article


Produit concerné

Desktops & All-in-Ones, Laptops

Dernière date de publication

09 nov. 2023

Version

5

Type d’article

How To