Powershell - 如何创建网络适配器(环回)?
我想使用 powershell 创建一个环回网络适配器。
我可以使用这样的代码获得一个适配器。
$networkAdapter = Get-WMIObject win32_NetworkAdapter | where{$_.ServiceName -eq 'msloop'}
但是,我似乎无法找到如何创建适配器。我发现的唯一的东西使用 devcon.exe
.\devcon.exe -r install $env:windir\Inf\Netloop.inf *MSLOOP | Out-Null
这将用于 Windows 7 盒子,我不想仅仅为了执行它而安装一些其他软件包。如果需要 devcon,那么有没有办法将下载和设置也包含在脚本中?
I want to create a loopback network adapter with powershell.
I can get an adapter using code like this.
$networkAdapter = Get-WMIObject win32_NetworkAdapter | where{$_.ServiceName -eq 'msloop'}
However, I cannot seem to find how to create an adapter. The only thing I found uses devcon.exe
.\devcon.exe -r install $env:windir\Inf\Netloop.inf *MSLOOP | Out-Null
This is going to be for a windows 7 box and I didn't want to have to install some other package just to do it. If devcon is required then is there a way to include the download and setup in the script as well?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论