Wednesday, February 24, 2016

How to Install the .NET Framework 3.5 Offline in Windows 10



Of course you already know that .NET Framework 3.5 is not included or not pre -installed in Windows 8. This is repeated on Windows 10. However, Windows 10 comes with the .NET Framework 4.5 pre -installed , even though so many applications developed in the era of Vista and Windows 7 requires .NET framework v3.5 is installed along with a 4.5. This app will not run unless you install the version required . When you try to run a particular application , Windows 10 will prompt you to download and install the .NET Framework 3.5 from the Internet . However , this will take a lot of time . You can save your time and install the .NET Framework 3.5 from the installation media of Windows 10. This method is much faster and does not even require an internet connection alias offline . Here is how to install the .NET Framework 3.5 offline in Windows 10 .

To install the .NET Framework 3.5 in Windows 10ikuti the following steps :

1. Insert the DVD installation of Windows 10 , or double-click the ISO image , or
    bootable flash drive insert your Windows 10 , depending on which one you have. In
    essence , the media containing Windows isntalasi 10 .
2. Open 'This PC ' in the File Explorer to check the drive letter where the installation
    media that has been inserted . In this example there on the drive G :
How to Install the .NET Framework 3.5 Offline in Windows 10


















3. Now open the elevated command prompt ( Admin Command Prompt ) and type the
    following command :
Dism /online /enable-feature /featurename:NetFX3 /All /Source:G:\sources\sxs /LimitAccess
 
Change the letter G : with the drive letter where the installation of Windows 10 is located.





Done ! Now .NET Framework 3.5 is installed on Windows 10 .
 
There are other alternatives that you can try . Save your time using a batch file that will install and automatically find the installation media . Her file 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 Sedang menginstal .NET Framework 3.5...
Dism /online /enable-feature /featurename:NetFX3 /All /Source:%setupdrv%:\sources\sxs /LimitAccess echo.
echo .NET Framework 3.5 berhasil diintsal. echo.) else (echo Tidak ditemukan media instalasi! echo Masukkan DVD atau USB flash drive dan jalankan sekali lagi file ini. 
echo.)
pause

Save with the extension .BAT , once stored as a BAT file right click it and select Run as administrator . Or download a file that has been so through the following link :





How to Install the .NET Framework 3.5 Offline in Windows 10















This file will install .NET Framework 3.5 automatically when it encounters Windows 10 installation media .






0 comments:

Post a Comment