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