<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>Network on Shelby DeNike</title>
    <link>https://denike.io/tags/network/</link>
    <description>Recent content in Network on Shelby DeNike</description>
    <image>
      <title>Shelby DeNike</title>
      <url>https://assets.denike.io/images/assets/cartoon_profile_200x200px.png</url>
      <link>https://assets.denike.io/images/assets/cartoon_profile_200x200px.png</link>
    </image>
    <generator>Hugo -- 0.154.5</generator>
    <language>en-us</language>
    <lastBuildDate>Thu, 14 Mar 2024 18:37:54 +0000</lastBuildDate>
    <atom:link href="https://denike.io/tags/network/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>💾 QNAP TS-1273AU-RP Upgrade</title>
      <link>https://denike.io/qnap-ts-1273au-rp-upgrade/</link>
      <pubDate>Thu, 14 Mar 2024 18:37:54 +0000</pubDate>
      <guid>https://denike.io/qnap-ts-1273au-rp-upgrade/</guid>
      <description>&lt;p&gt;I recently upgraded to the &lt;a href=&#34;https://amzn.to/48SYaHy&#34;&gt;QNAP TS-1273AU-RP&lt;/a&gt; from my trusty &lt;a href=&#34;https://amzn.to/48OMeXn&#34;&gt;Synolog DS1817+&lt;/a&gt; that has served me well for years. I started to make the move to a rack when we moved into the house, and figured this was the next swap that needed to take place to complete that &lt;a href=&#34;https://denike.io/about/my-setup/&#34;&gt;setup&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;I have &lt;strong&gt;12x12tb&lt;/strong&gt; drives in this build which has given me a nice boost in diskspace from the &lt;a href=&#34;https://amzn.to/48OMeXn&#34;&gt;Synology&lt;/a&gt; with &lt;strong&gt;8x12tb&lt;/strong&gt; drives, I am hoping I wont need to upgrade this again for some time to come.&lt;/p&gt;</description>
    </item>
    <item>
      <title>🔋 Disable power Save Mode on Physical Network Adapters</title>
      <link>https://denike.io/disable-power-save-mode-on-physical-network-adapters/</link>
      <pubDate>Thu, 02 Nov 2023 14:11:56 +0000</pubDate>
      <guid>https://denike.io/disable-power-save-mode-on-physical-network-adapters/</guid>
      <description>&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;# Disable power save mode on network adapters
# Shelby DeNike 10/11/2023

# Get the list of network device adapters
$NetworkAdapters = Get-NetAdapter -Physical | Get-NetAdapterPowerManagement

# Loop through the array, and disable power save mode
foreach ($NetworkDevice in $NetworkAdapters) {
	$NetworkDevice.AllowComputerToTurnOffDevice = &amp;#39;Disabled&amp;#39;
	$NetworkDevice | Set-NetAdapterPowerManagement
	Write-Host &amp;#34;Power save mode disabled on: $NetworkDevice&amp;#34;
}
&lt;/code&gt;&lt;/pre&gt;</description>
    </item>
  </channel>
</rss>
