实现效果:
使用方法:
Show-NetList #显示Wi-Fi列表 Show-NetList -off #关闭显示 (如图)
Show-NetList #显示Wi-Fi列表
Show-NetList -off #关闭显示 (如图)
实现代码:
function Show-NetList { Param([switch]$off) $arg=if($off.IsPresent){"add"}else{"delete"} netsh wlan $arg filter permission=denyall networktype=infrastructure >Out-Null }