Remove-GoogleContacts Cmdlet
Deletes GoogleContacts data.
Syntax
Remove-GoogleContacts [parameters]
Remarks
The Remove-GoogleContacts cmdlet allows you to use a syntax similar to SQL DELETE statements to delete GoogleContacts data.
$conn = Connect-GoogleContacts Remove-GoogleContacts -Connection $conn -Table "[My Contacts]" -Id "1"The Where parameter can also be used to specify the primary key:
Remove-GoogleContacts -Connection $conn -Table "exTablePowershell;" -Where "Id = 1"The primary key can also be passed to the cmdlet along the pipeline:
Select-GoogleContacts -Connection $conn -Table [My Contacts] -Where "Id = 'c7782206569106794554'" | Remove-GoogleContacts