Dot.Net Framework 4 client: Where to get up to date installer ?

Discussion in 'Windows 7' started by Bluescreen, Feb 14, 2012.

  1. Bluescreen

    Bluescreen MDL Senior Member

    Jul 16, 2009
    337
    51
    10
    I would like to integrate .Net framework 4 client to my ISO
    On my desktop machine I have downloaded the full installer (42 MB), but after installation I have been horrified to see that the security fixes after Windows 7 SP1 are 143 Mb more to install !!! :mad:

    Is there a way to find an up to date installer containing all actual fixes ??
    How is it possible that fixes are almost 4 times bigger than the program ?
    Thanks for any help :crystal:
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  2. Bluescreen

    Bluescreen MDL Senior Member

    Jul 16, 2009
    337
    51
    10
    Thanks you very much, I appreciate :)
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  3. NICK@NUMBER11

    NICK@NUMBER11 MDL Expert

    Mar 23, 2010
    1,503
    720
    60
    #4 NICK@NUMBER11, Feb 14, 2012
    Last edited by a moderator: Apr 20, 2017
    you are welcome, this is what i use to install the net framework along with some other updates that i am not able to inject into install.wim


    Code:
    echo off
    CLS
    TITLE Admin Installation for Windows 7
    
    :Windows Update
    echo Installing Windows Updater for future updates
    start /wait wusa.exe windows6.1-kb2533552.msu /quiet /norestart /nobackup
    
    :Malicious software removal tool
    echo Installing Malicious Software Removal Tool
    start /wait windows-kb890830-v4.4.exe /q
    
    :Misc apps 
    echo Installing Silverlight 
    start /wait Silverlight.exe /q
    
    :Defender Definitions
    echo Installing Windows Defender Definition updates
    start /wait mpas-fe.exe /Q
    
    :NET Framework 4
    echo Installing .NET 4 Framework Client and Extended packages
    start /wait dotNetFx40_Full_x86_x64_SlimSetup.exe /y
    
    exit