.NET Framework 3.5 Standalone Installer for Windows 8.1 x86/x64

Discussion in 'Windows 8' started by abbodi1406, Sep 2, 2013.

  1. mark7tenor

    mark7tenor MDL Novice

    Sep 4, 2014
    1
    0
    0
    :clap:Thank you thank you thank you!!!:clap: I can't say it enough. I've spent days trying to get .Net 3.5 installed on a demo Surface Pro 3, and even did a swap with the vendor because Microsoft support said it was likely a hardware problem, this after resetting the unit to Factory half a dozen times. They finally gave up and wanted me to use paid Enterprise support. Your application saved us another countless hours of wasted time!
     
  2. LiteOS

    LiteOS Windowizer

    Mar 7, 2014
    2,209
    983
    90
    didnt work on server 10 beta
     
  3. madness

    madness MDL Novice

    Oct 2, 2014
    1
    0
    0
    Hi, I'm new here but I wanted to thank you for your hard work abbodi1406.
    Your tool allowed me to install .net 3.5 on Windows 8.0 To Go USB Stick.
    Thank you again! :)
     
  4. taykoit

    taykoit MDL Novice

    Oct 8, 2014
    1
    0
    0
    I can not uninstall KB2966826. In the control panel, when I select KB2966826, disappears the uninstall button. If I try to uninstall KB2966826 from the command prompt as an administrator, the system responds by saying that the security updates can not be uninstalled.Could you help me?
     
  5. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    16,226
    84,919
    340
    #85 abbodi1406, Oct 8, 2014
    Last edited by a moderator: Apr 20, 2017
    (OP)
    Looks like you ResetBase the image:
    Code:
    Dism /Online /Cleanup-Image /StartComponentCleanup /ResetBase
    you cannot undo this process
    you have to start with fresh install
     
  6. cuteee

    cuteee MDL Guru

    Oct 13, 2012
    5,732
    982
    180
    I'm afraid to use most of the Dism command.
     
  7. polux4277

    polux4277 MDL Novice

    Mar 21, 2015
    1
    0
    0
    Thanks for this. Very usefull !
     
  8. veryhungry

    veryhungry MDL Novice

    Mar 21, 2015
    1
    0
    0
    Thanks! Been searching for this.
     
  9. avechuche

    avechuche MDL Junior Member

    May 10, 2012
    73
    30
    0
    Hello, I am trying to install net 3.5 from these files and from Control Panel and I can not. Is it possible that some new windows update is giving problems? A year ago was the last time I formatted and I did not have this problem. 0x800F0906 is the error I get if I want to install from the control panel. 0x800f081f is the error I get if I want to install from this ".exe". Always create my isos in the same way, Windows 8.1 x64 Update 3 (original) + only updates. Any ideas?
     
  10. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    47,286
    94,789
    450
    #90 Enthousiast, Jan 15, 2017
    Last edited: Jan 15, 2017
    Did you use it properly, chec the OP under "Usage".

    It's an exe to be run as admin.


    I misread the post :eek:
     
  11. moonden

    moonden MDL Novice

    Apr 26, 2015
    2
    0
    0
    How can I run dotNetFx35_W8.1_x86_x64.exe using only the command line, without using the GUI or rar / 7zip archiver?
     
  12. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    47,286
    94,789
    450
  13. moonden

    moonden MDL Novice

    Apr 26, 2015
    2
    0
    0
    I need to install on many windows 8.1, so it is more convenient to use the command line. Use offline installer needed, since there is no opportunity online. The installer in this subject the most appropriate, but it would be automated using code batch. Use ISO image is also not convenient. Thank you in advance.
     
  14. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    47,286
    94,789
    450
    #95 Enthousiast, Jan 16, 2017
    Last edited by a moderator: Apr 20, 2017
    When you extract the "ISO:\Sources\SXS" folder from the iso you get the same files as inside the standalone installer.

    Use this dism command to use it to install it on an online install:

    Code:
    DISM /Online /Enable-Feature /FeatureName:NetFx3 /All /LimitAccess /Source:"x:\sxs\"
    Or use an iso with the netfx package pre-enabled to install systems with.
     
  15. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    47,286
    94,789
    450
    Did you read abbodi1406's info from the provided links?

    But you make your own iso's? Why not pre-enabling netfx3?
     
  16. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    16,226
    84,919
    340
    Do not integrate NET35 updates before enabling NetFx3
     
  17. avechuche

    avechuche MDL Junior Member

    May 10, 2012
    73
    30
    0
    The strange thing is that before it did not happen, surely it is a new update. Is it possible to enable NetFx3 before integrating the updates, but in the same session from WinToolkit? Thx!
     
  18. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    47,286
    94,789
    450
    #100 Enthousiast, Jan 19, 2017
    Last edited by a moderator: Apr 20, 2017
    Mount the wim first.

    Code:
    DISM /Image:x:\mount /Enable-Feature /FeatureName:NetFx3 /All /LimitAccess /Source:y:\sources\sxs\
    x = mountfolder
    y = ExtractedISO

    Or just use abbodi1406's W8UI script to install the updates offline and it will enable dotnetfx3.