Post-setup parameter examples for basic stuff

Howard_J

New Member
This is killing me. I am there creating a clean Win 7 Ultimate with all updates. I'm trying to do 3 things in post-setup. Run 2 batch files and install .NET 4.8. The two batch files are Remove_IE_Welcome and End_Of_Service_Notify_Del. What parameter is correct here? (/q?) Something else? I don't care if I see anything having to do with the batch files. I would prefer to interact with the .NET install so I know it is at that point. I didn't put anything in the parameter boxes and I got the interaction with the .NET install. Then when it was done it just sat there and churned that it was going to restart and finish. I did a hard shutdown and restarted and it loaded the desktop pretty quick. I have the image down figured with all the needed updates. I can't find a basic list with examples for post-setup. Google doesn't help for some reason. There's no sticky. Simple examples that don't deal with OOBE scripts would be really helpful. I can't get my registered paid NTLite to throw up a list of parameters so I can even try to get this done. Again, I'm right at the end and I've re-imaged my drive so many times trying to get this done, I'm wearing out my SSD.

Some straightforward help would be greatly appreciated.
 
Post-Setup commands are executed by a CMD wrapper script. No input is allowed (Windows' rules, not NTLite) so everything must run hands free.
The search terms are "[app] silent (or unattended) install".

NDP48-x86-x64-AllOS-ENU.exe /passive /norestart
NDP48-KBnnnnnnn-x64.exe /quiet /norestart

.NET installers have the option to hide the progress window, but I like it visible. You can test any installer's silent mode by running the full command line in CMD. The installer must finish without help.

No need to fire up NTLite or install an image just for testing silent installs.
 
Back
Top