需要确定以太网适配器的网络访问类型
Need to determine the Network Access Type of an Ethernet adapter
我需要尝试找出各种虚拟机上以太网连接的网络访问类型。
简而言之,我正在尝试为
寻找类比
(Get-NetConnectionProfile).IPv4Connectivity
从 Windows 2012 年起效果很好,我正在寻找 运行 针对 Windows 2008 R2 服务器的查询。
我在 Windows 2008 服务器上使用 .NET class 将其转换为 powershell 中的对象,示例代码如下:
$nlm = [Activator]::CreateInstance([Type]::GetTypeFromCLSID([Guid]"{DCB00C01-570F-4A9B-8D69-199FDBA5723B}"))
$nlm.GetNetworkConnections() | ForEach-Object {
[PSCustomObject]@{
NetworkName = ($_.GetNetwork().GetName());
isConnectedToInternet = $_.isConnectedToInternet;
}
if ($nlm.IsConnectedToInternet)
{
$NLAState = 'Internet'
}
"Access type : $NLAState"
我需要尝试找出各种虚拟机上以太网连接的网络访问类型。
简而言之,我正在尝试为
寻找类比 (Get-NetConnectionProfile).IPv4Connectivity
从 Windows 2012 年起效果很好,我正在寻找 运行 针对 Windows 2008 R2 服务器的查询。
我在 Windows 2008 服务器上使用 .NET class 将其转换为 powershell 中的对象,示例代码如下:
$nlm = [Activator]::CreateInstance([Type]::GetTypeFromCLSID([Guid]"{DCB00C01-570F-4A9B-8D69-199FDBA5723B}"))
$nlm.GetNetworkConnections() | ForEach-Object {
[PSCustomObject]@{
NetworkName = ($_.GetNetwork().GetName());
isConnectedToInternet = $_.isConnectedToInternet;
}
if ($nlm.IsConnectedToInternet)
{
$NLAState = 'Internet'
}
"Access type : $NLAState"