Pcgamer27

New Member
Joined
Mar 1, 2025
Messages
2
Hello, I have a question, I am working on creating an Answer file. Does anyone know how you can add software and updates, drivers or another way, if this is possible?
 


Solution
Hi Pcgamer27,
When creating an answer file (typically an Unattend.xml for automated Windows installations), you have a couple of options regarding the integration of drivers, updates, and even additional software.
Drivers:
For drivers, you can use the unattended answer file to point to a folder where your driver files reside. In the offline servicing pass, particularly within the Microsoft-Windows-PnpCustomizationsNonUS component, you can specify the DriverPaths setting. This tells Windows Setup to scan those folders and install any appropriate drivers found—making it a straightforward method to include your drivers in the installation process.
Software and Updates:
Unlike drivers, the answer file mechanism...
Hi Pcgamer27,
When creating an answer file (typically an Unattend.xml for automated Windows installations), you have a couple of options regarding the integration of drivers, updates, and even additional software.
Drivers:
For drivers, you can use the unattended answer file to point to a folder where your driver files reside. In the offline servicing pass, particularly within the Microsoft-Windows-PnpCustomizationsNonUS component, you can specify the DriverPaths setting. This tells Windows Setup to scan those folders and install any appropriate drivers found—making it a straightforward method to include your drivers in the installation process.
Software and Updates:
Unlike drivers, the answer file mechanism doesn’t directly allow you to “inject” additional software packages or Windows updates into the installation process. Instead, you have two main approaches:
  1. Integrating via Offline Servicing:
    You can use the DISM tool to integrate Windows updates, service packs, or even specific Windows feature updates into your install.wim before creating your ISO. This process, often called “slipstreaming,” permanently updates the image, so once installation begins, the system is already up-to-date with the integrated fixes and features.
  2. Post-Installation Scripting:
    If your goal is to install third-party software or additional components post-installation, the answer file can launch a script once Windows setup completes. Using the FirstLogonCommands or SetupComplete.cmd mechanism, you can execute batch files or PowerShell scripts that download and install the desired software and update packages automatically right after the initial setup.
In Summary:
While you can efficiently integrate and install drivers using the answer file’s settings, adding software and updates generally requires tools outside the XML file itself—either by integrating updates into the image with DISM, or scheduling installations with post-installation scripts.
This approach allows your answer file to focus on configuring the system during setup while leveraging scripts or pre-integrated images to handle the rest.
Hope this helps clarify your options!
—ChatGPT
 


Solution
Hi Pcgamer27,
When creating an answer file (typically an Unattend.xml for automated Windows installations), you have a couple of options regarding the integration of drivers, updates, and even additional software.
Drivers:
For drivers, you can use the unattended answer file to point to a folder where your driver files reside. In the offline servicing pass, particularly within the Microsoft-Windows-PnpCustomizationsNonUS component, you can specify the DriverPaths setting. This tells Windows Setup to scan those folders and install any appropriate drivers found—making it a straightforward method to include your drivers in the installation process.
Software and Updates:
Unlike drivers, the answer file mechanism doesn’t directly allow you to “inject” additional software packages or Windows updates into the installation process. Instead, you have two main approaches:
  1. Integrating via Offline Servicing:
    You can use the DISM tool to integrate Windows updates, service packs, or even specific Windows feature updates into your install.wim before creating your ISO. This process, often called “slipstreaming,” permanently updates the image, so once installation begins, the system is already up-to-date with the integrated fixes and features.
  2. Post-Installation Scripting:
    If your goal is to install third-party software or additional components post-installation, the answer file can launch a script once Windows setup completes. Using the FirstLogonCommands or SetupComplete.cmd mechanism, you can execute batch files or PowerShell scripts that download and install the desired software and update packages automatically right after the initial setup.
In Summary:
While you can efficiently integrate and install drivers using the answer file’s settings, adding software and updates generally requires tools outside the XML file itself—either by integrating updates into the image with DISM, or scheduling installations with post-installation scripts.
This approach allows your answer file to focus on configuring the system during setup while leveraging scripts or pre-integrated images to handle the rest.
Hope this helps clarify your options!
—ChatGPT
Do you have any videos or where can I find them?
 


Hi Pcgamer27,
I don’t have my own video content to share, but I can definitely point you in the direction of some excellent resources that cover these topics.
Where to Find Videos:
  • YouTube Tutorials:
    There are several tutorials available on YouTube that cover creating an answer file, integrating drivers, and even slipstreaming updates. Try searching for terms like “Windows Unattended Installation answer file tutorial”, “Creating an Unattend.xml with WSIM”, or “Integrating drivers and updates with DISM”. Channels like https://www.youtube.com/results?search_query=WSIM+unattend.xml or even IT-focused channels often provide step-by-step walkthroughs.
  • Microsoft Documentation & Virtual Labs:
    Microsoft’s official documentation sometimes includes video walkthroughs or guidance on using the Windows Assessment and Deployment Kit (ADK) and Windows System Image Manager (WSIM). Check out the https://learn.microsoft.com/en-us/windows-hardware/customize/desktop/wsim/answer-files-overview and related Microsoft deployment resources for useful links and sometimes embedded videos.
  • Community Forums and Blogs:
    Often, community blogs or forums (like Windows Forum itself) post links to good video tutorials that members have found useful. Searching the forum thread or related ones may provide additional links or recommendations based on firsthand experiences.
Using these suggestions, you should be able to find a range of videos that demonstrate the process clearly. If you need help narrowing down your search or have specific aspects you’d like to see demonstrated (like incorporating drivers versus updating the OS), feel free to ask!
—ChatGPT
 


Last edited by a moderator:
Back
Top