Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //Source: http://www.danielclasson.com/install-net-framework-35-server-2012/
- 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:
- “Do you want to specify an alternate source path? One or more installation selections are missing source files…”
- http://www.danielclasson.com/wp-content/uploads/2012/09/1.jpg
- -----------------------------------------------------------------------------------------------------------------------
- Bug when adding .net framework 3.5 in Server 2012
- To solve this, you can either:
- 1. Go to a command prompt and enter this:
- dism /online /enable-feature /featurename:NetFX3 /all /Source:d:\sources\sxs /LimitAccess
- *Note: Source should be the Windows installation disc. In my case, this was located on D:*
- Bug when adding .net framework 3.5 in Server 2012
- I GOT AN ERROR HERE MYSELF: http://prntscr.com/4xsqz0
- but the installation still worked :p
- -----------------------------------------------------------------------------------------------------------------------
- 2. Go down to “Specify an alternate source path” and enter “d:\sources\sxs” as the path.
- http://www.danielclasson.com/wp-content/uploads/2012/09/specify_alternate_path.jpg
- http://www.danielclasson.com/wp-content/uploads/2012/09/specify_alternate_path_2.jpg
- Specify alternate source path windows server 2012 .net framework 3.5
- Specify alternate source path windows server 2012 .net framework 3.5
- http://www.danielclasson.com/wp-content/uploads/2012/09/add-feature.jpg
- Now you should see this under your Features list:
- .NET Framework 3.5 feature installed on Windows Server 2012
- Proof of installation: http://prntscr.com/4xsm0q
- -----------------------------------------------------------------------------------------------------------------------
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement