Creating Low/Zero Touch Windows 11 Installations for a Small PC Repair Shop with Variety of Different Machines and Licensing Situations
In this article, we will discuss the steps to set up low/zero touch Windows 11 installations in a small PC repair shop with a variety of different machines and licensing situations. We will cover the key concepts, subtopics, and provide a detailed guide on how to create an unattended installation.
Preparation
-
Hardware Requirements
- Ensure that the hardware of the machines meets the minimum requirements for Windows 11.
- Make sure that the BIOS is up-to-date and supports UEFI and Secure Boot.
-
Licensing
- Determine the licensing situation for each machine.
- If you have Volume Licensing, you can use the Media Creation Tool or the Windows 11 Installation Assistant to create installation media.
- If you have Retail Licenses, you can purchase Windows 11 Home or Pro from the Microsoft Store and use it to create installation media.
Creating Installation Media
-
Download the Windows 11 Installation Assistant
- Go to the Microsoft Download Center and download the Windows 11 Installation Assistant.
- Run the installer and follow the prompts to download the Windows 11 ISO file.
-
Create a Bootable USB Drive
- Use a tool like Rufus or the built-in Windows Disk Management tool to create a bootable USB drive from the downloaded ISO file.
Creating an Unattended Installation
- Create an Unattend.xml File
- Create a new text file and name it
Unattend.xml. - Open the file in a text editor and paste the following XML code:
- Create a new text file and name it
<unattend xmlns="urn:schemas-microsoft-com:unattend">
<settings pass="specialize">
<component name="Microsoft-Windows-Shell-Setup" processorArchitecture="x64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<UserAccounts>
<LocalAccounts>
<LocalAccount name="Administrator" password="YourPassword" protected="true" />
</LocalAccounts>
</UserAccounts>
<WindowsComponent>
<PackageName>Microsoft-Windows-InternationalCore-Core-English</PackageName>
</WindowsComponent>
</component>
</settings>
</unattend>
-
Customize the Unattend.xml File
- Replace
YourPasswordwith a strong password for the Administrator account. - If you want to install a specific language pack, replace
Microsoft-Windows-InternationalCore-Core-Englishwith the appropriate package name.
- Replace
-
Integrate the Unattend.xml File into the Installation Media
- Use a tool like
mkisofsorImageXto integrate theUnattend.xmlfile into the Windows 11 ISO file.
- Use a tool like
Performing the Installation
-
Boot the Machine from the USB Drive
- Restart the machine and boot from the USB drive.
-
Start the Installation
- Follow the prompts to install Windows 11.
- During the installation process, the unattend file will be used to automate the installation and configure the system.
Summary
- Prepare the hardware and determine the licensing situation for each machine.
- Download the Windows 11 Installation Assistant and create a bootable USB drive.
- Create an unattend file and customize it for your needs.
- Integrate the unattend file into the installation media.
- Boot the machine from the USB drive and start the installation.
References