DPM Agent 無法由Console自動刪除
Note: 在您修改DB DPMDB時,請先備份.
. Perform the following queries:
Select * from tbl_AM_InstalledAgent
Select * from tbl_AM_Server
您可以找到agent. 請修改下列values:
· Deleted: 0 -> 1
· DeletedDateTime NULL -> a date/time
· Enabled: 1 -> 0
例如:
修改values後,請update table 重新開啟DPM console. 您將可以看到Agent從Console被移除.
您可以使用以下語法來update您的Table.
UPDATE [DPMDB].[dbo].[tbl_AM_InstalledAgent]
SET [Deleted] = 1
,[DeletedDateTime] = GETDATE()
,[Enabled] = 0
WHERE [ServerId] = 'AE3E7216-CDB7-449D-B116-225B8EDC5E3D'
AND InstallID = '69885250-DA0E-440B-9B1C-006DD614125C'
請修改紅色部分,修改成您要刪除的Agent ServerId 與 InstallID.
您也可以使用powershell指令,開啟DPM管理介面執行
Remove-ProductionServer.ps1 <DPM Server Name> <Protected Server Name>