RedPlug's Tory

Wifi 기본 밴드위스 설정 및 로밍 주동성 변경 스크립트

그룹정책용으로 작성, 관리자 권한으로 실행 필요

Get-ChildItem HKLM:\SYSTEM\CurrentControlSet\Control\Class -Recurse -ErrorAction silentlyContinue | Get-ItemProperty |  

ForEach-Object {if ($_.RoamingPreferredBandType -ge 0) { 
$path = $_.pspath 

# 5GHz 밴드 기본 설정(0 = 기본 설정 없음, 1 = 2.4GHz 밴드 설정, 2 = 5GHz 밴드 기본 설정)
Set-ItemProperty $path -name "RoamingPreferredBandType" -Value "2"

# 로밍의 주동성 (0 ~ 4 : 최하 ~ 최고)
Set-ItemProperty $path -name "RoamAggressiveness" -Value "4" 

write-output $_.pspath 
} 
}

 

참고 : community.intel.com/t5/Wireless/Setting-Preferred-Band-to-5ghz/td-p/352146