Torrent Invites! Buy, Trade, Sell Or Find Free Invites, For EVERY Private Tracker! HDBits.org, BTN, PTP, MTV, Empornium, Orpheus, Bibliotik, RED, IPT, TL, PHD etc!



Results 1 to 3 of 3
Like Tree6Likes
  • 5 Post By fresh
  • 1 Post By DGM

Thread: How to install .NET FRAMEWORK 3.5 (IN WINDOWS 10 )

  1. #1
    Senior Member
    fresh's Avatar
    Reputation Points
    6379
    Reputation Power
    100
    Join Date
    Jul 2011
    Posts
    351
    Time Online
    8 d 22 h 53 m
    Avg. Time Online
    3 m
    Mentioned
    152 Post(s)
    Quoted
    14 Post(s)
    Liked
    225 times
    Feedbacks
    38 (100%)

    How to install .NET FRAMEWORK 3.5 (IN WINDOWS 10 )

    Windows 10 comes with .NET framework 4.5 pre-installed, but many apps developed in Vista and Windows 7 era require the .NET framework v3.5 installed along with 4.5. These apps will not run unless you will install the required version. When you try to run any such app, Windows 10 will prompt you to download and install .NET framework 3.5 from the Internet. However, this will take a lot of time. You can save your time and install .NET Framework 3.5 from the Windows 10 installation media. This method is much faster and does not even require an Internet connection. Here is how to install it.


    To install .NET Framework 3.5 in Windows 10, do the following:

    1.Insert your Windows 10 DVD, or double click its ISO image, or insert your bootable flash drive with Windows 10, depending on what you have.
    2.Open 'This PC' in File Explorer and note the drive letter of the installation media you have inserted. In my case it is disk D:
    b9tBKNv.jpg
    3.Now open an elevated command prompt and type the following command:
    Dism /online /enable-feature /featurename:NetFX3 /All /Source:Q:\sources\sxs /LimitAccess <-EXAMPLE
    Replace Q: with your drive letter for Windows 10 installation media.

    92foqFU.jpg
    You are done! This will install .NET framework 3.5 in Windows 10.


    To save your time, I have prepared a simple batch file which will save your time and will find the inserted installation media automatically. It looks like this:

    @echo off
    Title .NET Framework 3.5 Offline Installer
    for %%I in (D E F G H I J K L M N O P Q R S T U V W X Y Z) do if exist "%%I:\\sources\install.wim" set setupdrv=%%I
    if defined setupdrv (
    echo Found drive %setupdrv%
    echo Installing .NET Framework 3.5...
    Dism /online /enable-feature /featurename:NetFX3 /All /Source:%setupdrv%:\sources\sxs /LimitAccess
    echo.
    echo .NET Framework 3.5 should be installed
    echo.
    ) else (
    echo No installation media found!
    echo Insert DVD or USB flash drive and run this file once again.
    echo.
    )
    pause

    Download the file, extract it from the ZIP archive to the Desktop, right click it and choose Run as administrator. The file will install .NET Framework 3.5 automatically after finding the drive letter of your Windows 10 installation media.

    Download the batch file
    Attached Images Attached Images
    DGM, Laxus, ciganus and 2 others like this.

  2. #2
    DGMDonor Icon
    DGM is offline
    iLLuSioNist
    DGM's Avatar
    Reputation Points
    77147
    Reputation Power
    100
    Join Date
    Aug 2015
    Posts
    4,744
    Time Online
    204 d 20 h 52 m
    Avg. Time Online
    1 h 33 m
    Mentioned
    969 Post(s)
    Quoted
    453 Post(s)
    Liked
    4014 times
    Feedbacks
    170 (100%)
    Same goes for Windows 8, 8.1 & Windows Server 2012. We can use same installation media for all as location path is same for all.
    ciganus likes this.
    DGM Says ! Be Busy Be Happy TI'ian. !

  3. #3
    Donor
    ciganus's Avatar
    Reputation Points
    17410
    Reputation Power
    100
    Join Date
    May 2014
    Posts
    111
    Time Online
    6 d 3 h 41 m
    Avg. Time Online
    2 m
    Mentioned
    12 Post(s)
    Quoted
    17 Post(s)
    Liked
    40 times
    Feedbacks
    0
    thanks!
    reped


Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •