powershell AD-删除 - GPO

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell AD-删除 - GPO相关的知识,希望对你有一定的参考价值。

#Import-Module GroupPolicy

$AllGPOs = Get-GPO -All 
foreach ($gpo in $AllGPOs)
{ 
    #[xml]$report = Get-GPOReport -Name $gpo.DisplayName -ReportType Xml
    #If ($report.GPO.LinksTo -eq $null)
    $name = [string]$gpo.DisplayName
    if($name.contains('Blank GPO'))
    {
        Write-Output $gpo.DisplayName
        #delete the GPO
        Remove-GPO -Name $gpo.DisplayName  
    }
}

以上是关于powershell AD-删除 - GPO的主要内容,如果未能解决你的问题,请参考以下文章

powershell GPO

powershell 广告获得的GPO

AD环境下,KB3139398 KB4054517 更新失败的解决办法

powershell 验证GPO IP打印机是否可以ping通

powershell AD-删除用户

通过powershell查询OU中被禁用的AD账号,并删除他们的所属组