SQL - Agents Currently Patching

Useful script s and methods to resolve complicated issues in ConnectWise Automate
Post Reply
User avatar
Cubert
Posts: 2432
Joined: Tue Dec 29, 2015 7:57 pm
8
Contact:

SQL - Agents Currently Patching

Post by Cubert »

Currently Patching...

Code: Select all

SELECT cmd.`ComputerID` AS 'ID',
     cl.name AS 'Client',
     c.name AS 'Hostname',
     c.OS AS 'OS',
     cmd.DateUpdated AS 'Start Time',
     (LENGTH (cmd.parameters) - LENGTH(REPLACE(cmd.parameters,',','')))+1
AS 'Patches Installing',
     (ROUND(TIME_TO_SEC(TIMEDIFF(NOW(),cmd.DateUpdated))/60)-1) AS 'Elapsed Time (m)'
FROM commands cmd
JOIN computers c ON (c.computerid = cmd.computerid) JOIN clients cl ON (cl.clientid = c.clientid) WHERE cmd.command = 100 AND `status` = 2 ORDER BY `Patches Installing` DESC

Post Reply

Return to “Scripts”