Search
Search titles only
By:
Search titles only
By:
Log in
Register
Search
Search titles only
By:
Search titles only
By:
Menu
Install the app
Install
Forums
New posts
All threads
Latest threads
New posts
Trending threads
Trending
Search forums
What's new
New posts
New ads
New profile posts
Latest activity
Free Ads
Latest reviews
Search ads
Members
Current visitors
New profile posts
Search profile posts
Contact us
Latest ads
Colombo
Red Hat Certified System Administrator (RHCSA) - RHEL 10
Sanjeewani95
Updated:
Yesterday at 7:43 PM
NURSING , CAREGIVER , HOTEL & BEAUTY COURSES
IVA Para Medical Campus
Updated:
Thursday at 9:24 AM
Handmade Character Soft Toys Peppa Pig Family
anil1961
Updated:
Wednesday at 9:58 PM
Ad icon
Video Content Creator
pramukag
Updated:
Sunday at 6:10 AM
Ad icon
QA Engineer Intern
pramukag
Updated:
Sunday at 6:07 AM
Electronics
Vehicles
Property
Search
Reply to thread
Forums
General
ElaKiri Help
Udaw one Kattiyagen
Get the App
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Message
<blockquote data-quote="EK_SheSH" data-source="post: 15860894" data-attributes="member: 491927"><p>One of the prerequisites for a complete SQL Server 2012 installation is that the operating system has the <strong><a href="http://www.microsoft.com/en-us/download/details.aspx?id=21" target="_blank">.NET Framework 3.5</a></strong> installed. As you might know, Windows 8 has the .NET Framework 4.5 built-in and you can optionally activate .NET Framework 3.5 using the Windows Features panel (see the image below), but the problem is that once you activate the .NET Framework 3.5 the computer will want to access to Microsoft servers on the Internet to get the binaries.</p><p> <a href="http://blogs.technet.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-92-37-metablogapi/2068.clip_5F00_image001_5F00_08F4281D.png" target="_blank"><img src="http://blogs.technet.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-92-37-metablogapi/7776.clip_5F00_image001_5F00_thumb_5F00_0007268F.png" alt="" class="fr-fic fr-dii fr-draggable " style="" /></a></p><p> But what do you do if you have no Internet connection? The solution emerges with the Windows 8 ISO and <a href="http://technet.microsoft.com/en-us/library/dd744256%28WS.10%29.aspx" target="_blank">DISM</a>. Have a look below for a quick step-by-step guide on how to install and activate the .NET Framework 3.5 without Internet access:</p><p> </p><ol> <li data-xf-list-type="ol">Create a folder on your system drive called <strong>NET35</strong> (example: C:\NET35)</li> <li data-xf-list-type="ol">Mount your Windows 8 ISO file or DVD</li> <li data-xf-list-type="ol">Copy the folder <strong>sources\sxs\</strong> from the Windows 8 ISO into the newly created <strong>NET35</strong> folder. I recommend using XCOPY for it, for example: <br /> <span style="font-family: 'courier new'">xcopy G:\sources\sxs\*.* C:\NET35 /s<br /> </span><em>[Ed: Note that this copies the contents of the SXS folder into C:\NET35, but not the folder itself]</em></li> <li data-xf-list-type="ol">Once you copy all the files, you can now utilize DISM to enable the .NET Framework 3.5 feature by entering the following command in an elevated command prompt (Start, Type "CMD", press Ctrl+Shift+Enter or right-click the Command Prompt item and choose Run as Administrator): <br /> <span style="font-family: 'courier new'">DISM.exe /online /enable-feature /featurename:NetFX3 /All /Source:c:\net35 /LimitAccess<br /> </span><em>[Ed: Note the above is one line but may wrap in this blog depending on formatting - if in doubt, it should be typed as in the screenshot below.]</em></li> </ol><p>If everything runs smoothly you should now have the .NET Framework 3.5 installed without the computer needing access to the Internet.</p><p> <a href="http://blogs.technet.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-92-37-metablogapi/3527.clip_5F00_image003_5F00_43B67DBB.jpg" target="_blank"><img src="http://blogs.technet.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-92-37-metablogapi/2068.clip_5F00_image003_5F00_thumb_5F00_29E2478C.jpg" alt="" class="fr-fic fr-dii fr-draggable " style="" /></a></p></blockquote><p></p>
[QUOTE="EK_SheSH, post: 15860894, member: 491927"] One of the prerequisites for a complete SQL Server 2012 installation is that the operating system has the [B][URL="http://www.microsoft.com/en-us/download/details.aspx?id=21"].NET Framework 3.5[/URL][/B] installed. As you might know, Windows 8 has the .NET Framework 4.5 built-in and you can optionally activate .NET Framework 3.5 using the Windows Features panel (see the image below), but the problem is that once you activate the .NET Framework 3.5 the computer will want to access to Microsoft servers on the Internet to get the binaries. [URL="http://blogs.technet.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-92-37-metablogapi/2068.clip_5F00_image001_5F00_08F4281D.png"][IMG]http://blogs.technet.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-92-37-metablogapi/7776.clip_5F00_image001_5F00_thumb_5F00_0007268F.png[/IMG][/URL] But what do you do if you have no Internet connection? The solution emerges with the Windows 8 ISO and [URL="http://technet.microsoft.com/en-us/library/dd744256%28WS.10%29.aspx"]DISM[/URL]. Have a look below for a quick step-by-step guide on how to install and activate the .NET Framework 3.5 without Internet access: [LIST=1] [*]Create a folder on your system drive called [B]NET35[/B] (example: C:\NET35) [*]Mount your Windows 8 ISO file or DVD [*]Copy the folder [B]sources\sxs\[/B] from the Windows 8 ISO into the newly created [B]NET35[/B] folder. I recommend using XCOPY for it, for example: [FONT=courier new]xcopy G:\sources\sxs\*.* C:\NET35 /s [/FONT][I][Ed: Note that this copies the contents of the SXS folder into C:\NET35, but not the folder itself][/I] [*]Once you copy all the files, you can now utilize DISM to enable the .NET Framework 3.5 feature by entering the following command in an elevated command prompt (Start, Type "CMD", press Ctrl+Shift+Enter or right-click the Command Prompt item and choose Run as Administrator): [FONT=courier new]DISM.exe /online /enable-feature /featurename:NetFX3 /All /Source:c:\net35 /LimitAccess [/FONT][I][Ed: Note the above is one line but may wrap in this blog depending on formatting - if in doubt, it should be typed as in the screenshot below.][/I] [/LIST] If everything runs smoothly you should now have the .NET Framework 3.5 installed without the computer needing access to the Internet. [URL="http://blogs.technet.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-92-37-metablogapi/3527.clip_5F00_image003_5F00_43B67DBB.jpg"][IMG]http://blogs.technet.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-92-37-metablogapi/2068.clip_5F00_image003_5F00_thumb_5F00_29E2478C.jpg[/IMG][/URL] [/QUOTE]
Insert quotes…
Verification
Dahaya deken beduwama keeyada?
Post reply
Top
Bottom