User's password must be changed before signing in

sebbernarb

New Member
Hi i have a windows 11,

after a clean Install, that ask me
''USER PASSWORD MUST BE CHANGED BEFORE FIRST LOGIN''

how i can disable it by NTLite? (it is not expired password)

and last questions, how i can ''bypass network connection'' (stopping ask me network connection when we set-up windows ( first startup )

i know it's not long to do it , but i would like to disable it thank you
 
after a clean Install, that ask me
''USER PASSWORD MUST BE CHANGED BEFORE FIRST LOGIN''

how i can disable it by NTLite? (it is not expired password)
I'm assuming you're using Unattended mode. If you create a new Admin user with a blank password, Windows will always try to convince you to make a new password. To avoid this, you need to click "Auto-logon this user".

and last questions, how i can ''bypass network connection'' (stopping ask me network connection when we set-up windows ( first startup )
There are two solutions:
1. From Unattended, change Skip Wireless Setup to true.

2. From Components, remove the OOBENetwork features:
Code:
Microsoft.Windows.OOBENetworkCaptivePortal 'Captive Portal Flow'
Microsoft.Windows.OOBENetworkConnectionFlow 'Network Connection Flow'
 
ok thank you , and do you know , some time when we install new windows , we need to load driver to detect hard drive, you know what i mean ? i try to add the needed driver on driver section , but dont work , need to load manually
 
I think you're talking about Intel VMD? I've heard stories where if you load the wrong driver set, it doesn't detect the NVME or whatever, because one of the default Windows drivers "outranks" the loaded driver. So the unwanted driver wins, and won't see any drives.

This problem happens with Dell PC's. I don't think it's a Dell problem, but Dell likes to use the newer Intel VMD chipset.

If this is a single disk (non-RAID) configuration, disable RAID mode in BIOS. No more headaches.
 
Autre question, je pose ici avant de creer un nouveau , est-ce possible d'ajouter automatiquement un wifi dans l'iso avec NTLite ? merci
 
Both commands. The order of command lines is important.
Code:
netsh wlan add profile filename="%WINDIR%\Setup\Files\Wi-Fi-servicesinfocel.xml" user=all
netsh wlan set profileparameter name=Servicesinfocel connectionmode=auto
 
i have other question ,
it is possible to add a folder on desktop with many program on folder ( setup program ) but just need to add on dektop without instal program by default
 
again me , i try to set up wireless with other network name and password but it fail , and IDK why , can you say me what wrong with this please ? thank you ! Screenshot 2024-05-05 233431.png
 
Did you correctly export the Wi-Fi profile?
Code:
netsh wlan show profiles
netsh wlan export profile SebSarahHouse key=clear folder=.
 
i have one exported on c:user , this one i use with my last picture i send here , i think it is good , i have this on .xml


This XML file does not appear to have any style information associated with it. The document tree is shown below.
Code:
<WLANProfile xmlns="http://www.microsoft.com/networking/WLAN/profile/v1">
<name>SebSarahHouse</name>
<SSIDConfig>
<SSID>
<hex>5365625361726168486F757365</hex>
<name>SebSarahHouse</name>
</SSID>
</SSIDConfig>
<connectionType>ESS</connectionType>
<connectionMode>manual</connectionMode>
<MSM>
<security>
<authEncryption>
<authentication>WPA2PSK</authentication>
<encryption>AES</encryption>
<useOneX>false</useOneX>
</authEncryption>
<sharedKey>
<keyType>passPhrase</keyType>
<protected>false</protected>
<keyMaterial>[redacted]</keyMaterial>
</sharedKey>
</security>
</MSM>
<MacRandomization xmlns="http://www.microsoft.com/networking/WLAN/profile/v3">
<enableRandomization>false</enableRandomization>
<randomizationSeed>2848381592</randomizationSeed>
</MacRandomization>
</WLANProfile>

Mod note: Redacted password.
 
Last edited by a moderator:
the only change i see with my other setup , ( other wireless ) it is <connectionMode>manual</connectionMode> other one are on automatic , i can change that ? if yes how ?
 
You can add multiple network profiles on the same PC, but only one will automatically connect. What is supposed to happen with this PC?

Is the problem related to the profile? As the Administrator, you can manually run the same netsh commands, with a copy of the saved profile, to see if your Wi-Fi connects or not. Confirm the netsh commands work on a live system, before worrying about Post-Setup commands.
 
Back
Top