Fresh Installation of Windows 10: Difference between Using Windows Setup vs. DISM /Apply-Image
If you are trying to perform a fresh installation of Windows 10 on a PC without a network connection, you might run into some issues. One such problem is that Microsoft removed the timezone option in the out-of-box experience (OOBE) since Windows 10. This article will discuss the difference between using Windows Setup and Deployment Image Servicing and Management (DISM) with the /Apply-Image option for a fresh installation of Windows 10, especially in cases where there is no network connection available.
Windows Setup
The Windows Setup is the built-in tool that you can use to install Windows 10. It is a user-friendly tool that guides you through the installation process, asking you to select the language, timezone, and keyboard layout, among other options. However, if you are installing Windows 10 on a PC without a network connection, you might encounter problems, especially with the timezone option, as it is no longer available in the OOBE since Windows 10.
DISM /Apply-Image
Deployment Image Servicing and Management (DISM) is a command-line tool that can be used to service Windows images, including installing, configuring, and updating them. The /Apply-Image option applies a Windows image to a Windows partition or volumes. This method is more technical than using the Windows Setup and requires some knowledge of command-line interfaces. However, it is useful when performing a fresh installation of Windows 10 on a PC without a network connection.
Advantages of Using DISM /Apply-Image
Using DISM /Apply-Image has several advantages over using the Windows Setup in cases where there is no network connection available. Firstly, you can preconfigure the timezone and other settings during the image creation process, which means that you do not need to set them up manually during the installation process.
DISM /Apply-Image /ImageFile:C:\install.wim /Index:1 /ApplyDir:C:\
In the example above, the Windows image (install.wim) is applied to the C:\ drive. The timezone and other settings can be configured during the image creation process using tools like Windows System Image Manager (Windows SIM).
Secondly, you do not need to worry about network connectivity issues, as the image is applied directly to the target partition or volume. This method is also faster than using the Windows Setup, as it does not require downloading updates or drivers during the installation process.
Disadvantages of Using DISM /Apply-Image
Using DISM /Apply-Image has some disadvantages compared to using the Windows Setup. Firstly, it is more technical and requires some knowledge of command-line interfaces. Secondly, it does not provide the same level of user interaction as the Windows Setup, which might be confusing for some users.
- The Windows Setup is the built-in tool for installing Windows 10, but it requires a network connection for some options.
- DISM /Apply-Image is a command-line tool that can be used to apply a Windows image, including preconfiguring settings.
- Using DISM /Apply-Image has advantages, such as not requiring a network connection and being faster but is more technical.
References
- Microsoft, "Deployment Image Servicing and Management Command-Line Options," https://docs.microsoft.com/en-us/windows-hardware/manufacture/desktop/deployment-image-servicing-and-management-command-line-options-s14.
- Microsoft, "Windows System Image Manager Overview," https://docs.microsoft.com/en-us/windows-hardware/manufacture/desktop/windows-system-image-manager-overview.