Windows 11 installation can be done in several ways, but one of the most flexible methods is using an ISO file. This guide provides step-by-step instructions on how to download the Windows 11 ISO, extract the WIM file, determine the correct index for your preferred edition and deploy it from your deployment system.
Step 1: Download the Windows 11 ISO
To install Windows 11, you first need the installation media.
- Go to the official Microsoft download page: https://www.microsoft.com/en-us/software-download/windows11
- Scroll down to the "Download Windows 11 Disk Image (ISO)" section.
- Select Windows 11 from the dropdown and click Download.
- Choose your preferred language and confirm.
- Click the 64-bit Download button to start downloading the ISO file.
Step 2: Extract the WIM File from the ISO
The ISO contains all necessary installation files, including install.wim
or install.esd
. You need to extract this file to access different Windows 11 editions.
Using PowerShell or Command Prompt
-
Mount the ISO:
- Right-click the downloaded ISO and select Mount.
- Note the drive letter assigned (e.g.,
E:\
).
-
Open Command Prompt as Administrator and navigate to the mounted drive:
cd /d E:\sources
-
Check if
install.wim
orinstall.esd
is present:dir install.*
-
If
install.wim
is in the ISO, copy it to another location (e.g.,C:\Win11
):copy install.wim C:\Win11\
If
install.esd
is found instead, you need to convert it toinstall.wim
using DISM:dism /Export-Image /SourceImageFile:E:\sources\install.esd /SourceIndex:1 /DestinationImageFile:C:\Win11\install.wim /Compress:max /CheckIntegrity
Step 3: Identify the Correct Edition Index
Windows 11 ISO contains multiple editions within install.wim
. To determine the correct edition index:
- Open Command Prompt as Administrator.
- Run the following command to list available editions:
dism /Get-ImageInfo /ImageFile:C:\Win11\install.wim
- The output will display a list of available editions along with their index numbers. Example output:
Index : 1 Name : Windows 11 Home Description : Windows 11 Home Index : 2 Name : Windows 11 Pro Description : Windows 11 Pro
- Note the index number corresponding to the edition you want to install.
Step 4: Create Bootable Media (Optional)
If you need to install Windows 11 on another device, create a bootable USB drive:
- Download Rufus: https://rufus.ie/
- Insert a USB drive (at least 8GB) and open Rufus.
- Select the downloaded Windows 11 ISO.
- Choose GPT for UEFI systems or MBR for legacy BIOS.
- Click Start to create the bootable USB.
Step 5: Start the Installation manually (Optional)
- Boot from the USB drive (enter BIOS/UEFI and select USB as the boot device).
- Follow the Windows 11 setup wizard.
- When prompted, select the correct edition matching your license.
- Complete the installation process and set up your system.
Step 6: Deploy Windows 11 using upKeeper Manager
- Copy or move install.wim to your distribution point in a suitable folder (e.g., C:\Distribution\OS\Windows_11)
- Create platform in upKeeper Manager (see screenshot below):
- Type: Image
- Name: Windows 11
- Setup: dism.exe
- Setup Parameters (change index and path accordingly): /apply-image /imagefile:"Z:\OS\Windows_11\install.wim" /index:2 /applydir:c:\
- Path: Z:\OS\Windows 11\install.wim
- Post Command (optional): dism.exe /image:c:\ /Add-Driver /driver:"c:\drivers" /recurse
- Visible: checked
- Click Save to create platform.
- Click Settings tab to add installation configuration. Configuration can be created using "Windows Assessment and Deployment Kit" or example file (settings.xml) included in this article. The computer name setting should include the string [COMPUTERNAME] which will be replaced during installation. <computername>[COMPUTERNAME]<computername>
- Click Save
- Wait for upKeeper Manager Application Server to get and save file size and crc values for the platform.
- Add created platform to computers.
- Start computers on upKeeper Service Operating System to install/reinstall computers.
This guide ensures you have full control over the Windows 11 installation process, allowing you to install the correct edition efficiently.
Comments
0 comments
Please sign in to leave a comment.