循环通过数组循环使用Get-NetAdapter检查正确的名称
最近,我将脚本放在一起,将从计算机中收集一些数据。 在提取此数据时,其中一些是用名称对其进行排序的。
$ btmacadress = $(get -netadapter -name“蓝牙网络连接”)。macaddress
在您在西班牙计算机上使用此脚本时,名称将更改为“ConexióndeRed Bluetooth”。
我创建了一个带有不同语言的连接名称的数组。我该如何制作它,以便它会循环遍历数组并检查此数组中是否正确的名称?
我试图将数组代替“蓝牙网络连接”,但几乎没有成功。
Recently I put a script together that will collect some data from a computer.
While extracting this data some of it is being sorted by name.
$BTMacAdress = $(Get-NetAdapter -Name "Bluetooth Network Connection").MacAddress
When you use this script on a Spanish machine the name will change to "Conexión de red Bluetooth".
I have created an array with all the connection names in different languages. How can I make it so it will loop through the array and check if the correct name is in this array?
I tried to put the array in place of "Bluetooth Network Connection" but that had little succes.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通过媒体类型的过滤器
当然也可以按照您的使用方式工作:
Filter by media type
This of course also works the way you're using it: