View difference between Paste ID: mjquqpfR and 00wjz2HL
SHOW: | | - or go back to the newest paste.
1
//Source: http://www.danielclasson.com/install-net-framework-35-server-2012/
2
3
If you have an application that you want to run on Windows Server 2012 that requires the .NET Framework 3.5, you will most likely run in to a problem when trying to install it. If you are trying to install .NET Framework 3.5 from the Server Manager GUI, you will see this when installing the feature:
4
“Do you want to specify an alternate source path? One or more installation selections are missing source files…”
5
6
http://www.danielclasson.com/wp-content/uploads/2012/09/1.jpg
7
-----------------------------------------------------------------------------------------------------------------------
8
9
Bug when adding .net framework 3.5 in Server 2012
10
11
To solve this, you can either:
12
13
1. Go to a command prompt and enter this:
14
15
dism /online /enable-feature /featurename:NetFX3 /all /Source:d:\sources\sxs /LimitAccess
16
17
*Note: Source should be the Windows installation disc. In my case, this was located on D:*
18
19
Bug when adding .net framework 3.5 in Server 2012
20
21
I GOT AN ERROR HERE MYSELF: http://prntscr.com/4xsqz0
22
but the installation still worked :p
23
-----------------------------------------------------------------------------------------------------------------------
24
25
2. Go down to “Specify an alternate source path” and enter “d:\sources\sxs” as the path.
26
27
http://www.danielclasson.com/wp-content/uploads/2012/09/specify_alternate_path.jpg
28
29
http://www.danielclasson.com/wp-content/uploads/2012/09/specify_alternate_path_2.jpg
30
31
Specify alternate source path windows server 2012 .net framework 3.5
32
33
Specify alternate source path windows server 2012 .net framework 3.5
34
35
http://www.danielclasson.com/wp-content/uploads/2012/09/add-feature.jpg
36
37
Now you should see this under your Features list:
38
39
.NET Framework 3.5 feature installed on Windows Server 2012
40
41
Proof of installation: http://prntscr.com/4xsm0q
42
-----------------------------------------------------------------------------------------------------------------------