其他分享
首页 > 其他分享> > Win10使用WMIC提示“WMIC已弃用”

Win10使用WMIC提示“WMIC已弃用”

作者:互联网

由此可见,命令行WMIC可能会被微软放弃,是时候停止使用了。这么有用的功能肯定还要继续使用。它的替代品就是powershell的Get-WmiObject。

官方示例:Get-WmiObject -Query “select * from win32_service where name=‘WinRM’”,与此等价的是:wmic service where name=“WinRM”

转换的通法:wmic aaa where bbb=“ccc” get ddd => (Get-WmiObject -Query “select * from win32_aaa where bbb=‘ccc’”).ddd

Get-WmiObject参考

这算什么文章,这么短

标签:WmiObject,Get,WinRM,WMIC,已弃,Win10,where,select
来源: https://blog.csdn.net/WQR1994/article/details/100584671