Instalación de Windows 10 .NET 3.5


8

Estoy en la compilación 9841 de Windows 10. Descargué .NET 3.5 SP 1 completo. Hago doble clic en el instalador pero no pasa nada. ¿Esa versión .NET no es compatible con Windows 10? Lo necesito para instalar SQL Server 2014 Express.


1
¿Por qué el -1? Sólo me preguntaba.
Kris van der Mast el

Supongo que porque no mostraste ninguna investigación permitida. Esto ya está documentado en la web muchas veces. También actualice a Build 9879, todavía usa la primera Build pública.
magicandre1981

Respuestas:


3

Este artículo explica cómo (no probado)

http://winaero.com/blog/offline-install-of-net-framework-3-5-in-windows-10-using-dism/

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.
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:
installation media drive d
Now open an elevated command prompt and type the following command:

Dism /online /enable-feature /featurename:NetFX3 /All /Source:D:\sources\sxs /LimitAccess

Replace D: with your drive letter for Windows 10 installation media.
dism

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

Después de buscar un poco, llegué a la misma página y lo puse a trabajar.
Kris van der Mast el

11

.Net Framework ya debería estar integrado en Windows 10 y puede habilitarlo desde el panel de control.

Haga lo siguiente para habilitar .Net Framework en su Windows 10

  1. Presione las teclas Windows+ Ren el teclado.
  2. Escriba " appwiz.cp l" en el cuadro de comando " Ejecutar " y presione " ENTER ".
  3. En la ventana " Programas y características ", haga clic en el enlace " Activar o desactivar las características de Windows ".
  4. Compruebe si la opción " .NET Framework 3.5 (incluye .NET 2.0 y 3.0) " está disponible en ella.
  5. En caso afirmativo, habilítelo y luego haga clic en " Aceptar ".
  6. Siga las instrucciones en pantalla para completar la instalación y reinicie la computadora, si se le solicita

Al usar nuestro sitio, usted reconoce que ha leído y comprende nuestra Política de Cookies y Política de Privacidad.
Licensed under cc by-sa 3.0 with attribution required.