<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>.NET framework 3.5 - Techyaz.com</title>
	<atom:link href="https://techyaz.com/tag/net-framework-3-5/feed/" rel="self" type="application/rss+xml" />
	<link></link>
	<description>Tips, Tutorials and How-to Topics</description>
	<lastBuildDate>Mon, 14 May 2018 14:36:28 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8</generator>

<image>
	<url>https://techyaz.com/wp-content/uploads/2017/11/cropped-Site-icon-150x150.png</url>
	<title>.NET framework 3.5 - Techyaz.com</title>
	<link></link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>How to Check and Install .NET framework 3.5 on your Server</title>
		<link>https://techyaz.com/sql-server/check-install-net-framework-3-5-server/</link>
					<comments>https://techyaz.com/sql-server/check-install-net-framework-3-5-server/#respond</comments>
		
		<dc:creator><![CDATA[Manvendra Deo Singh]]></dc:creator>
		<pubDate>Thu, 24 Aug 2017 12:40:29 +0000</pubDate>
				<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[.NET framework 3.5]]></category>
		<category><![CDATA[HowTO]]></category>
		<category><![CDATA[installation]]></category>
		<guid isPermaLink="false">http://techyaz.com/?p=660</guid>

					<description><![CDATA[<p>We must Install .NET framework 3.5 as prerequisite to install SQL Server on Windows Operating System. We need to manually install it before starting SQL Server installation. You can also deploy it by using group policy. Earlier we used to&#46;&#46;&#46;</p>
<p>The post <a href="https://techyaz.com/sql-server/check-install-net-framework-3-5-server/">How to Check and Install .NET framework 3.5 on your Server</a> appeared first on <a href="https://techyaz.com">Techyaz.com</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>We must Install .NET framework 3.5 as prerequisite to install SQL Server on Windows Operating System. We need to manually install it before starting SQL Server installation. You can also deploy it by using group policy. Earlier we used to download the .NET package and then run it to install. Now process has become easier and you don&#8217;t need to download its package for installation. I would recommend you to first check if .net 3.5 is installed or not on your server, if it&#8217;s already installed then you should not reinstall it again. You can see <strong>Validate</strong> section of this article to learn how to check if .net 3.5 is installed or not.</p>
<h5><span style="color: #800000;">Related Articles:</span></h5>
<ul>
<li><strong><a href="https://techyaz.com/sql-server/sql-server-on-linux/install-sql-server-2017-ubuntu-internet-access/" target="_blank" rel="noopener">Installing SQL Server on Ubuntu Server</a></strong></li>
<li><strong><a href="https://techyaz.com/sql-server/sql-server-on-linux/install-sql-server-on-redhat-linux/" target="_blank" rel="noopener">SQL Server Installation on RedHat Linux</a></strong></li>
</ul>
<h3><span style="color: #333399;">.NET Framework 3.5 Installation</span></h3>
<p>There are two ways to install .NET Framework 3.5 on windows server.</p>
<ul>
<li>Using GUI</li>
<li>Using Powershell</li>
</ul>
<h5><span style="color: #993300;">GUI Method</span></h5>
<ol class="ordered">
<li>Login to Server and launch Server Manager, click on <strong>Manage</strong> and then select <strong>Add Roles and Features</strong> to start the Add Roles and Features Wizard.</li>
<li>On the <strong>Select installation type</strong> screen, select <strong>Role-based or feature-based installation</strong>.</li>
<li>Select the target server.</li>
<li>On the <strong>Select features</strong> screen, click on checkbox next to <strong>.Net Framework 3.5 Features</strong>.</li>
<li class="">On the <strong>Confirm installation selections</strong> screen, a warning will be displayed asking <strong>Do you need to specify an alternate source path?</strong>.  Here you can mount your Windows DVD ISO image. Or If your computer does not have access to Windows Update, click the <strong>Specify an alternate source path</strong> link to specify the path to the <strong>\sources\sxs</strong> folder on the installation media and then click <strong>OK</strong>. After you have specified the alternate source, or if the target computer has access to Windows Update, click the <strong>X</strong> next to the warning, and then click <strong>Install </strong>and it will be done.</li>
</ol>
<h5><span style="color: #993300;">Powershell Method</span></h5>
<p>This is very simple method where you just need to run below powershell command with administrator right.</p>
<pre class="brush: sql; title: ; notranslate" title=""><strong><span class="kwrd" style="color: blue;"><span style="color: #008000;">--Change the source location as per your source patch or location.</span>
Install-WindowsFeature Net-Framework-Core -source c:\sxs
</span></strong></pre>
<p>If your .NET framework 3.5 is already installed on your server then you will get below output by running above powershell command. It means .NET 3.5 is already installed on this machine. Read below section to learn how to check if .net 3.5 is installed on your machine.</p>
<p><img fetchpriority="high" decoding="async" class="aligncenter size-full wp-image-662" src="http://techyaz.com/wp-content/uploads/2017/08/1-install.jpg" alt="install .Net framework 3.5" width="608" height="161" srcset="https://techyaz.com/wp-content/uploads/2017/08/1-install.jpg 608w, https://techyaz.com/wp-content/uploads/2017/08/1-install-300x79.jpg 300w" sizes="(max-width: 608px) 100vw, 608px" /></p>
<h3><span style="color: #333399;">Validate</span></h3>
<p>Now you can check whether .NET framework 3.5 is installed on your server or not. Run below command to check if .NET 3.5 is installed or not.</p>
<pre class="brush: sql; title: ; notranslate" title=""><strong><span class="kwrd" style="color: blue;"><span style="color: #008000;">--Check if .NET framework 3.5 is installed or not on your server.</span>
Get-WindowsFeature *framework*
</span></strong></pre>
<p><img decoding="async" class="aligncenter size-full wp-image-661" src="http://techyaz.com/wp-content/uploads/2017/08/2-install.jpg" alt="check .net framework 3.5 is installed or not" width="751" height="156" srcset="https://techyaz.com/wp-content/uploads/2017/08/2-install.jpg 751w, https://techyaz.com/wp-content/uploads/2017/08/2-install-300x62.jpg 300w" sizes="(max-width: 751px) 100vw, 751px" /></p>
<p>You can see .NET framework 3.5 is showing as installed on this machine. I hope you like this article. Please follow us on our <a href="https://www.facebook.com/Techyaz/">facebook page</a> and on <a href="https://twitter.com/Tech_yaz">Twitter </a>handle to get latest updates.</p>
<p>The post <a href="https://techyaz.com/sql-server/check-install-net-framework-3-5-server/">How to Check and Install .NET framework 3.5 on your Server</a> appeared first on <a href="https://techyaz.com">Techyaz.com</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://techyaz.com/sql-server/check-install-net-framework-3-5-server/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
