gpt4 book ai didi

powershell - -Filter 中的通配符搜索

转载 作者:行者123 更新时间:2023-12-02 22:31:46 25 4
gpt4 key购买 nike

想要更好地了解过滤器选项,例如

这是产生正确的结果

Get-WmiObject -Class Win32_Service -Filter "Name = 'vss'"

如何在过滤器内进行通配符搜索而不将其管道到 where 条件,例如:
Get-WmiObject -Class Win32_Service -Filter "Name='v*'"

Get-WmiObject -Class Win32_Service -Filter "Name='*v*'"

Get-WmiObject -Class Win32_Service -Filter "Name='v'"

Get-WmiObject -Class Win32_Service -Filter "Name like 'v*'"

最佳答案

Get-WmiObject -Class Win32_Service -Filter "name LIKE 'vss%'"

它使用 WQL 进行过滤(% 是通配符)

最终运行为
Get-WmiObject -Query "Select * From win32_service Where name Like 'vss%'"

关于powershell - -Filter 中的通配符搜索,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46557186/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com