Install Dot net 4.5 silently as adependency

后端 未结 2 1292
谎友^
谎友^ 2021-02-06 09:22

I have a setup that install silently but it has dependency of dot net framework 4.5, so how can i create a installer that installs dependency silently also.

            


        
2条回答
  •  攒了一身酷
    2021-02-06 09:39

    It should be possible to use a command line like

    dotNetFx45_Full_setup.exe /q /norestart
    

    Use the web bootstrapper to download the Framework online

    Maybe have a look here and here

    Edit: Just see that you don't want to include .net 4.5 setup... Edit: Code fixed

提交回复
热议问题