Deleting Devices in PDQ Connect
To delete a device from PDQ Connect, navigate to that device's Device Info page, click the vertical ellipses button in the top right, and select Delete device.
Devices that are online at the time they are deleted from PDQ Connect will be sent a self destruct command to uninstall the PDQ Connect Agent and remove the associated data from the deleted computer.
If the PDQ Connect Agent is not removed automatically after deleting a device from PDQ Connect, the PDQ Connect Agent and the associated data will need to be manually removed from the device.
Manually Uninstalling the PDQ Connect Agent
In rare cases, the PDQ Connect Agent and its associated data may need to be manually uninstalled from a device. When the PDQ Connect Agent is uninstalled using any of the below methods, the uninstaller will delete the directories that may contain any lingering data.
The directories that will be removed while uninstalling the PDQ Connect Agent are:
C:\ProgramData\PDQ\PDQConnectAgent
C:\Program Files\PDQ\PDQConnectAgent
If these directories are present after uninstalling the PDQ Connect Agent, they can be safely deleted.
Note: Manually uninstalling the PDQ Connect Agent, without first deleting the device from PDQ Connect, will not delete the device from PDQ Connect and it will simply appear Offline. The device will still need to be deleted in the PDQ Connect Admin Web Console.
Uninstalling the PDQ Connect Agent From the Control Panel
On the computer you wish to remove the PDQ Connect Agent from, open the Control Panel > Programs & Features > select the PDQ Connect Agent > Uninstall.
Uninstalling the PDQ Connect Agent Using PowerShell
Copy the script below into PowerShell ISE, save it as a .ps1 file, and run the script as an administrator on the machine you wish to uninstall the PDQ Connect Agent from.
$PDQConnectAgent = Get-WmiObject -Class Win32_Product | Where-Object {$_.Name -eq "PDQConnectAgent"}
$PDQConnectAgent.Uninstall()
Note: This script can also be pasted into a PDQ Deploy Package, using a PowerShell Step.
Uninstalling the PDQ Connect Agent Using PDQ Deploy
To uninstall the PDQ Connect Agent using PDQ Deploy, create a new package with an Install Step > Select the PDQ Connect Agent MSI installer for the Install File > In the MSI Options Field, select Operation: Uninstall > Deploy the package to any computers you wish to remove the PDQ Connect Agent from.