Powershell - 如何创建网络适配器(环回)?

发布于 2024-12-06 15:10:35 字数 405 浏览 0 评论 0原文

我想使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文