Cmdlets for Act! CRM

Build 24.0.9062

Remove-ActCRM Cmdlet

Parameters   Output Objects  

Act! CRM データを削除します。

Syntax

Remove-ActCRM [parameters]

Remarks

Remove-ActCRM コマンドレットを使って、SQL DELETE ステートメントに似た構文を用いてAct! CRM データを削除できます。

$conn = Connect-ActCRM -URL 'https://myActCRMserver.com' -User 'myUser' -Password 'myPassword' -ActDatabase 'MyActDB
Remove-ActCRM -Connection $conn -Table "Activities" -Id "1"
Where パラメータは主キーを指定するためにも使われます。
Remove-ActCRM -Connection $conn -Table "exTablePowershell;" -Where "Id = 1"
主キーは、パイプライン上でコマンドレットに渡すこともできます。
Select-ActCRM -Connection $conn -Table Activities -Where "FullName = 'Anna'" | Remove-ActCRM

Copyright (c) 2024 CData Software, Inc. - All rights reserved.
Build 24.0.9062