.NET 8 Framework and Long Paths

TerronTech

New Member
Messages
4
Reaction score
1
Hello. How can preinstall .net framework using NTlite?
Also, is there an option to enable long paths in Windows via NTLite? If not, how would I create the registry entry automatically?
 
In NTLite, it's this option if I remember correctly for the "long path"

Capture.PNG

Or this key

Code:
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\FileSystem]
"LongPathsEnabled"=dword:00000001
 
If it's an .exe, you can add it to Post-Setup.
To integrate it directly into the image, I've never looked.
 
Only .NET 4.8.1 is provided as a fully integratable KB update.

Everything else requires you to run the .NET installer (preferably the offline version and not web setup).
From Post-Setup (Before logon):

CommandParameters
windowsdesktop-runtime-8.0.19-win-x64.exe/install /quiet /norestart
 
Back
Top