馃捑 QNAP TS-1273AU-RP Upgrade

I recently upgraded to the QNAP TS-1273AU-RP from my trusty Synolog DS1817+ 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 setup. I have 12x12tb drives in this build which has given me a nice boost in diskspace from the Synology with 8x12tb drives, I am hoping I wont need to upgrade this again for some time to come. ...

March 14, 2024 路 1 min 路 120 words 路 shelby

馃攱 Disable power Save Mode on Physical Network Adapters

# 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 = 'Disabled' $NetworkDevice | Set-NetAdapterPowerManagement Write-Host "Power save mode disabled on: $NetworkDevice" }

November 2, 2023 路 1 min 路 55 words 路 shelby