Skip Windows Setup screen

I enabled remote desktop but still isn't enabled. What section is a MUST for remote desktop to enable?
 
NTLite enables the RDP server, but it doesn't automatically open it from Windows Firewall.
Code:
netsh advfirewall firewall set rule group="remote desktop" new enable=Yes

PowerShell:
Code:
Enable-NetFirewallRule -Name "RemoteDesktop-UserMode-In-TCP"
Enable-NetFirewallRule -Name "RemoteDesktop-UserMode-In-UDP"
 
Hello All,

I am trying to build an image of win 11, i would only need to bypass the initial setup for language, oobe and automate the wipe of the c drive so once installed it will go straight to the account login.

The issue here is that i am not able to automate the wipe of the drive and the automatic installation as i get the error in the screenshot, it happens immediately after installing the updates.

please see the screenshots below and the configurations.

can you please let me know what I am doing wrong? I have the full license of Ntlite.

Thanks in advance.
A.


 
Normally, this error has two possible causes:

1. Missing the driver for your disk controller or storage device. Try Unattended without a disk layout, to confirm.
2. Wrong UEFI (GPT) or MBR boot mode in BIOS.
 
Back
Top