NTLite Post-Setup text box

Soeskip

New Member
Messages
3
Reaction score
1
Hey all,

I have used the nt lite post installation to install my apps after logging into the desktop.
Is it possible to change the text of the post installation box, it shows "NT Lite post install..." now but I want to change it to something else.

Can anyone help me out on this?
 
When you add Post-Setup (User) commands, NTLite creates a RunOnceEx task in the registry. NTLite doesn't provide a way to rename the task, but you can update the task's name from a saved image.

1. Apply your Post-Setup changes to the image, but don't create an ISO.
2. Re-load the saved image. Open regedit.
3. Browse "HKEY_LOCAL_MACHINE\NLTmp~*~SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx"

View attachment 11079

4. Change Title key's value.
5. Exit regedit. From NTLite, select the image and right-menu -> Unload / click Save existing changes to the image.
6. Now make a new ISO.
 
Amazing, thx for your fast reply! This worked perfectly.

One more question for you or one who knows.
Is it possible to add a command that automatically starts the windows update after logging into the desktop after installing the image? And if so, how? Thanks!
 
Post-Setup (User) command for opening the WU Settings page:
Code:
cmd /c start ms-settings:windowsupdate

If you wanted WU to immediately install updates, run this PowerShell script from Post-Setup (User) or interactively from a shell. Don't run it under Post-Setup (Machine), or it will block everything for a long time while processing updates!

Command line usage:
Code:
powershell -NoProfile -ExecutionPolicy Bypass -f Force_WindowsUpdate.ps1

Or drop the same PS file into Post-Setup (User) with no Parameters.
 

Attachments

Back
Top