
<?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>Public Network Archives - TECHNIG</title>
	<atom:link href="https://www.technig.com/tag/public-network/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.technig.com/tag/public-network/</link>
	<description>Gateway for IT Experts and Tech Geeks</description>
	<lastBuildDate>Tue, 08 Jun 2021 08:25:43 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.6.2</generator>

<image>
	<url>https://www.technig.com/wp-content/uploads/2020/04/32x32.png</url>
	<title>Public Network Archives - TECHNIG</title>
	<link>https://www.technig.com/tag/public-network/</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">162720667</site>	<item>
		<title>How to Change Network Profiles with PowerShell?</title>
		<link>https://www.technig.com/change-network-profile-using-powershell/</link>
					<comments>https://www.technig.com/change-network-profile-using-powershell/#comments</comments>
		
		<dc:creator><![CDATA[Shais]]></dc:creator>
		<pubDate>Sun, 06 Mar 2016 04:00:09 +0000</pubDate>
				<category><![CDATA[Servers]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[PowerShell Articles]]></category>
		<category><![CDATA[Private Network]]></category>
		<category><![CDATA[Public Network]]></category>
		<guid isPermaLink="false">https://www.technig.com/?p=6194</guid>

					<description><![CDATA[<div style="margin-bottom:20px;"></div>
<p>Sometimes it&#8217;s not possible to change network profiles using the graphical interface. The network profiles or network categories are Private networks, Public Network, and Domain Network. This is how to change network profile using PowerShell. Change Network Profile Using PowerShell It&#8217;s another PowerShell articles related to network configuration with PowerShell. It&#8217;s using PowerShell to manage [&#8230;]</p>
<p>The post <a href="https://www.technig.com/change-network-profile-using-powershell/">How to Change Network Profiles with PowerShell?</a> appeared first on <a href="https://www.technig.com">TECHNIG</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div style="margin-bottom:20px;"></div><p>Sometimes it&#8217;s not possible to change network profiles using the graphical interface. The network profiles or network categories are Private networks, Public Network, and Domain Network. This is how to change network profile using PowerShell.</p>
<h2>Change Network Profile Using PowerShell</h2>
<p>It&#8217;s another <a href="https://www.technig.com/tag/powershell-articles/" target="_blank" rel="noopener noreferrer">PowerShell articles</a> related to network configuration with PowerShell. It&#8217;s using PowerShell to <a href="https://technet.microsoft.com/en-us/library/jj899565(v=wps.630).aspx" target="_blank" rel="noopener noreferrer">manage network adapters</a> with PowerShell. So try to read the preview PowerShell articles also.</p>
<p>The three network profiles in Windows 10 are:</p>
<ul>
<li><strong>Private: </strong>Computers on a private network can belong to a homegroup. Network discovery is turned on for private networks, which allows you to see other computers and devices on the network.</li>
<li><strong>Public:</strong> Designed to keep your computer from being visible to other computers around you and to help protect your computer from any malicious software from the Internet.</li>
<li><strong>Domain: </strong>It belongs to the enterprise network. It’s controlled by network admin and can’t be selected and changed locally.</li>
</ul>
<p>So let&#8217;s try to change the network profile using PowerShell in Windows 10. This tip is work on all Windows clients and Servers.</p>
<p><strong>1.</strong> Open PowerShell and run it as administrator. Then type &#8220;<strong>Get-NetAdapter</strong>&#8221; and press enter to see all network adapters.</p>
<figure id="attachment_6199" aria-describedby="caption-attachment-6199" style="width: 1254px" class="wp-caption aligncenter"><a href="https://www.technig.com/wp-content/uploads/2016/03/Windows-10-Network-Adapters.jpg" rel="attachment wp-att-6199"><img fetchpriority="high" decoding="async" class="wp-image-6199 size-full" src="https://www.technig.com/wp-content/uploads/2016/03/Windows-10-Network-Adapters.jpg" alt="Windows 10 Network Adapters" width="1254" height="131" /></a><figcaption id="caption-attachment-6199" class="wp-caption-text">Windows 10 Network Adapters</figcaption></figure>
<p><strong>2.</strong> To find the network adapter profiles, type &#8220;<strong>Get-NetConnectionProfile</strong>&#8221; and press enter. You can specify the network connection with &#8220;<strong>-InterfaceAlias</strong>&#8221; parameter. It shows only the exact network connection information.</p>
<figure id="attachment_6200" aria-describedby="caption-attachment-6200" style="width: 658px" class="wp-caption aligncenter"><a href="https://www.technig.com/wp-content/uploads/2016/03/Public-Network-Profile.jpg" rel="attachment wp-att-6200"><img decoding="async" class="wp-image-6200 size-full" src="https://www.technig.com/wp-content/uploads/2016/03/Public-Network-Profile.jpg" alt="Public Network Profile" width="658" height="193" /></a><figcaption id="caption-attachment-6200" class="wp-caption-text">Public Network Profile</figcaption></figure>
<p>The network category is public, so try to change to private network with &#8220;<strong>Set-NetConnectionProfile</strong>&#8221; cmdlet.</p>
<p><strong>Note:</strong><em> It&#8217;s not possible to change the network adapter category to a domain when there is no domain available. It&#8217;s only changed Private network to public and public to private network using PowerShell. </em></p>
<p><strong>3.</strong> To change Public network to Private network, simply type &#8220;<strong>Set-NetConnectionProfile -InterfaceAlias Ethernet -NetworkCategory Private</strong>&#8221; and press enter.</p>
<figure id="attachment_6203" aria-describedby="caption-attachment-6203" style="width: 926px" class="wp-caption aligncenter"><a href="https://www.technig.com/wp-content/uploads/2016/03/Change-Network-Profile-with-PowerShell.jpg" rel="attachment wp-att-6203"><img decoding="async" class="wp-image-6203 size-full" src="https://www.technig.com/wp-content/uploads/2016/03/Change-Network-Profile-with-PowerShell.jpg" alt="Change Network Profile Using PowerShell" width="926" height="50" /></a><figcaption id="caption-attachment-6203" class="wp-caption-text">Change Network Profile Using PowerShell</figcaption></figure>
<p><strong>4</strong>. To see the result, type &#8220;<strong>Get-NetConnectionProfile</strong>&#8221; or specify the network adapter name with &#8220;<strong>-InterfaceAlias</strong>&#8221; parameter.</p>
<figure id="attachment_6205" aria-describedby="caption-attachment-6205" style="width: 467px" class="wp-caption aligncenter"><a href="https://www.technig.com/wp-content/uploads/2016/03/Change-Public-Network-to-Private-Network-with-PowerShell.jpg" rel="attachment wp-att-6205"><img loading="lazy" decoding="async" class="wp-image-6205 size-full" src="https://www.technig.com/wp-content/uploads/2016/03/Change-Public-Network-to-Private-Network-with-PowerShell.jpg" alt="Change Public Network to Private Network with PowerShell" width="467" height="178" /></a><figcaption id="caption-attachment-6205" class="wp-caption-text">Change Public Network to Private Network with PowerShell</figcaption></figure>
<p>Good, the public network has been changed to private network successfully. You can do the same to change the private network to the public.</p>
<p>Hope this simple PowerShell command will help you to change network profiles easily on the enterprise network and home network. So let us know if you have any question about PowerShell.</p>
<p>The post <a href="https://www.technig.com/change-network-profile-using-powershell/">How to Change Network Profiles with PowerShell?</a> appeared first on <a href="https://www.technig.com">TECHNIG</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.technig.com/change-network-profile-using-powershell/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">6194</post-id>	</item>
	</channel>
</rss>
