Any way to install NET Framework on Windows 10 OFFLINE?

Discussion in 'Windows 10' started by brandteet, Feb 6, 2020.

  1. brandteet

    brandteet MDL Novice

    Dec 23, 2019
    5
    0
    0
    I recently set up a new copy of Windows 10 but I never bothered to install .NET Framework 3.5 because I thought I didn't need it.

    Then more recently, I tried to start up a favourite game of mine which turns out to require .NET Framework 3.5. I tried downloading it but I configured my OS, post-installation, in a way that blocks that from happening.

    There must be a way I can download files to install that program manually (and safely), right?

    Thanks.
     
  2. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    47,006
    93,805
    450
    Mount install.wim
    Code:
    DISM /Image:x:\mount /Enable-Feature /FeatureName:NetFx3 /All /LimitAccess /Source:ISO\Sources\sxs\
    save and unmount install.wim
     
  3. brandteet

    brandteet MDL Novice

    Dec 23, 2019
    5
    0
    0
    I don't understand. What is this?
     
  4. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    47,006
    93,805
    450
    This is exactly what you asked for;)
     
  5. brandteet

    brandteet MDL Novice

    Dec 23, 2019
    5
    0
    0
    #5 brandteet, Feb 6, 2020
    Last edited: Feb 6, 2020
    (OP)
    No, I mean what is that supposed to do for my currently installed OS?

    I know I mount the .wim file in NTLite but where am I supposed to enter that code and what exactly does it do?

    I need more than just vague pointers.
     
  6. ruuu7

    ruuu7 MDL Member

    Mar 7, 2015
    229
    49
    10
    Thats way more that vague. Thats the exact code line for excactly what you ask for. You should type this line in a PowerShell window
     
  7. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    47,006
    93,805
    450
    #7 Enthousiast, Feb 6, 2020
    Last edited: Feb 6, 2020
    No third party tools are actually needed for this basic dism instruction, but if you can mount the wim, using any tool, change the path to the mounted folder and the path to the mounted/opened in explorer ISO\sources\sxs\ folder in your scenario.

    Next copy/paste the modified commandline to an elevated cmd (cmd prompt ran as admin) and let it run.

    Next unmount /commit the install.wim and dotnetfx35 is enabled.

    You asked for offline integration, for your running install, it will be an online integration, you can use this commandline;
    Code:
    DISM /online /Enable-Feature /FeatureName:NetFx3 /All /LimitAccess /Source:ISO\Sources\sxs\
    For online integration, @abbodi1406 made this:
    https://forums.mydigitallife.net/th...-installer-for-windows-10.63835/#post-1114470
     
  8. endbase

    endbase MDL Guru

    Aug 12, 2012
    4,667
    1,708
    150
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  9. adric

    adric MDL Expert

    Jul 30, 2009
    1,244
    1,303
    60
    just correcting misinformation ;)
     
  10. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    47,006
    93,805
    450
    Good luck with that;):D
     
  11. Hmm thank you brother for letin me know . .net frameowrk 3 .
     
  12. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    47,006
    93,805
    450