Intelligent Desktop Virtualization (IDV) for Education
Create NoPrompt Windows* Installation ISO Image
NoPrompt Windows Installation ISO is required for automation. The generation of NoPrompt installation iso requires the use of a Windows machine with Windows ADK installed.
- Download and install Windows ADK and Windows PE add-on for ADK on the Windows machine according to the version of Windows installation iso to be used. Take note of the ADK installation destination path for later use.
Table 8. Windows ADK and Windows PE add-on for different Windows versions
Windows Version | Windows ADK and PE add-on Download |
Windows* 10 IOT Enterprise LTSC 21H2 | |
Windows* 11 IOT Enterprise 22H2 |
- Download [Win10/Win11] .iso from Microsoft website. Create C:\ISO\ folder and copy .iso file into it.
- Download the Create-NoPromptISO.ps1 script from here.
- Edit WinPE_InputISOfile, WinPE_OutputISOfile and ADK_Path variables in Create-NoPromptISO.ps1 script as below:
- Open a PowerShell terminal in a Windows machine and run Create-NoPromptISO.ps1 script.
- Output file (windowsNoPrompt.iso) will be generated at path C:\ISO\. This can be used for all subsequent Windows unattended installations.
- Copy the windows10NoPrompt.iso or windows11NoPrompt.iso to Ubuntu host at the path of ~/idv_setup/scripts/guest_setup/ folder.
$WinPE_InputISOfile = "“C:\ISO\<downloaded Win10/Win11 iso file>”
$
$ADK_Path = "<ADK installation path>"
$ cd <Create-NoPromptISO.ps1 location>
$ .\Create-NoPromptISO.ps1
Note: If you see Create-NoPromptISO.ps1 cannot be loaded because running scripts is disabled on this system error, run the following command in PowerShell prior to running Create-NoPromptISO.ps1.
$ Set-ExecutionPolicy -Scope CurrentUser -ExecutionPolicy Unrestricted