When installing Microsoft .NET Framework 4.5.50709 silently using an MDT task sequence, you encountered issues with the installation getting stuck at the license terms dialogue box. To ensure a silent installation without any dialog boxes, you can try the following approach:
- Check Compatibility:
- Ensure that the installation package of .NET Framework 4.5.50709 supports silent installation with the switches you are using.
[]Correct Command Syntax:
- The switches you mentioned seem correct (
/q
for quiet mode and /norestart
to prevent an automatic restart). However, the /qb
switch is generally used for a basic user interface. Instead, you should stick with /q
for a...