powershell Powershell检查网络

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell Powershell检查网络相关的知识,希望对你有一定的参考价值。

function Get-ActiveConnection
{
   Get-WmiObject -Class Win32_NetworkAdapterConfiguration  |
   Where-Object { $_.IPAddress } |
   Select-Object -ExpandProperty Description
}
 
function Test-ActiveConnection
{
 param([Parameter(Mandatory)]$Keyword)
 
 
 @(Get-WmiObject -Class Win32_NetworkAdapterConfiguration |
   Where-Object { $_.IPAddress } |
   Where-Object { $_.Description -like "*
$Keyword*" }).Count -gt 0
 
}

以上是关于powershell Powershell检查网络的主要内容,如果未能解决你的问题,请参考以下文章

通过PowerShell进行网络分析

powershell 检查PowerShell模块更新

powershell 用于检查更新的Powershell脚本

powershell 检查powershell的版本

powershell PowerShell:检查Debug参数

powershell PowerShell:检查是否存在事件日志源