我想用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,那么有没有办法在脚本中包含下载和设置?