我们可以指示 netsh.exe 将其输出转储到 xml 文件吗?
假设我在命令提示符中输入以下命令:
netsh.exe interface ip show config "Local Area Connection" > c:\temp\dump.txt
此命令将输出转储到文本文件。我希望以 xml 格式转储相同的输出。是否可以 ?
Assuming I am entering the following command in the command prompt:
netsh.exe interface ip show config "Local Area Connection" > c:\temp\dump.txt
this command dumps the output to a text file. I want the same output to be dumped in xml format. Is it possible ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
本机不支持此功能。但您可以使用 Jeremy Engel 提供的 PowerShell DHCP Cmdlet:
http://gallery.technet.microsoft.com/scriptcenter/05b1d766-25a6-45cd-a0f1-8741ff6c04ec
这将围绕 netsh 命令创建 PowerShell 对象,然后您可以从该对象创建xml 文件。
This isn't supported nativly. But you can use the PowerShell DHCP Cmdlets from Jeremy Engel:
http://gallery.technet.microsoft.com/scriptcenter/05b1d766-25a6-45cd-a0f1-8741ff6c04ec
This will create PowerShell object's around the netsh commands and then you can create from this objects xml files.