当前位置:网站首页>Win:使用 PowerShell 检查无线信号的强弱

Win:使用 PowerShell 检查无线信号的强弱

2022-07-05 01:30:00 生活在香樟园里

1、确认正在连接到无线信号的强弱:

netsh wlan show interfaces

   

   在 PowerShell 中,直接显示信号的强弱:

(netsh wlan show interfaces) -Match '^\s+Signal' -Replace '^\s+Signal\s+:\s+',''

2、当连接信号小于等于 30%,则在通知栏中显示弹出窗口:

   $cur_strength=(netsh wlan show interfaces) -Match '^\s+Signal' -Replace '^\s+Signal\s+:\s+','' | Out-String

   If ($cur_strength.replace('%','') –le 30)

   {

     Add-Type -AssemblyName System.Windows.Forms

     $global:balmsg = New-Object System.Windows.Forms.NotifyIcon

     $path = (Get-Process -id $pid).Path

     $balmsg.Icon = [System.Drawing.Icon]::ExtractAssociatedIcon($path)

原网站

版权声明
本文为[生活在香樟园里]所创,转载请带上原文链接,感谢
https://blog.csdn.net/rllyz/article/details/125557008