Bulk Delete Security Group

Krishna
Valued Contributor

The below code will delete the Security Group using extender rule.

 

 

 

 

Dim secGrp As List(Of Group) = Brapi.Security.Admin.GetGroups(si)
       For Each Item As Group In secGrp

           If Item.Name <> "Nobody" Or Item.Name <> "Administrators" Or Item.Name <> 
             "Everyone"
              Brapi.Security.Admin.DeleteGroup(si,Item.Name)

        End If
      Next

 

 

 

 

Thanks
Krishna
2 REPLIES 2

JackLacava
Community Manager
Community Manager

Thanks! Word of warning though: make sure the groups you delete are really not referenced, or it might create problems down the line.

Krishna
Valued Contributor

Agreed and please make sure run this in Dev Environment before running into PROD.

Thanks
Krishna