Hello there.
I tried to create an Windows PE image that will check some stuff on the machine and then launch the Windows 10 setup.exe file for image generated using NTLite.
After the WindowsPE finishes it's work, I am launching setup.exe with autounattend.xml file using powershell script below, but the Post-Setup is not starting after the installation.
Are there some additional parameters that I need to provide to setup.exe for Post-Setup to run after the installation? Or maybe I should run the installation differently? (When I launch the Win10 image as a regular bootable disk it works as intended.)
I tried to create an Windows PE image that will check some stuff on the machine and then launch the Windows 10 setup.exe file for image generated using NTLite.
After the WindowsPE finishes it's work, I am launching setup.exe with autounattend.xml file using powershell script below, but the Post-Setup is not starting after the installation.
Are there some additional parameters that I need to provide to setup.exe for Post-Setup to run after the installation? Or maybe I should run the installation differently? (When I launch the Win10 image as a regular bootable disk it works as intended.)
Code:
& "path\to\setup\on\disk\setup" -unattend:"path\to\setup\on\disk\autounattend.xml"