Unable to install .NET Framework 4.8 in silent mode

Brandon Ho 376 Reputation points
2022-06-02T22:54:03.123+00:00

Hi,
I am unable to install .NET Framework 4.8 offline installer via silent mode. I used Admin CMD with "ndp48-x86-x64-allos-enu.exe /q /norestart" command to install. It won't install and stuck in End User Accept License area. I knew this is because I removed /q option to run again and it stated on EULA.

Is there a command option to accept EULA so that we can install it in silent mode?

Thanks,
Brandon.

.NET Runtime
.NET Runtime
.NET: Microsoft Technologies based on the .NET software framework.Runtime: An environment required to run apps that aren't compiled to machine language.
1,126 questions
{count} votes

Accepted answer
  1. Kniesel, Michael 75 Reputation points
    2023-07-19T04:44:31.3533333+00:00

    you would need to use the following as that is the EULA Page that is coming up and requires the box to be 'checked' before continuing the installation

    ndp48-x86-x64-allos-enu.exe /passive (or /quiet) /AcceptEULA /norestart

    0 comments No comments

6 additional answers

Sort by: Most helpful
  1. David Downing 701 Reputation points
    2022-06-03T17:44:01.543+00:00

    I found the parameters I used to accomplish this. Pass in the following:

    /install /quiet /norestart

    I also had the VM restart after several more unrelated tasks were completed.

    1 person found this answer helpful.
    0 comments No comments

  2. Asa Engleman 5 Reputation points
    2023-05-15T19:34:10+00:00

    Super frustrating. Having the same issue. Passing any combination to Ansible to automate this across many VM's is failing in all combinations of the switches below. As stated it seems that the EULA needs to be accepted somehow which is no longer accomplished by previous command line switches.

             - /install
             - /quiet
             - /q
             - /norestart
    
    
    1 person found this answer helpful.

  3. Brandon Ho 376 Reputation points
    2022-06-03T01:25:18.707+00:00

    Forgot to upload this dialog box in question.

    207999-2022-06-02-18-17-54.jpg

    0 comments No comments

  4. Johan Parlevliet 1 Reputation point
    2022-07-22T13:03:10.337+00:00

    ndp48-x86-x64-allos-enu.exe /passive /norestart /log "%WINDIR%\Temp\DotNET48-Install.log"
    But a restart of the server is necessary as .net 4.8 is not yet completely finished with install

    0 comments No comments