Forum Discussion

Krishna's avatar
Krishna
Valued Contributor
3 years ago

Bulk Delete Security Group

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

 

 

 

 

  • JackLacava's avatar
    JackLacava
    Honored Contributor

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

  • Krishna's avatar
    Krishna
    Valued Contributor

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