While searching for a solution to delete a personal machine certificate, I again found Powershell to provide the best solution. Let´s say you have a machine certificate Issued by CA “testca.domain.bla” and want to delete it. This is solved in a one liner in Powershell Version 3: get-childitem -path cert:localmachinemy | where {$_.Issuer -like…