Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道是否有可能在 PowerShell 中获取所有具有策略“示例”的 PC 名称列表并将它们写入数组?
这是策略,我想将标记为已读入数组的 PC 读出。
一种混乱的方式来查看本地策略是否已应用该策略。
$result = gpresult /r $result -match "security Policy Name" $?
如果运行它的机器应用了策略,那么它会将true写入控制台,否则会回显 false。
虽然,我个人的偏好是为该策略建立一个组,然后向该组的成员报告。