diff --git a/.bk.ps1 b/.bk.ps1 new file mode 100644 index 00000000..2896444e --- /dev/null +++ b/.bk.ps1 @@ -0,0 +1,10 @@ +$b='C:\ProgramData\acg-backup' +'--- COMPLETE.txt ---' +if (Test-Path (Join-Path $b 'COMPLETE.txt')) { Get-Content (Join-Path $b 'COMPLETE.txt') } else { 'absent' } +'--- dir listing ---' +Get-ChildItem $b | Select-Object Name,Length,LastWriteTime | Format-Table -AutoSize | Out-String +'--- rclone.log tail ---' +Get-Content (Join-Path $b 'rclone.log') -Tail 25 +'--- rclone process ---' +$p = Get-Process rclone -ErrorAction SilentlyContinue +if ($p) { 'RUNNING pid=' + $p.Id } else { 'not running' } diff --git a/.chk.ps1 b/.chk.ps1 new file mode 100644 index 00000000..b5ecc4cf --- /dev/null +++ b/.chk.ps1 @@ -0,0 +1,7 @@ +Import-Module BitsTransfer +$j = Get-BitsTransfer -Name 'Win11ARM64ISO' -AllUsers -ErrorAction SilentlyContinue +if ($j) { 'state=' + $j.JobState + ' bytes=' + $j.BytesTransferred + '/' + $j.BytesTotal } +else { 'NO JOB' } +$f = Get-Item 'C:\Users\howar\Desktop\Win11_25H2_English_Arm64_v2.iso' -ErrorAction SilentlyContinue +if ($f) { 'file present size=' + $f.Length } +'uptime-min: ' + [math]::Round(((Get-Date) - (Get-CimInstance Win32_OperatingSystem).LastBootUpTime).TotalMinutes,0) diff --git a/.dl.ps1 b/.dl.ps1 new file mode 100644 index 00000000..73983453 --- /dev/null +++ b/.dl.ps1 @@ -0,0 +1,11 @@ +$url = 'https://software.download.prss.microsoft.com/dbazure/Win11_25H2_English_Arm64_v2.iso?t=d4576e55-692e-48d2-9fed-eaa2e173b5de&P1=1783356015&P2=602&P3=2&P4=xodJg8f55ONbSp7rcTMYQ7XCqe4sRi%2fvBTnMttLYGogof26ximbkVPH1AcGo4uC2lkFA9SLtNzw%2bSF2y70fjMZJDOitpvTLYZovDWjoxvl7qG10gorldh4EujtcKbVgwBswc0PQ4mw7X7Mnt4bCGzZL3Fo5iN9SZA8bch06kISLSuYQrrhNZw%2bvguRStHFL9I7qGSOfVlVdDLbPiDEpW2PX8l8FthpvdVhWCn3gZh72l3mApXWXyKAFra82WgpE79pvPky1bepT%2bnBd3fkmni6or1ZrOnfpac9sWMm3GeHdffxiRtUnT50O7CDN%2b26aF8154BD%2fT6BQgYbAN8B6aFw%3d%3d' +$dst = 'C:\Users\howar\Desktop\Win11_25H2_English_Arm64_v2.iso' +if (Test-Path $dst) { Remove-Item $dst -Force } +Get-BitsTransfer -Name 'Win11ARM64ISO' -AllUsers -ErrorAction SilentlyContinue | Remove-BitsTransfer +Import-Module BitsTransfer +$j = Start-BitsTransfer -Source $url -Destination $dst -Asynchronous -DisplayName 'Win11ARM64ISO' -Priority Foreground +Start-Sleep -Seconds 10 +$j = Get-BitsTransfer -Name 'Win11ARM64ISO' +'state: ' + $j.JobState +'bytes: ' + $j.BytesTransferred + ' / ' + $j.BytesTotal +if ($j.JobState -eq 'Error') { $j.ErrorDescription } diff --git a/.ex.ps1 b/.ex.ps1 new file mode 100644 index 00000000..6749a06a --- /dev/null +++ b/.ex.ps1 @@ -0,0 +1,9 @@ +$rc='C:\ProgramData\acg-backup\rclone\rclone.exe' +foreach ($d in 'C:\Windows','C:\Program Files','C:\Program Files (x86)','C:\ProgramData','C:\Users') { + $out = & $rc size $d --skip-links 2>$null | Select-String 'Total size' + "$d :: $out" +} +'--- C:\ root files (pagefile etc) ---' +Get-ChildItem 'C:\' -File -Force -ErrorAction SilentlyContinue | Select-Object Name,@{n='GB';e={[math]::Round($_.Length/1GB,1)}} | Format-Table -AutoSize | Out-String +'--- D:\vault ---' +Test-Path 'D:\vault' diff --git a/.recon.ps1 b/.recon.ps1 new file mode 100644 index 00000000..c511b792 --- /dev/null +++ b/.recon.ps1 @@ -0,0 +1,11 @@ +$ErrorActionPreference='SilentlyContinue' +'=== BACKUP-ISH PROCESSES ===' +Get-Process | Where-Object { $_.ProcessName -match 'cbb|CBB|robocopy|wbengine|veeam|reflect|acronis|rclone|restic|freefilesync|syncback|disk2vhd|macrium' } | Select-Object ProcessName,Id,StartTime | Format-Table -AutoSize | Out-String +'=== MSP360 INSTALLED ===' +Test-Path 'C:\Program Files\Arizona Computer Guru\Online Backup\cbb.exe' +'=== MSP360 RECENT LOGS ===' +Get-ChildItem 'C:\ProgramData\Online Backup\Logs' -Recurse -Filter *.log | Sort-Object LastWriteTime -Descending | Select-Object -First 5 FullName,LastWriteTime,Length | Format-List | Out-String +'=== WBADMIN ===' +wbadmin get status | Out-String +'=== WHO IS ON ===' +query user | Out-String diff --git a/.sz.ps1 b/.sz.ps1 new file mode 100644 index 00000000..6a937cee --- /dev/null +++ b/.sz.ps1 @@ -0,0 +1,8 @@ +'--- DISK USAGE ---' +Get-PSDrive -PSProvider FileSystem | Where-Object {$_.Used} | Select-Object Name,@{n='UsedGB';e={[math]::Round($_.Used/1GB,1)}},@{n='FreeGB';e={[math]::Round($_.Free/1GB,1)}} | Format-Table -AutoSize | Out-String +'--- FOLDERS COPIED (from log) ---' +Select-String -Path 'C:\ProgramData\acg-backup\rclone.log' -Pattern '^(>>>|=== BACKUP)' | ForEach-Object Line +'--- PER-RUN TRANSFER TOTALS (last stats line before each section end) ---' +Select-String -Path 'C:\ProgramData\acg-backup\rclone.log' -Pattern 'ETA 0s' | ForEach-Object Line | Select-Object -Unique +'--- BUCKET SIZE (rclone size, may take a while) ---' +& 'C:\ProgramData\acg-backup\rclone\rclone.exe' size 'b2:ACG-Tech03L-Backup' --config 'C:\ProgramData\acg-backup\rclone.conf' 2>&1 | Out-String diff --git a/.vf.ps1 b/.vf.ps1 new file mode 100644 index 00000000..8c1c246b --- /dev/null +++ b/.vf.ps1 @@ -0,0 +1,6 @@ +'--- upload.ps1 ---' +Get-Content 'C:\ProgramData\acg-backup\upload.ps1' +'--- rclone.conf (key masked) ---' +(Get-Content 'C:\ProgramData\acg-backup\rclone.conf') -replace '(key|pass|secret|account).*','$1 = ***' +'--- staging dir ---' +Get-ChildItem 'C:\ProgramData\acg-backup\staging' -ErrorAction SilentlyContinue | Select-Object Name,Length | Format-Table -AutoSize | Out-String diff --git a/.wd.ps1 b/.wd.ps1 new file mode 100644 index 00000000..2b7542b4 --- /dev/null +++ b/.wd.ps1 @@ -0,0 +1,20 @@ +Import-Module BitsTransfer +$deadline = (Get-Date).AddMinutes(50) +while ((Get-Date) -lt $deadline) { + $j = Get-BitsTransfer -Name 'Win11ARM64ISO' -ErrorAction SilentlyContinue + if (-not $j) { 'JOB GONE'; break } + if ($j.JobState -eq 'Transferred') { + Complete-BitsTransfer -BitsJob $j + Start-Sleep -Seconds 3 + $f = Get-Item 'C:\Users\howar\Desktop\Win11_25H2_English_Arm64_v2.iso' + 'DONE size=' + $f.Length + break + } + if ($j.JobState -in 'Error','TransientError') { + 'STATE=' + $j.JobState + ' :: ' + $j.ErrorDescription + if ($j.JobState -eq 'Error') { break } + } + Start-Sleep -Seconds 30 +} +$j = Get-BitsTransfer -Name 'Win11ARM64ISO' -ErrorAction SilentlyContinue +if ($j) { 'FINAL state=' + $j.JobState + ' bytes=' + $j.BytesTransferred + '/' + $j.BytesTotal } diff --git a/errorlog.md b/errorlog.md index 51665e64..dd69669e 100644 --- a/errorlog.md +++ b/errorlog.md @@ -19,6 +19,10 @@ Categories (the `[type]` tag): _(none)_ = skill/command execution failure · +2026-07-05 | Howard-Home | git/submodule-cwd | [friction] ran merge+push for guru-rmm from C:/claudetools (parent repo) after cd for verify.sh; harmless fail but wasted a roundtrip — cd back into the submodule before repo ops + +2026-07-05 | Howard-Home | bash/tmp-path | [friction] redirected ssh output to /tmp/deployed-build-server.sh; blocked by block-tmp-path hook; used repo-relative ./.deployed-build-server.sh instead [ctx: ref=feedback_tmp_path_windows] + 2026-07-05 | Howard-Home | powershell/git-commit | [friction] embedded double quotes in git commit -m here-string mangled by CommandLineToArgvW -> 'fatal: /: outside repository'; fix: git commit -F [ctx: ref=feedback_windows_quote_stripping] 2026-07-05 | Howard-Home | git/concurrent-sessions | [friction] git add -A in shared gururmm working tree swept another session's uncommitted SPEC-030 edits into my commit (2nd collision today; f6c163b was the reverse). Fix: explicit-path git add in project repos; coord lock before multi-file work [ctx: ref=coord-locks repo=gururmm] diff --git a/projects/gps-rmm-audit/.edr-agents-now.json b/projects/gps-rmm-audit/.edr-agents-now.json new file mode 100644 index 00000000..64e210da --- /dev/null +++ b/projects/gps-rmm-audit/.edr-agents-now.json @@ -0,0 +1,16379 @@ +[ + { + "id": "ff77e766-1677-4ae0-9ac0-9af95fbea757", + "name": null, + "hostname": "0122-denim-dell", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.1.185", + "ipstring": "192.168.1.185", + "ipPub": "68.107.218.69", + "ipstringPub": "68.107.218.69", + "os": "Windows 11 Core 23H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-02T22:57:51.279Z", + "active": false, + "monitoredJobFetched": "2026-07-02T22:57:50.232Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "2822e2df-afd8-c4c2-8d26-ab120db5c3ad", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-02T22:57:50.234Z", + "locationId": "bb3db4c4-8db9-4f51-beee-2150f5e9b820", + "data": { + "rmmUid": "2822e2df-afd8-c4c2-8d26-ab120db5c3ad" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.132", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-02T11:36:05Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T13:45:45.028Z" + }, + { + "id": "6d075102-8d69-49c9-b302-3aa2c7b854be", + "name": null, + "hostname": "0124-dell3540", + "version": "3.17.1.4968", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": true, + "ip": "192.168.1.155", + "ipstring": "192.168.1.155", + "ipPub": "68.107.218.69", + "ipstringPub": "68.107.218.69", + "os": "Windows 11 Professional 23H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-04-21T09:19:38.470Z", + "active": false, + "monitoredJobFetched": "2026-04-15T22:11:47.609Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "1c9a9783-80e6-7997-1a08-e57585af9d9d", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-04-21T09:19:38.091Z", + "locationId": "bb3db4c4-8db9-4f51-beee-2150f5e9b820", + "data": { + "rmmUid": "1c9a9783-80e6-7997-1a08-e57585af9d9d" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "engineReady": false, + "compatibility": "Unknown", + "rebootRequired": false + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-04-21T09:19:08.269Z" + }, + { + "id": "57c5457c-eea7-41c4-a849-a403b0c450a2", + "name": null, + "hostname": "0225-dell3550", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.0.47", + "ipstring": "192.168.0.47", + "ipPub": "72.201.91.214", + "ipstringPub": "72.201.91.214", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T15:53:58.492Z", + "active": true, + "monitoredJobFetched": "2026-07-05T15:45:57.522Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "5bb2b0b8-3317-b175-fc0d-1c45e5a5a92f", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T15:53:58.210Z", + "locationId": "bb3db4c4-8db9-4f51-beee-2150f5e9b820", + "data": { + "rmmUid": "5bb2b0b8-3317-b175-fc0d-1c45e5a5a92f" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T11:35:05.936Z" + }, + { + "id": "d810d464-448c-4368-8522-70dd6e804723", + "name": null, + "hostname": "0225-dellg16cad", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "127.0.0.1", + "ipstring": "127.0.0.1", + "ipPub": "174.255.186.19", + "ipstringPub": "174.255.186.19", + "os": "Windows 11 Professional 24H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-02T19:45:45.485Z", + "active": false, + "monitoredJobFetched": "2026-07-02T19:45:44.800Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "abf83d7a-6c11-28dc-5b29-f12654b11c2a", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-02T19:45:44.802Z", + "locationId": "bb3db4c4-8db9-4f51-beee-2150f5e9b820", + "data": { + "rmmUid": "abf83d7a-6c11-28dc-5b29-f12654b11c2a" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.132", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-02T11:36:05Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-29T17:40:07.559Z" + }, + { + "id": "ace0270e-a99c-4d5f-9dff-c752eda862f8", + "name": null, + "hostname": "0323-lenovo-nic", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.1.184", + "ipstring": "192.168.1.184", + "ipPub": "68.107.218.69", + "ipstringPub": "68.107.218.69", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-06-23T13:21:31.058Z", + "active": false, + "monitoredJobFetched": "2026-06-23T13:19:28.693Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "790ea775-7ba3-ee3a-f64b-98a732e6e8a9", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-06-23T13:21:29.011Z", + "locationId": "bb3db4c4-8db9-4f51-beee-2150f5e9b820", + "data": { + "rmmUid": "790ea775-7ba3-ee3a-f64b-98a732e6e8a9" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.46", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.10", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-06-23T08:33:53Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-09T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": { + "engine": "1.1.26050.11", + "product": "4.18.26050.15", + "service": "4.18.26050.15", + "nisEngine": "1.1.26050.11", + "asSignature": "1.453.228.0", + "avSignature": "1.453.228.0", + "nisSignature": "1.453.228.0", + "fileSystemFilter": "4.18.26050.15" + }, + "enabled": true, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T13:00:29.579Z" + }, + { + "id": "46f0dfe9-1c88-4259-8e30-0631f0d4a993", + "name": null, + "hostname": "0422-justinb-dell", + "version": "3.17.1.3763", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": true, + "ip": "192.168.1.253", + "ipstring": "192.168.1.253", + "ipPub": "68.107.218.69", + "ipstringPub": "68.107.218.69", + "os": "Windows 11 Professional 22H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-06-11T20:21:41.122Z", + "active": false, + "monitoredJobFetched": null, + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "c8690c77-3072-2a44-8763-1a2724182483", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": false, + "dnsSecureEnabled": false, + "dnsSecureLastEnabled": null, + "locationId": "bb3db4c4-8db9-4f51-beee-2150f5e9b820", + "data": { + "rmmUid": "c8690c77-3072-2a44-8763-1a2724182483" + }, + "eppData": { + "dattoav": { + "data": { + "eppVersion": "1.0.2508.6637", + "rtpVersion": "1.0.2508.7036", + "vdfVersion": "8.20.62.182", + "amsiVersion": "1.0.2508.2045", + "compatibility": "Unknown", + "engineVersion": "8.3.72.0", + "sentryVersion": "3.0.2508.1993", + "rebootRequired": false, + "vdfReleaseDate": "2025-09-12T10:18:16Z", + "firewallVersion": "1.0.2508.2965", + "coreEngineVersion": "2.0.3.42", + "engineReleaseDate": "2025-08-11T00:00:00Z", + "quarantineVersion": "1.0.2508.1964", + "remediationVersion": "1.0.2507.2555", + "onDemandScanVersion": "1.0.2508.2894", + "netProtectionVersion": "1.0.2508.2416" + }, + "enabled": false, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-11T20:21:40.439Z" + }, + { + "id": "a0f41c09-eae7-4998-a9c9-ed576b9eafd5", + "name": null, + "hostname": "0423-dell-cad-01", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.114.134", + "ipstring": "192.168.114.134", + "ipPub": "99.179.141.146", + "ipstringPub": "99.179.141.146", + "os": "Windows 11 Professional 23H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T12:41:32.705Z", + "active": false, + "monitoredJobFetched": "2026-07-05T12:41:30.416Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "55ae003c-ac58-d5fe-9e62-8eebe31a35cf", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T12:41:30.496Z", + "locationId": "bb3db4c4-8db9-4f51-beee-2150f5e9b820", + "data": { + "rmmUid": "55ae003c-ac58-d5fe-9e62-8eebe31a35cf" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.136", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-02T22:34:22Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:15:25.543Z" + }, + { + "id": "3426b9c5-fe69-4b3e-80dd-852f786f7e85", + "name": null, + "hostname": "0424-dell3540", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.254.11", + "ipstring": "192.168.254.11", + "ipPub": "47.186.251.90", + "ipstringPub": "47.186.251.90", + "os": "Windows 11 Professional 23H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T15:04:43.305Z", + "active": false, + "monitoredJobFetched": "2026-07-05T15:04:39.805Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "193c0c49-2036-e7ca-3335-1af9e7ff6769", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T15:04:39.808Z", + "locationId": "bb3db4c4-8db9-4f51-beee-2150f5e9b820", + "data": { + "rmmUid": "193c0c49-2036-e7ca-3335-1af9e7ff6769" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.150", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-04T13:11:44Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:22:39.930Z" + }, + { + "id": "604eaf7d-f404-45f5-ac26-33e1a2d44aa6", + "name": null, + "hostname": "0524-dellg16", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "172.20.10.6", + "ipstring": "172.20.10.6", + "ipPub": "174.252.214.149", + "ipstringPub": "174.252.214.149", + "os": "Windows 11 Professional 23H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-04T22:35:13.602Z", + "active": false, + "monitoredJobFetched": "2026-07-04T22:33:12.158Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "b7f16d7b-c957-0d7d-79d3-dbb0b0e517fe", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-04T22:35:12.233Z", + "locationId": "bb3db4c4-8db9-4f51-beee-2150f5e9b820", + "data": { + "rmmUid": "b7f16d7b-c957-0d7d-79d3-dbb0b0e517fe" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.150", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-04T13:11:44Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T14:49:09.715Z" + }, + { + "id": "4276cc8a-7fcf-4dd6-a8da-bcd6bc46453b", + "name": null, + "hostname": "0525-2-dell3550", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.1.186", + "ipstring": "192.168.1.186", + "ipPub": "138.28.17.25", + "ipstringPub": "138.28.17.25", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-02T21:13:00.884Z", + "active": false, + "monitoredJobFetched": "2026-07-02T21:00:55.490Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "f5124098-c2b1-9e21-a0f5-b43daa367ac1", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-02T21:12:56.108Z", + "locationId": "bb3db4c4-8db9-4f51-beee-2150f5e9b820", + "data": { + "rmmUid": "f5124098-c2b1-9e21-a0f5-b43daa367ac1" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.132", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-02T11:36:05Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T10:41:30.308Z" + }, + { + "id": "0f696134-1118-4919-83ae-2483e0a750cf", + "name": null, + "hostname": "0525-asusfx707z", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "127.0.0.1", + "ipstring": "127.0.0.1", + "ipPub": "98.165.40.63", + "ipstringPub": "98.165.40.63", + "os": "Windows 11 Core 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T14:21:43.138Z", + "active": false, + "monitoredJobFetched": "2026-07-05T14:21:43.121Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "984c8b30-33fd-1dd7-3f7e-b34b857c90f3", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T14:21:43.123Z", + "locationId": "bb3db4c4-8db9-4f51-beee-2150f5e9b820", + "data": { + "rmmUid": "984c8b30-33fd-1dd7-3f7e-b34b857c90f3" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.150", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-04T13:11:44Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-22T17:56:07.530Z" + }, + { + "id": "f3b7fdf6-5e98-4e9c-8a3a-55f8dc8cedbc", + "name": null, + "hostname": "0525-dell3550", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "10.223.148.166", + "ipstring": "10.223.148.166", + "ipPub": "174.255.180.197", + "ipstringPub": "174.255.180.197", + "os": "Windows 11 Professional 24H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-04T17:58:17.411Z", + "active": false, + "monitoredJobFetched": "2026-07-04T17:54:13.344Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "9a144dda-bc26-cdba-4aa8-b9e3d65f0d0e", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-04T17:58:13.919Z", + "locationId": "bb3db4c4-8db9-4f51-beee-2150f5e9b820", + "data": { + "rmmUid": "9a144dda-bc26-cdba-4aa8-b9e3d65f0d0e" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.150", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-04T13:11:44Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:14:24.930Z" + }, + { + "id": "7452022a-a2c7-4b3c-8af2-789d988ad8bc", + "name": null, + "hostname": "0525-dell3550-1", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.2.172", + "ipstring": "192.168.2.172", + "ipPub": "71.89.151.135", + "ipstringPub": "71.89.151.135", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-01T12:07:47.051Z", + "active": false, + "monitoredJobFetched": "2026-07-01T12:05:42.508Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "1bc0c469-b285-4aed-0ae5-7e77e329dd17", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-01T12:07:43.108Z", + "locationId": "bb3db4c4-8db9-4f51-beee-2150f5e9b820", + "data": { + "rmmUid": "1bc0c469-b285-4aed-0ae5-7e77e329dd17" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.116", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-06-30T11:46:46Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T12:48:30.606Z" + }, + { + "id": "74a4fbed-3416-46cd-9905-73dd5b1d4fde", + "name": null, + "hostname": "0525-dell3550-2", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.0.103", + "ipstring": "192.168.0.103", + "ipPub": "71.209.204.134", + "ipstringPub": "71.209.204.134", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-02T23:25:31.416Z", + "active": false, + "monitoredJobFetched": "2026-07-02T23:15:27.642Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "0d2b4178-90c5-83e9-d65e-ce941ff035a6", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-02T23:25:28.498Z", + "locationId": "bb3db4c4-8db9-4f51-beee-2150f5e9b820", + "data": { + "rmmUid": "0d2b4178-90c5-83e9-d65e-ce941ff035a6" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.134", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-02T17:37:00Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T14:12:42.785Z" + }, + { + "id": "9c7077e9-d639-4f73-aa4d-26a4509954b9", + "name": null, + "hostname": "0621-dell3502", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.1.32", + "ipstring": "192.168.1.32", + "ipPub": "68.107.218.69", + "ipstringPub": "68.107.218.69", + "os": "Windows 11 ProfessionalWorkstation 22H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-02T22:51:46.256Z", + "active": false, + "monitoredJobFetched": "2026-07-02T22:51:44.685Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "415e5e9c-ed2b-bd7c-4ec8-0b2d7e142062", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-02T22:51:44.687Z", + "locationId": "bb3db4c4-8db9-4f51-beee-2150f5e9b820", + "data": { + "rmmUid": "415e5e9c-ed2b-bd7c-4ec8-0b2d7e142062" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.134", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-02T17:37:00Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T13:55:27.977Z" + }, + { + "id": "441d789a-a376-47f0-a253-5dca0762351a", + "name": null, + "hostname": "0622-david-hp", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.1.129", + "ipstring": "192.168.1.129", + "ipPub": "70.177.5.164", + "ipstringPub": "70.177.5.164", + "os": "Windows 11 Core 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-02T20:59:40.829Z", + "active": false, + "monitoredJobFetched": "2026-07-02T20:59:38.392Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "33000b38-20b2-0995-f9c1-a599c5926b26", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-02T20:59:38.394Z", + "locationId": "bb3db4c4-8db9-4f51-beee-2150f5e9b820", + "data": { + "rmmUid": "33000b38-20b2-0995-f9c1-a599c5926b26" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.132", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-02T11:36:05Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:14:58.675Z" + }, + { + "id": "afa1b968-1da8-4c4a-8b1e-f637d957f967", + "name": null, + "hostname": "0624-dellg16", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.0.199", + "ipstring": "192.168.0.199", + "ipPub": "98.171.92.53", + "ipstringPub": "98.171.92.53", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:05:13.534Z", + "active": true, + "monitoredJobFetched": "2026-07-05T16:01:11.026Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "8f341f67-fcb3-f9a9-ff66-6c6401ee251f", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:05:11.319Z", + "locationId": "bb3db4c4-8db9-4f51-beee-2150f5e9b820", + "data": { + "rmmUid": "8f341f67-fcb3-f9a9-ff66-6c6401ee251f" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:14:21.776Z" + }, + { + "id": "1c1fd24a-44d4-4993-ba14-05c988973cd7", + "name": null, + "hostname": "0709-dell3550", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.1.236", + "ipstring": "192.168.1.236", + "ipPub": "68.107.218.69", + "ipstringPub": "68.107.218.69", + "os": "Windows 11 Professional 24H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-01T21:09:49.685Z", + "active": false, + "monitoredJobFetched": "2026-07-01T21:09:48.195Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "397967fb-83e4-db6a-1efb-bec7118be154", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-01T21:09:48.197Z", + "locationId": "bb3db4c4-8db9-4f51-beee-2150f5e9b820", + "data": { + "rmmUid": "397967fb-83e4-db6a-1efb-bec7118be154" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.126", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-01T14:06:54Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T11:44:43.971Z" + }, + { + "id": "40b10bfc-f72a-4f2d-a3fa-e2ae0b5fce91", + "name": null, + "hostname": "0723-dell3540-2", + "version": "3.17.1.5179", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.1.185", + "ipstring": "192.168.1.185", + "ipPub": "70.177.5.164", + "ipstringPub": "70.177.5.164", + "os": "Windows 11 Professional 23H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-05-12T01:26:19.916Z", + "active": false, + "monitoredJobFetched": "2026-05-12T01:26:15.574Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": null, + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-05-12T01:26:16.104Z", + "locationId": "b2b5edcc-fe97-4c6a-9607-a0b11490de44", + "data": {}, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "engineReady": true, + "compatibility": "Modern", + "rebootRequired": false + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-05-11T23:08:10.724Z" + }, + { + "id": "14deb94d-0e80-4fe7-9f10-ff474ed80134", + "name": null, + "hostname": "0724-dell3550", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.2.107", + "ipstring": "192.168.2.107", + "ipPub": "143.105.159.171", + "ipstringPub": "143.105.159.171", + "os": "Windows 11 Professional 23H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-02T23:28:31.428Z", + "active": false, + "monitoredJobFetched": "2026-07-02T23:26:26.904Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "7bfac269-9b0b-3059-a962-318534f03827", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-02T23:28:27.022Z", + "locationId": "bb3db4c4-8db9-4f51-beee-2150f5e9b820", + "data": { + "rmmUid": "7bfac269-9b0b-3059-a962-318534f03827" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.126", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-01T14:06:54Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T12:34:22.566Z" + }, + { + "id": "208d04ab-773f-4f9b-9c9b-a5c1464bbe7b", + "name": null, + "hostname": "0724-tara", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "127.0.0.1", + "ipstring": "127.0.0.1", + "ipPub": "98.171.44.68", + "ipstringPub": "98.171.44.68", + "os": "Windows 11 Professional 23H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-03T21:22:37.180Z", + "active": false, + "monitoredJobFetched": "2026-07-03T21:22:34.469Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": null, + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-03T21:22:34.471Z", + "locationId": "bb3db4c4-8db9-4f51-beee-2150f5e9b820", + "data": { + "rmmUid": null + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.140", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-03T13:13:19Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-21T03:41:28.380Z" + }, + { + "id": "e92de242-c707-4b5e-ba50-18793a7d4699", + "name": null, + "hostname": "0825-lenovo-x1", + "version": "3.17.1.5409", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.0.171", + "ipstring": "192.168.0.171", + "ipPub": "98.171.92.53", + "ipstringPub": "98.171.92.53", + "os": "Windows 11 Professional 23H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-06-18T17:14:59.067Z", + "active": false, + "monitoredJobFetched": "2026-06-18T17:12:54.421Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "8ebab87a-aff8-44f2-10c2-dcd09d41ce37", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-06-18T17:14:55.011Z", + "locationId": "bb3db4c4-8db9-4f51-beee-2150f5e9b820", + "data": { + "rmmUid": "8ebab87a-aff8-44f2-10c2-dcd09d41ce37" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.0", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.10", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-06-18T10:13:50Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-09T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-05-21T14:23:10.113Z" + }, + { + "id": "c01036a2-deaf-45cf-8f9a-7fc5a82a088d", + "name": null, + "hostname": "09-21-dell-lisa", + "version": "3.17.1.5179", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "127.0.0.1", + "ipstring": "127.0.0.1", + "ipPub": "70.177.5.164", + "ipstringPub": "70.177.5.164", + "os": "Windows 10 Pro 2009 Professional 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-05-02T07:24:26.794Z", + "active": false, + "monitoredJobFetched": "2026-05-02T07:24:23.127Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "ceb9a1c1-2c44-c993-be5f-41a2412080af", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-05-02T07:24:23.130Z", + "locationId": "bb3db4c4-8db9-4f51-beee-2150f5e9b820", + "data": { + "rmmUid": "ceb9a1c1-2c44-c993-be5f-41a2412080af" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2604.8994", + "rtpVersion": "1.0.2604.8504", + "vdfVersion": "8.20.77.22", + "amsiVersion": "1.0.2604.2840", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.2", + "sentryVersion": "3.0.2603.2974", + "rebootRequired": false, + "vdfReleaseDate": "2026-04-27T07:16:29Z", + "firewallVersion": "1.0.2604.3973", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-04-22T00:00:00Z", + "quarantineVersion": "1.0.2604.2487", + "remediationVersion": "1.0.2604.3271", + "onDemandScanVersion": "1.0.2604.3709", + "netProtectionVersion": "1.0.2604.3181" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-04-27T13:55:45.239Z" + }, + { + "id": "5de9da79-f64e-4639-94cf-4d00bc9cee80", + "name": null, + "hostname": "0923-dell616", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "10.0.0.27", + "ipstring": "10.0.0.27", + "ipPub": "71.226.55.168", + "ipstringPub": "71.226.55.168", + "os": "Windows 11 Professional 24H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-02T22:17:01.103Z", + "active": false, + "monitoredJobFetched": "2026-07-02T22:16:57.712Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "f59ee0f7-faba-f8ae-d5c7-c99d5c1da06a", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-02T22:16:57.715Z", + "locationId": "bb3db4c4-8db9-4f51-beee-2150f5e9b820", + "data": { + "rmmUid": "f59ee0f7-faba-f8ae-d5c7-c99d5c1da06a" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.134", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-02T17:37:00Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T13:39:38.905Z" + }, + { + "id": "a9bef6ee-7af6-43f8-8569-5939c1dc83b2", + "name": null, + "hostname": "1024-dellg16", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.1.227", + "ipstring": "192.168.1.227", + "ipPub": "68.107.218.69", + "ipstringPub": "68.107.218.69", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T10:25:47.073Z", + "active": false, + "monitoredJobFetched": "2026-07-05T10:11:42.415Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "96d00531-39b0-17a2-a397-2a392f046e48", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T10:25:43.199Z", + "locationId": "bb3db4c4-8db9-4f51-beee-2150f5e9b820", + "data": { + "rmmUid": "96d00531-39b0-17a2-a397-2a392f046e48" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.150", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-04T13:11:44Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T10:13:25.189Z" + }, + { + "id": "8a19e9f4-0e33-4510-9653-fba802b88161", + "name": null, + "hostname": "1122-dell-tim", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.1.42", + "ipstring": "192.168.1.42", + "ipPub": "68.107.218.69", + "ipstringPub": "68.107.218.69", + "os": "Windows 11 Professional 22H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-02T22:55:06.269Z", + "active": false, + "monitoredJobFetched": "2026-07-02T22:43:02.706Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": null, + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-02T22:55:03.577Z", + "locationId": "bb3db4c4-8db9-4f51-beee-2150f5e9b820", + "data": { + "rmmUid": null + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.134", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-02T17:37:00Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:14:53.908Z" + }, + { + "id": "0d2991d2-d38f-42df-ae07-f87a6f1dcee5", + "name": null, + "hostname": "1122-suzanne-dell", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.1.69", + "ipstring": "192.168.1.69", + "ipPub": "70.177.5.164", + "ipstringPub": "70.177.5.164", + "os": "Windows 10 Pro 2009 Professional 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-02T20:41:05.753Z", + "active": false, + "monitoredJobFetched": "2026-07-02T20:31:00.050Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "ee0811bf-3c76-888e-5982-9c4037f6c1be", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-02T20:41:00.892Z", + "locationId": "bb3db4c4-8db9-4f51-beee-2150f5e9b820", + "data": { + "rmmUid": "ee0811bf-3c76-888e-5982-9c4037f6c1be" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.132", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-02T11:36:05Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T14:02:16.827Z" + }, + { + "id": "8ea9388e-9f7c-4058-8f71-31f45457af84", + "name": null, + "hostname": "1123-dell3540", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.1.204", + "ipstring": "192.168.1.204", + "ipPub": "68.107.218.69", + "ipstringPub": "68.107.218.69", + "os": "Windows 11 Professional 23H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:06:48.539Z", + "active": true, + "monitoredJobFetched": "2026-07-05T16:02:44.654Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "533d5513-7fd7-851a-50e5-bdd1c3309192", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:06:44.634Z", + "locationId": "bb3db4c4-8db9-4f51-beee-2150f5e9b820", + "data": { + "rmmUid": "533d5513-7fd7-851a-50e5-bdd1c3309192" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:27:59.934Z" + }, + { + "id": "c9a2c858-b86a-4cb0-99ff-749f626cc68e", + "name": null, + "hostname": "1124-dell3550", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.1.246", + "ipstring": "192.168.1.246", + "ipPub": "68.107.218.69", + "ipstringPub": "68.107.218.69", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:05:28.535Z", + "active": true, + "monitoredJobFetched": "2026-07-05T16:01:28.229Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "eae3073a-0331-5ae6-294f-03fb8386238f", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:05:28.529Z", + "locationId": "bb3db4c4-8db9-4f51-beee-2150f5e9b820", + "data": { + "rmmUid": "eae3073a-0331-5ae6-294f-03fb8386238f" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:15:36.318Z" + }, + { + "id": "9992cb10-2ae0-4dfe-961b-42e29f3b5f6a", + "name": null, + "hostname": "1225-lenovo-e14", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "172.29.216.24", + "ipstring": "172.29.216.24", + "ipPub": "174.255.187.58", + "ipstringPub": "174.255.187.58", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-02T22:53:11.263Z", + "active": false, + "monitoredJobFetched": "2026-07-02T22:47:13.387Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "0c596030-ad38-e758-834b-004df5f008b9", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-02T22:53:08.040Z", + "locationId": "bb3db4c4-8db9-4f51-beee-2150f5e9b820", + "data": { + "rmmUid": "0c596030-ad38-e758-834b-004df5f008b9" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.134", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-02T17:37:00Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T15:06:11.326Z" + }, + { + "id": "214a2ca5-95ac-41ff-9e8f-91739da82b2d", + "name": null, + "hostname": "1225-lenovo-e14", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "127.0.0.1", + "ipstring": "127.0.0.1", + "ipPub": "68.104.243.98", + "ipstringPub": "68.104.243.98", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-02T14:09:23.969Z", + "active": false, + "monitoredJobFetched": "2026-07-02T14:09:23.572Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "da8ca6d1-5963-ef8b-114f-e1d613c16ab8", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-02T14:09:23.664Z", + "locationId": "bb3db4c4-8db9-4f51-beee-2150f5e9b820", + "data": { + "rmmUid": "da8ca6d1-5963-ef8b-114f-e1d613c16ab8" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.126", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-01T14:06:54Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T12:54:08.938Z" + }, + { + "id": "55a097e7-4fea-47c3-a9b9-0f9dd603e436", + "name": null, + "hostname": "1225-lenovo-e16", + "version": "3.17.1.5179", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": true, + "ip": "127.0.0.1", + "ipstring": "127.0.0.1", + "ipPub": "207.190.12.102", + "ipstringPub": "207.190.12.102", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-05-16T14:12:20.337Z", + "active": false, + "monitoredJobFetched": "2026-05-15T04:26:11.729Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "b334f988-2c1e-2f10-1e23-272618eee8cb", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-05-16T14:12:19.937Z", + "locationId": "bb3db4c4-8db9-4f51-beee-2150f5e9b820", + "data": { + "rmmUid": "b334f988-2c1e-2f10-1e23-272618eee8cb" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2604.8994", + "rtpVersion": "1.0.2604.8504", + "vdfVersion": "8.21.0.114", + "amsiVersion": "1.0.2604.2840", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.6", + "sentryVersion": "3.0.2603.2974", + "rebootRequired": false, + "vdfReleaseDate": "2026-05-15T19:46:58Z", + "firewallVersion": "1.0.2604.3973", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-04-28T00:00:00Z", + "quarantineVersion": "1.0.2604.2487", + "remediationVersion": "1.0.2604.3271", + "onDemandScanVersion": "1.0.2604.3709", + "netProtectionVersion": "1.0.2604.3181" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-05-15T08:28:36.302Z" + }, + { + "id": "0983b62d-590e-412c-a81f-206c1643deed", + "name": null, + "hostname": "1225-lenovo-t14", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.1.170", + "ipstring": "192.168.1.170", + "ipPub": "70.177.5.164", + "ipstringPub": "70.177.5.164", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-02T20:21:50.644Z", + "active": false, + "monitoredJobFetched": "2026-07-02T20:13:48.445Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "017c41a3-9182-ec8b-14f7-19325be19aa2", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-02T20:21:48.696Z", + "locationId": "bb3db4c4-8db9-4f51-beee-2150f5e9b820", + "data": { + "rmmUid": "017c41a3-9182-ec8b-14f7-19325be19aa2" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.132", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-02T11:36:05Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-22T12:38:25.177Z" + }, + { + "id": "f9f96b39-3bb1-4be8-85b0-0183693cff04", + "name": null, + "hostname": "JB-MacBook-24-v2.local", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.68.69", + "ipstring": "192.168.68.69", + "ipPub": "75.24.210.230", + "ipstringPub": "75.24.210.230", + "os": "MacOS 26.5.1 (25F80)", + "osWindows": false, + "osOsx": true, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:00:48.516Z", + "active": true, + "monitoredJobFetched": "2026-07-05T15:46:16.546Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "8cfe72db-57ae-df30-54a8-384cb0967c0e", + "deviceShortId": null, + "deviceGroupId": null, + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:00:45.673Z", + "locationId": "ce208436-0cfa-49fe-9ed0-44c44d6292f6", + "data": { + "rmmUid": "8cfe72db-57ae-df30-54a8-384cb0967c0e" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "vdfVersion": "8.21.2.138", + "engineReady": true, + "avpackVersion": "8.6.6.14", + "compatibility": "Modern", + "engineVersion": "8.4.2.12", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-03" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": null, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:30:44.696Z" + }, + { + "id": "5a2ff350-5b2b-401a-abec-ce94e9f5f3ca", + "name": null, + "hostname": "Mac.peacefulspirit.local", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.0.136", + "ipstring": "192.168.0.136", + "ipPub": "98.190.129.150", + "ipstringPub": "98.190.129.150", + "os": "MacOS 26.2 (25C56)", + "osWindows": false, + "osOsx": true, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T10:00:41.970Z", + "active": false, + "monitoredJobFetched": "2026-07-05T10:00:40.299Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "a3cd9944-e9d5-5c46-0f9f-e67d2fe85479", + "deviceShortId": null, + "deviceGroupId": null, + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T10:00:40.301Z", + "locationId": "53b57147-a5ac-4bf0-bfe6-0e23ec428112", + "data": { + "rmmUid": "a3cd9944-e9d5-5c46-0f9f-e67d2fe85479" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "vdfVersion": "8.21.2.150", + "engineReady": true, + "avpackVersion": "8.6.6.14", + "compatibility": "Modern", + "engineVersion": "8.4.2.12", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-04" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": null, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T16:45:24.495Z" + }, + { + "id": "389000ad-6b00-4a95-8ba8-89fd613ccc1a", + "name": null, + "hostname": "Pauls-iMac.local", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "10.5.0.2", + "ipstring": "10.5.0.2", + "ipPub": "185.222.243.195", + "ipstringPub": "185.222.243.195", + "os": "MacOS 26.5.1 (25F80)", + "osWindows": false, + "osOsx": true, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:03:23.527Z", + "active": true, + "monitoredJobFetched": "2026-07-05T16:03:18.905Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "2cb98917-8b8f-87aa-fd41-6946853a701a", + "deviceShortId": null, + "deviceGroupId": null, + "isolated": false, + "dattoAvEnabled": false, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:03:18.907Z", + "locationId": "8a0094c8-867e-4941-b0aa-06ca707e0faf", + "data": { + "rmmUid": "2cb98917-8b8f-87aa-fd41-6946853a701a" + }, + "eppData": {}, + "rwdInfo": null, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:51:32.164Z" + }, + { + "id": "1a718323-d3fe-4b19-bb61-f9f0bc34537b", + "name": null, + "hostname": "RWD-MX-iMac\r", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.1.78", + "ipstring": "192.168.1.78", + "ipPub": "189.173.5.130", + "ipstringPub": "189.173.5.130", + "os": "MacOS 15.5 (24F74)", + "osWindows": false, + "osOsx": true, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:05:08.533Z", + "active": true, + "monitoredJobFetched": "2026-07-05T16:05:05.648Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "11fdfeea-9361-7d93-f54b-c64b481af667", + "deviceShortId": null, + "deviceGroupId": null, + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:05:05.650Z", + "locationId": "4790a339-3e17-48fd-a30c-69b038fe239e", + "data": { + "rmmUid": "11fdfeea-9361-7d93-f54b-c64b481af667" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "vdfVersion": "8.21.2.122", + "engineReady": true, + "avpackVersion": "8.6.6.14", + "compatibility": "Modern", + "engineVersion": "8.4.2.12", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-04" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": null, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:14:44.804Z" + }, + { + "id": "565822d7-f53a-4a4b-8c7d-8f324a6ee7e6", + "name": null, + "hostname": "accounting", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.0.6", + "ipstring": "192.168.0.6", + "ipPub": "184.191.16.88", + "ipstringPub": "184.191.16.88", + "os": "Windows 11 Professional 24H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-03T21:04:27.090Z", + "active": false, + "monitoredJobFetched": "2026-07-03T21:02:22.403Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "ccf8ae2d-11a5-3bef-b698-486f18a7889f", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-03T21:04:22.417Z", + "locationId": "1d6c4f07-8b2f-4516-8f8c-8766869deb49", + "data": { + "rmmUid": "ccf8ae2d-11a5-3bef-b698-486f18a7889f" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.140", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-03T13:13:19Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T13:58:35.833Z" + }, + { + "id": "26a66428-6d6a-43c1-a5b1-5b0784aa8eae", + "name": null, + "hostname": "acct2-pc", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "10.0.20.209", + "ipstring": "10.0.20.209", + "ipPub": "184.191.143.62", + "ipstringPub": "184.191.143.62", + "os": "Windows 11 ProfessionalWorkstation 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:06:43.539Z", + "active": true, + "monitoredJobFetched": "2026-07-05T15:54:42.247Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "008bf7b8-138a-e292-8e19-5cbf5a927151", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:06:42.920Z", + "locationId": "1dbd2b02-f7df-45d0-a7f2-18667f48447f", + "data": { + "rmmUid": "008bf7b8-138a-e292-8e19-5cbf5a927151" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:15:28.266Z" + }, + { + "id": "fdd66142-e504-4aa3-8741-7305460c3045", + "name": null, + "hostname": "acg-tech03l", + "version": "3.17.1.4968", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": true, + "ip": "10.137.42.111", + "ipstring": "10.137.42.111", + "ipPub": "98.168.18.21", + "ipstringPub": "98.168.18.21", + "os": "Windows 11 Core 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:06:03.536Z", + "active": true, + "monitoredJobFetched": "2026-06-02T05:45:34.577Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "4144f7e6-00db-42c4-3a69-84e7aa590597", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": false, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:05:59.964Z", + "locationId": "be3e7b0c-ea72-4108-a090-17f6265f7ec7", + "data": { + "rmmUid": "4144f7e6-00db-42c4-3a69-84e7aa590597" + }, + "eppData": { + "dattoav": { + "data": { + "connected": false, + "engineReady": false, + "compatibility": "Unknown", + "rebootRequired": false + }, + "enabled": false, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-02T16:12:36.828Z" + }, + { + "id": "8c6de358-61a9-4d46-acd7-0a9c04f2d005", + "name": null, + "hostname": "andygaylsig04", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.0.9", + "ipstring": "192.168.0.9", + "ipPub": "184.191.16.88", + "ipstringPub": "184.191.16.88", + "os": "Windows 11 Professional 24H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-03T19:24:11.607Z", + "active": false, + "monitoredJobFetched": "2026-07-03T19:20:08.930Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "975dba07-a351-3ab9-a82e-f179b593eb1c", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-03T19:24:09.078Z", + "locationId": "1d6c4f07-8b2f-4516-8f8c-8766869deb49", + "data": { + "rmmUid": "975dba07-a351-3ab9-a82e-f179b593eb1c" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.140", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-03T13:13:19Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-22T17:13:37.923Z" + }, + { + "id": "92fba176-7ee5-47cb-a751-e5c4f98e7d27", + "name": null, + "hostname": "ann-pc", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "10.0.20.218", + "ipstring": "10.0.20.218", + "ipPub": "184.191.143.62", + "ipstringPub": "184.191.143.62", + "os": "Windows 11 Enterprise 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:06:08.537Z", + "active": true, + "monitoredJobFetched": "2026-07-05T15:54:06.025Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "61df2eb6-3a14-6c70-ea5e-b0dd75ebdc33", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:06:07.167Z", + "locationId": "1dbd2b02-f7df-45d0-a7f2-18667f48447f", + "data": { + "rmmUid": "61df2eb6-3a14-6c70-ea5e-b0dd75ebdc33" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:15:11.189Z" + }, + { + "id": "e2680b28-6dfd-4da8-96f1-b39be9432410", + "name": null, + "hostname": "assistman-pc", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.2.38", + "ipstring": "192.168.2.38", + "ipPub": "184.191.143.62", + "ipstringPub": "184.191.143.62", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:06:43.539Z", + "active": true, + "monitoredJobFetched": "2026-07-05T16:00:41.253Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "dc1bc890-2725-6319-10fe-9249a75608b2", + "deviceShortId": "7229202", + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:06:41.798Z", + "locationId": "1dbd2b02-f7df-45d0-a7f2-18667f48447f", + "data": { + "rmmUid": "dc1bc890-2725-6319-10fe-9249a75608b2" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:15:12.389Z" + }, + { + "id": "0f7cbf26-b1ff-42e6-9ab1-4d00c806415f", + "name": null, + "hostname": "assistnurse-pc", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "10.0.20.181", + "ipstring": "10.0.20.181", + "ipPub": "184.191.143.62", + "ipstringPub": "184.191.143.62", + "os": "Windows 11 ProfessionalWorkstation 24H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:06:18.537Z", + "active": true, + "monitoredJobFetched": "2026-07-05T15:58:16.157Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": null, + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:06:16.615Z", + "locationId": "1dbd2b02-f7df-45d0-a7f2-18667f48447f", + "data": { + "rmmUid": null + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-26T03:44:15.113Z" + }, + { + "id": "ab079e4e-7125-47e0-8fef-02d232afb826", + "name": null, + "hostname": "barry-surface2", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.1.164", + "ipstring": "192.168.1.164", + "ipPub": "97.188.73.231", + "ipstringPub": "97.188.73.231", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:05:13.534Z", + "active": true, + "monitoredJobFetched": "2026-07-05T16:05:08.934Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "d49e288b-4742-b66f-77a2-f200fff33c95", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:05:08.938Z", + "locationId": "4cd39e2e-0c1d-49e1-9773-a12958a4d55a", + "data": { + "rmmUid": "d49e288b-4742-b66f-77a2-f200fff33c95" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:21:03.155Z" + }, + { + "id": "4f0f1d64-bd6b-4863-8094-5f9878c219b7", + "name": null, + "hostname": "bb-office2", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.1.198", + "ipstring": "192.168.1.198", + "ipPub": "138.43.241.8", + "ipstringPub": "138.43.241.8", + "os": "Windows 11 Professional 23H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-02T22:18:41.111Z", + "active": false, + "monitoredJobFetched": "2026-07-02T22:08:39.625Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "50ad7548-6883-dc03-b627-ead4e754b896", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-02T22:18:40.401Z", + "locationId": "ce208436-0cfa-49fe-9ed0-44c44d6292f6", + "data": { + "rmmUid": "50ad7548-6883-dc03-b627-ead4e754b896" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.134", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-02T17:37:00Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T13:20:19.700Z" + }, + { + "id": "7fd8befa-9d36-4375-a85e-88231f91a5bd", + "name": null, + "hostname": "bt-galaxybook", + "version": "3.17.1.4968", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": true, + "ip": "10.1.10.163", + "ipstring": "10.1.10.163", + "ipPub": "69.242.239.94", + "ipstringPub": "69.242.239.94", + "os": "Windows 11 ProfessionalWorkstation 24H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-03T01:43:27.020Z", + "active": false, + "monitoredJobFetched": "2026-04-21T05:36:17.659Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": null, + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": false, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-03T01:43:26.352Z", + "locationId": "36dd0a8a-895d-4d04-b0a2-a5ce130769e0", + "data": { + "rmmUid": null + }, + "eppData": { + "dattoav": { + "data": { + "connected": false, + "engineReady": false, + "compatibility": "Unknown", + "rebootRequired": false + }, + "enabled": false, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-04-21T05:48:18.460Z" + }, + { + "id": "7864493f-8c15-4eed-ba89-cb02a2cc718e", + "name": null, + "hostname": "bt-y-destkop", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "10.1.10.143", + "ipstring": "10.1.10.143", + "ipPub": "69.242.239.94", + "ipstringPub": "69.242.239.94", + "os": "Windows 11 Professional 24H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-03T01:57:02.079Z", + "active": false, + "monitoredJobFetched": "2026-07-03T01:54:59.701Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "10d461af-c206-a356-2a35-5eb40411c017", + "deviceShortId": "7396230", + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-03T01:56:59.642Z", + "locationId": "36dd0a8a-895d-4d04-b0a2-a5ce130769e0", + "data": { + "rmmUid": "10d461af-c206-a356-2a35-5eb40411c017" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.134", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-02T17:37:00Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-22T14:54:59.063Z" + }, + { + "id": "af907890-5a3e-43a7-b567-563191503c8c", + "name": null, + "hostname": "c2b", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.0.4", + "ipstring": "192.168.0.4", + "ipPub": "72.194.57.2", + "ipstringPub": "72.194.57.2", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:05:43.536Z", + "active": true, + "monitoredJobFetched": "2026-07-05T16:03:40.982Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "1bfb0acb-3d62-0027-9c92-12f8c91644a2", + "deviceShortId": "7258671", + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:05:40.875Z", + "locationId": "c56026f0-b174-4f84-9dc4-cf8cffa49b74", + "data": { + "rmmUid": "1bfb0acb-3d62-0027-9c92-12f8c91644a2" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.150", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-04T13:11:44Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:15:09.256Z" + }, + { + "id": "4a8f49f5-5ff0-420f-afb3-6e1ddcf27286", + "name": null, + "hostname": "cascades-laptop", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.0.14", + "ipstring": "192.168.0.14", + "ipPub": "67.1.120.159", + "ipstringPub": "67.1.120.159", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T00:31:54.055Z", + "active": false, + "monitoredJobFetched": "2026-07-05T00:23:51.168Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "357702ed-51a4-c143-4ae7-fa7f08b4d36f", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T00:31:51.799Z", + "locationId": "1dbd2b02-f7df-45d0-a7f2-18667f48447f", + "data": { + "rmmUid": "357702ed-51a4-c143-4ae7-fa7f08b4d36f" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.150", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-04T13:11:44Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-23T11:30:37.050Z" + }, + { + "id": "68eaa3c8-f77d-4aed-a26d-8cc5c926a2a4", + "name": null, + "hostname": "cascadesproxess", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.2.178", + "ipstring": "192.168.2.178", + "ipPub": "72.211.21.217", + "ipstringPub": "72.211.21.217", + "os": "Windows 11 Core 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-02T14:34:14.076Z", + "active": false, + "monitoredJobFetched": "2026-07-02T14:30:11.974Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": null, + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-02T14:34:12.049Z", + "locationId": "1dbd2b02-f7df-45d0-a7f2-18667f48447f", + "data": { + "rmmUid": null + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.130", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-01T22:46:39Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": { + "engine": "1.1.26050.11", + "product": "4.18.26050.15", + "service": "4.18.26050.15", + "nisEngine": "1.1.26050.11", + "asSignature": "1.453.384.0", + "avSignature": "1.453.384.0", + "nisSignature": "1.453.384.0", + "fileSystemFilter": "4.18.26050.15" + }, + "enabled": true, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-26T03:44:14.770Z" + }, + { + "id": "98e2bae2-4c11-4229-a000-6e152b71a909", + "name": null, + "hostname": "channasdell", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.1.62", + "ipstring": "192.168.1.62", + "ipPub": "67.212.197.96", + "ipstringPub": "67.212.197.96", + "os": "Windows 11 Core 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:05:53.536Z", + "active": true, + "monitoredJobFetched": "2026-07-05T15:57:50.736Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "288a78a2-5fb5-556c-940f-00aa138c9746", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:05:50.981Z", + "locationId": "4790a339-3e17-48fd-a30c-69b038fe239e", + "data": { + "rmmUid": "288a78a2-5fb5-556c-940f-00aa138c9746" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:14:21.301Z" + }, + { + "id": "0af63f4a-7e22-4798-98ed-324ae67d90c0", + "name": null, + "hostname": "chef-pc", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "10.0.20.232", + "ipstring": "10.0.20.232", + "ipPub": "184.191.143.62", + "ipstringPub": "184.191.143.62", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:05:28.535Z", + "active": true, + "monitoredJobFetched": "2026-07-05T15:55:24.560Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "03c075ac-0a6d-711e-ea2a-fa738ec13e13", + "deviceShortId": "7229204", + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:05:24.837Z", + "locationId": "1dbd2b02-f7df-45d0-a7f2-18667f48447f", + "data": { + "rmmUid": "03c075ac-0a6d-711e-ea2a-fa738ec13e13" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:15:18.713Z" + }, + { + "id": "b0381dfb-3134-4b48-b10b-0ef5e9bd2d82", + "name": null, + "hostname": "christilaptop2", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.0.41", + "ipstring": "192.168.0.41", + "ipPub": "174.24.74.180", + "ipstringPub": "174.24.74.180", + "os": "Windows 11 Core 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-04T02:43:38.528Z", + "active": false, + "monitoredJobFetched": "2026-07-04T02:43:34.630Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "7ff185e6-370d-cd13-c223-0c3af799bff6", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-04T02:43:34.632Z", + "locationId": "0d56c0b4-c21b-4917-9e75-58aaee72748c", + "data": { + "rmmUid": "7ff185e6-370d-cd13-c223-0c3af799bff6" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.140", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-03T13:13:19Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-22T23:12:12.110Z" + }, + { + "id": "d91c6983-9eb5-4798-8f2a-d3a88c267850", + "name": null, + "hostname": "christipc2024", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.0.45", + "ipstring": "192.168.0.45", + "ipPub": "174.24.74.180", + "ipstringPub": "174.24.74.180", + "os": "Windows 11 Core 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-04T02:24:13.425Z", + "active": false, + "monitoredJobFetched": "2026-07-04T02:12:10.385Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "8f6733c3-6dec-d721-ccf8-93f1ba81dc4f", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-04T02:24:11.517Z", + "locationId": "0d56c0b4-c21b-4917-9e75-58aaee72748c", + "data": { + "rmmUid": "8f6733c3-6dec-d721-ccf8-93f1ba81dc4f" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.140", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-03T13:13:19Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T14:23:40.629Z" + }, + { + "id": "c8ea7f1f-9646-4cdc-bf79-d3f7da0d8513", + "name": null, + "hostname": "cnx-lab-00", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.2.125", + "ipstring": "192.168.2.125", + "ipPub": "67.206.161.54", + "ipstringPub": "67.206.161.54", + "os": "Windows Server 2016 Standard 1607 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:05:08.533Z", + "active": true, + "monitoredJobFetched": "2026-07-05T15:55:07.282Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": null, + "deviceShortId": null, + "deviceGroupId": "002ad7ee-492c-4a7f-aa60-042044ab31bf", + "isolated": false, + "dattoAvEnabled": false, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:05:08.124Z", + "locationId": "436d7e55-d179-4b90-be1b-3636ef417596", + "data": {}, + "eppData": { + "dattoav": { + "data": { + "connected": false, + "engineReady": true, + "compatibility": "Modern", + "rebootRequired": true + }, + "enabled": false, + "eppType": "Datto AV" + }, + "defender": { + "data": { + "engine": "1.1.26050.11", + "product": "4.18.26050.15", + "service": "4.18.26050.15", + "nisEngine": "1.1.26050.11", + "asSignature": "1.453.435.0", + "avSignature": "1.453.435.0", + "nisSignature": "1.453.435.0", + "fileSystemFilter": "4.18.26050.15" + }, + "enabled": true, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-07-05T01:25:46.909Z" + }, + { + "id": "9c6941a4-4e61-4c5e-9356-383f7acc2fd3", + "name": null, + "hostname": "crystal-pc", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "10.0.20.205", + "ipstring": "10.0.20.205", + "ipPub": "184.191.143.62", + "ipstringPub": "184.191.143.62", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-02T14:33:09.070Z", + "active": false, + "monitoredJobFetched": "2026-07-02T14:29:03.698Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "765ab045-36ca-303b-592a-6143478103b2", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-02T14:33:04.114Z", + "locationId": "1dbd2b02-f7df-45d0-a7f2-18667f48447f", + "data": { + "rmmUid": "765ab045-36ca-303b-592a-6143478103b2" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.130", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-01T22:46:39Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:14:16.813Z" + }, + { + "id": "82542caa-5933-48c7-9cc5-e3187d732729", + "name": null, + "hostname": "d1-conf-002", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.0.120", + "ipstring": "192.168.0.120", + "ipPub": "67.206.163.122", + "ipstringPub": "67.206.163.122", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:05:53.536Z", + "active": true, + "monitoredJobFetched": "2026-07-05T15:51:47.364Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "6583b525-a85a-2182-d828-f4552452bab3", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:05:48.617Z", + "locationId": "64144044-9dc5-4747-b2c9-7ab15716f3ce", + "data": { + "rmmUid": "6583b525-a85a-2182-d828-f4552452bab3" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": false, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:14:59.004Z" + }, + { + "id": "b79ab81e-1686-499c-82f0-e45c220bec2c", + "name": null, + "hostname": "d1-cust-003", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.0.115", + "ipstring": "192.168.0.115", + "ipPub": "67.206.163.122", + "ipstringPub": "67.206.163.122", + "os": "Windows 11 Professional 24H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-02T21:32:00.946Z", + "active": false, + "monitoredJobFetched": "2026-07-02T21:31:56.989Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": null, + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-02T21:31:56.991Z", + "locationId": "64144044-9dc5-4747-b2c9-7ab15716f3ce", + "data": { + "rmmUid": null + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.132", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-02T11:36:05Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": false, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:16:17.311Z" + }, + { + "id": "17d55c90-e5e3-4d20-97ab-d6c600f18b4d", + "name": null, + "hostname": "d1-engi-005", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.0.91", + "ipstring": "192.168.0.91", + "ipPub": "67.206.163.122", + "ipstringPub": "67.206.163.122", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-03T00:03:21.566Z", + "active": false, + "monitoredJobFetched": "2026-07-02T23:49:17.091Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "83fc57fd-0c46-4129-fc0f-e6edb3589021", + "deviceShortId": "7469882", + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-03T00:03:17.748Z", + "locationId": "64144044-9dc5-4747-b2c9-7ab15716f3ce", + "data": { + "rmmUid": "83fc57fd-0c46-4129-fc0f-e6edb3589021" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.134", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-02T17:37:00Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": false, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:14:40.119Z" + }, + { + "id": "ee068ef4-9556-47b9-ba21-f35d63eb58ce", + "name": null, + "hostname": "d1-engi-006", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.1.28", + "ipstring": "192.168.1.28", + "ipPub": "184.97.18.45", + "ipstringPub": "184.97.18.45", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-06-30T22:12:37.124Z", + "active": false, + "monitoredJobFetched": "2026-06-30T22:10:32.999Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "df19f241-375c-b853-e7c1-8d329f07cc5b", + "deviceShortId": "7469830", + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-06-30T22:12:33.345Z", + "locationId": "64144044-9dc5-4747-b2c9-7ab15716f3ce", + "data": { + "rmmUid": "df19f241-375c-b853-e7c1-8d329f07cc5b" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.118", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-06-30T16:30:22Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": false, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T16:18:39.041Z" + }, + { + "id": "a3e677f0-6c4b-4809-afa7-5e58c1c1b757", + "name": null, + "hostname": "d1-engi-008", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.0.116", + "ipstring": "192.168.0.116", + "ipPub": "67.206.163.122", + "ipstringPub": "67.206.163.122", + "os": "Windows 10 Pro 2009 Professional 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-01T21:40:44.821Z", + "active": false, + "monitoredJobFetched": "2026-07-01T21:26:41.622Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "566d58fb-7259-16ab-f576-1eb9fc1808e7", + "deviceShortId": "7467978", + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-01T21:40:42.267Z", + "locationId": "64144044-9dc5-4747-b2c9-7ab15716f3ce", + "data": { + "rmmUid": "566d58fb-7259-16ab-f576-1eb9fc1808e7" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.126", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-01T14:06:54Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": false, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:14:50.717Z" + }, + { + "id": "62fff1e6-71ea-438d-8cd3-cd47d67618ce", + "name": null, + "hostname": "d1-engi-010", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.1.55", + "ipstring": "192.168.1.55", + "ipPub": "107.2.57.207", + "ipstringPub": "107.2.57.207", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-04T22:51:58.673Z", + "active": false, + "monitoredJobFetched": "2026-07-04T22:37:57.263Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "89585952-1ed1-854f-3b97-ba08fe0b8e7f", + "deviceShortId": "7469018", + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-04T22:51:58.015Z", + "locationId": "64144044-9dc5-4747-b2c9-7ab15716f3ce", + "data": { + "rmmUid": "89585952-1ed1-854f-3b97-ba08fe0b8e7f" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.150", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-04T13:11:44Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": false, + "rwdRollbackInstalled": false + }, + "metricsCollection": "2025-08-30T21:34:36.665Z", + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:43:26.517Z" + }, + { + "id": "0e0120a0-bd9d-42a4-bde5-91f06e98f3f9", + "name": null, + "hostname": "d1-engi-012", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "127.0.0.1", + "ipstring": "127.0.0.1", + "ipPub": "172.59.206.56", + "ipstringPub": "172.59.206.56", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-03T20:43:52.003Z", + "active": false, + "monitoredJobFetched": "2026-07-03T20:39:49.046Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "42b39656-1a7a-7587-9143-50d0225884a4", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-03T20:43:49.217Z", + "locationId": "64144044-9dc5-4747-b2c9-7ab15716f3ce", + "data": { + "rmmUid": "42b39656-1a7a-7587-9143-50d0225884a4" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.140", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-03T13:13:19Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": false, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T19:35:20.288Z" + }, + { + "id": "5a547d32-7188-476c-b112-bde69d5f638f", + "name": null, + "hostname": "d1-engi-dev2", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.0.55", + "ipstring": "192.168.0.55", + "ipPub": "67.206.163.122", + "ipstringPub": "67.206.163.122", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:06:53.539Z", + "active": true, + "monitoredJobFetched": "2026-07-05T16:06:50.193Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "d6c22c2d-4cb3-fe11-b465-cf8342ba40bf", + "deviceShortId": "7469825", + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:06:50.196Z", + "locationId": "64144044-9dc5-4747-b2c9-7ab15716f3ce", + "data": { + "rmmUid": "d6c22c2d-4cb3-fe11-b465-cf8342ba40bf" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": false, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-23T21:41:42.733Z" + }, + { + "id": "ab8c9881-e67f-4842-ba48-b6bafa83cc66", + "name": null, + "hostname": "d1-engi-emclab1", + "version": "3.17.1.4968", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.0.194", + "ipstring": "192.168.0.194", + "ipPub": "67.206.163.122", + "ipstringPub": "67.206.163.122", + "os": "Windows 11 Professional 24H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-04-13T19:28:23.562Z", + "active": false, + "monitoredJobFetched": "2026-04-13T19:14:21.189Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "ecf7db70-25a3-aa52-0aee-2e53a3841d6d", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-04-13T19:28:21.690Z", + "locationId": "64144044-9dc5-4747-b2c9-7ab15716f3ce", + "data": { + "rmmUid": "ecf7db70-25a3-aa52-0aee-2e53a3841d6d" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2603.8370", + "rtpVersion": "1.0.2603.8111", + "vdfVersion": "8.20.75.122", + "amsiVersion": "1.0.2602.2638", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.0.82", + "sentryVersion": "3.0.2603.2844", + "rebootRequired": false, + "vdfReleaseDate": "2026-04-09T14:20:51Z", + "firewallVersion": "1.0.2603.3746", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-03-31T00:00:00Z", + "quarantineVersion": "1.0.2602.2376", + "remediationVersion": "1.0.2602.3154", + "onDemandScanVersion": "1.0.2602.3567", + "netProtectionVersion": "1.0.2602.3002" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": false, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-04-06T16:13:00.704Z" + }, + { + "id": "c6c3b966-8d72-4275-bd72-63c942b31c8e", + "name": null, + "hostname": "d1-engi-lab1", + "version": "3.17.1.5409", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.201.69", + "ipstring": "192.168.201.69", + "ipPub": "67.206.163.122", + "ipstringPub": "67.206.163.122", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-06-17T17:08:46.951Z", + "active": false, + "monitoredJobFetched": "2026-06-17T16:56:43.511Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "83f0ba8d-0fb9-5c8b-1009-d558f08b36c3", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-06-17T17:08:43.896Z", + "locationId": "64144044-9dc5-4747-b2c9-7ab15716f3ce", + "data": { + "rmmUid": "83f0ba8d-0fb9-5c8b-1009-d558f08b36c3" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.1.250", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.10", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-06-17T05:44:03Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-09T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": false, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-17T14:05:25.138Z" + }, + { + "id": "b99b612d-96c8-47cb-95dd-4543f7b4a0df", + "name": null, + "hostname": "d1-pwrm", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.0.179", + "ipstring": "192.168.0.179", + "ipPub": "67.206.163.122", + "ipstringPub": "67.206.163.122", + "os": "Windows 11 Professional 24H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:05:38.535Z", + "active": true, + "monitoredJobFetched": "2026-07-05T16:03:36.693Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "e2186647-e0c5-7d02-3d71-5b9e7250bf9b", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:05:36.862Z", + "locationId": "64144044-9dc5-4747-b2c9-7ab15716f3ce", + "data": { + "rmmUid": "e2186647-e0c5-7d02-3d71-5b9e7250bf9b" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": false, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:16:50.975Z" + }, + { + "id": "9ae3a49e-9ee0-4b6b-83eb-4ab547b5f401", + "name": null, + "hostname": "d2-as-24", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.0.111", + "ipstring": "192.168.0.111", + "ipPub": "67.206.163.122", + "ipstringPub": "67.206.163.122", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-06-30T22:56:27.294Z", + "active": false, + "monitoredJobFetched": "2026-06-30T22:54:26.463Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "d62ee11f-b0d0-f807-353a-4f8522e1319b", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-06-30T22:56:26.662Z", + "locationId": "64144044-9dc5-4747-b2c9-7ab15716f3ce", + "data": { + "rmmUid": "d62ee11f-b0d0-f807-353a-4f8522e1319b" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.118", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-06-30T16:30:22Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": false, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-22T13:33:31.794Z" + }, + { + "id": "55d23fb0-0792-4f15-9e85-e7b0436201fd", + "name": null, + "hostname": "d2-as-26", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.0.64", + "ipstring": "192.168.0.64", + "ipPub": "67.206.163.122", + "ipstringPub": "67.206.163.122", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-06-26T21:50:20.032Z", + "active": false, + "monitoredJobFetched": "2026-06-26T21:46:16.912Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "59c85d46-3b94-28e2-df5e-ef24b4c9ef11", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-06-26T21:50:18.025Z", + "locationId": "64144044-9dc5-4747-b2c9-7ab15716f3ce", + "data": { + "rmmUid": "59c85d46-3b94-28e2-df5e-ef24b4c9ef11" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.74", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-06-26T16:19:46Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": false, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-22T13:39:22.216Z" + }, + { + "id": "9782e177-1187-4811-bdc9-db63c355ff07", + "name": null, + "hostname": "d2-as-34", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.0.105", + "ipstring": "192.168.0.105", + "ipPub": "67.206.163.122", + "ipstringPub": "67.206.163.122", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-02T18:43:00.243Z", + "active": false, + "monitoredJobFetched": "2026-07-02T18:42:58.180Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "7333045a-cbd7-42fe-14dd-2fe20b18dda7", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-02T18:42:58.182Z", + "locationId": "64144044-9dc5-4747-b2c9-7ab15716f3ce", + "data": { + "rmmUid": "7333045a-cbd7-42fe-14dd-2fe20b18dda7" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.132", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-02T11:36:05Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": false, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T13:08:59.414Z" + }, + { + "id": "32fd15e8-e74d-4741-895b-663ffb9958fc", + "name": null, + "hostname": "d2-as-39", + "version": "3.17.1.4869", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": true, + "ip": "127.0.0.1", + "ipstring": "127.0.0.1", + "ipPub": "67.206.163.122", + "ipstringPub": "67.206.163.122", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-04-28T18:37:12.993Z", + "active": false, + "monitoredJobFetched": "2026-03-31T01:32:52.315Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": null, + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-04-28T18:37:10.587Z", + "locationId": "64144044-9dc5-4747-b2c9-7ab15716f3ce", + "data": { + "rmmUid": null + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2603.8370", + "rtpVersion": "1.0.2603.8111", + "vdfVersion": "8.20.74.198", + "amsiVersion": "1.0.2602.2638", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.0.80", + "sentryVersion": "3.0.2603.2844", + "rebootRequired": false, + "vdfReleaseDate": "2026-03-27T16:25:38Z", + "firewallVersion": "1.0.2603.3746", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-03-20T00:00:00Z", + "quarantineVersion": "1.0.2602.2376", + "remediationVersion": "1.0.2602.3154", + "onDemandScanVersion": "1.0.2602.3567", + "netProtectionVersion": "1.0.2602.3002" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": false, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-04-28T18:37:10.585Z" + }, + { + "id": "8c354f33-e8cf-4570-aa83-3ebd02504e8a", + "name": null, + "hostname": "d2-assy-001", + "version": "3.17.1.5015", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "127.0.0.1", + "ipstring": "127.0.0.1", + "ipPub": "67.206.163.122", + "ipstringPub": "67.206.163.122", + "os": "Windows 10 Pro 2009 Professional 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-04-17T05:14:45.482Z", + "active": false, + "monitoredJobFetched": "2026-04-17T05:00:09.797Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "e6af8573-ff4f-d47e-248b-c83fb2eb4843", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-04-17T05:14:40.796Z", + "locationId": "64144044-9dc5-4747-b2c9-7ab15716f3ce", + "data": { + "rmmUid": "e6af8573-ff4f-d47e-248b-c83fb2eb4843" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2603.8726", + "rtpVersion": "1.0.2603.8323", + "vdfVersion": "8.20.75.152", + "amsiVersion": "1.0.2603.2788", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.0.82", + "sentryVersion": "3.0.2603.2947", + "rebootRequired": false, + "vdfReleaseDate": "2026-04-11T14:48:14Z", + "firewallVersion": "1.0.2603.3877", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-03-31T00:00:00Z", + "quarantineVersion": "1.0.2603.2438", + "remediationVersion": "1.0.2603.3217", + "onDemandScanVersion": "1.0.2603.3663", + "netProtectionVersion": "1.0.2603.3114" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": false, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-04-17T04:58:10.314Z" + }, + { + "id": "7ba07d23-ca92-4a21-aa3e-414f8368f977", + "name": null, + "hostname": "d2-bobbi", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.0.154", + "ipstring": "192.168.0.154", + "ipPub": "67.206.163.122", + "ipstringPub": "67.206.163.122", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:06:28.538Z", + "active": true, + "monitoredJobFetched": "2026-07-05T15:52:26.357Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "6333b3da-4688-f345-a009-7f7c3a37a031", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:06:27.293Z", + "locationId": "64144044-9dc5-4747-b2c9-7ab15716f3ce", + "data": { + "rmmUid": "6333b3da-4688-f345-a009-7f7c3a37a031" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": false, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:14:19.003Z" + }, + { + "id": "7f451da9-2fe4-45ac-8d02-40f88c25a17b", + "name": null, + "hostname": "d2-hipot-surfac", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "127.0.0.1", + "ipstring": "127.0.0.1", + "ipPub": "67.206.163.122", + "ipstringPub": "67.206.163.122", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T14:36:48.196Z", + "active": false, + "monitoredJobFetched": "2026-07-05T14:33:18.392Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "90b282e6-045b-724f-b1c4-8297103b81d6", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T14:36:46.980Z", + "locationId": "64144044-9dc5-4747-b2c9-7ab15716f3ce", + "data": { + "rmmUid": "90b282e6-045b-724f-b1c4-8297103b81d6" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.140", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-03T13:13:19Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": { + "engine": "1.1.26050.11", + "product": "4.18.26050.15", + "service": "4.18.26050.15", + "nisEngine": "1.1.26050.11", + "asSignature": "1.453.370.0", + "avSignature": "1.453.370.0", + "nisSignature": "1.453.370.0", + "fileSystemFilter": "4.18.26050.15" + }, + "enabled": true, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": false, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:39:20.755Z" + }, + { + "id": "48fa6cbd-2da2-42c5-beb3-1448288239e1", + "name": null, + "hostname": "d2-mfg-001", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.0.81", + "ipstring": "192.168.0.81", + "ipPub": "67.206.163.122", + "ipstringPub": "67.206.163.122", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:06:38.546Z", + "active": true, + "monitoredJobFetched": "2026-07-05T15:52:33.839Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "6151d854-e601-4a63-ac51-3c729ca4fe38", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:06:34.435Z", + "locationId": "64144044-9dc5-4747-b2c9-7ab15716f3ce", + "data": { + "rmmUid": "6151d854-e601-4a63-ac51-3c729ca4fe38" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": false, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:14:29.493Z" + }, + { + "id": "0e5fab36-2420-476d-b5f1-35f42bd0382b", + "name": null, + "hostname": "d2-mfgr-004", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.0.90", + "ipstring": "192.168.0.90", + "ipPub": "67.206.163.122", + "ipstringPub": "67.206.163.122", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:05:23.535Z", + "active": true, + "monitoredJobFetched": "2026-07-05T15:53:20.177Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "7e0a0b45-f370-014c-3c1d-232c29171d0c", + "deviceShortId": "7486889", + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:05:21.444Z", + "locationId": "64144044-9dc5-4747-b2c9-7ab15716f3ce", + "data": { + "rmmUid": "7e0a0b45-f370-014c-3c1d-232c29171d0c" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": false, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:15:18.240Z" + }, + { + "id": "b0c1636d-0469-402c-882f-f7d9ee7b3be0", + "name": null, + "hostname": "d2-mfgr-200", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.0.163", + "ipstring": "192.168.0.163", + "ipPub": "67.206.163.122", + "ipstringPub": "67.206.163.122", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:06:08.537Z", + "active": true, + "monitoredJobFetched": "2026-07-05T16:00:04.701Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "1c4c683f-79fe-d831-2ed5-0839e670ba40", + "deviceShortId": "7469400", + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:06:05.218Z", + "locationId": "64144044-9dc5-4747-b2c9-7ab15716f3ce", + "data": { + "rmmUid": "1c4c683f-79fe-d831-2ed5-0839e670ba40" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": false, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:16:15.983Z" + }, + { + "id": "b8d9b221-a9b6-4b27-a82c-dbce54eb9ca3", + "name": null, + "hostname": "danc0619", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.0.51", + "ipstring": "192.168.0.51", + "ipPub": "67.206.163.122", + "ipstringPub": "67.206.163.122", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:06:28.538Z", + "active": true, + "monitoredJobFetched": "2026-07-05T15:58:27.302Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "ed904421-5007-727e-59ec-0c24a25b3056", + "deviceShortId": "7477306", + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:06:27.561Z", + "locationId": "64144044-9dc5-4747-b2c9-7ab15716f3ce", + "data": { + "rmmUid": "ed904421-5007-727e-59ec-0c24a25b3056" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": false, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:15:12.408Z" + }, + { + "id": "c3d10530-2b80-4b62-b293-aae6d9421a0f", + "name": null, + "hostname": "dataforth-pc", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.0.158", + "ipstring": "192.168.0.158", + "ipPub": "67.206.163.122", + "ipstringPub": "67.206.163.122", + "os": "Windows 10 Pro 2009 Professional 32-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:05:08.533Z", + "active": true, + "monitoredJobFetched": "2026-07-05T16:05:06.148Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": null, + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:05:06.150Z", + "locationId": "64144044-9dc5-4747-b2c9-7ab15716f3ce", + "data": { + "rmmUid": null + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": false, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-07-05T02:23:01.846Z" + }, + { + "id": "bf4869d9-52eb-4484-bce9-77ad9bbeafa3", + "name": null, + "hostname": "desktop-02vt7to", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.0.130", + "ipstring": "192.168.0.130", + "ipPub": "67.206.163.122", + "ipstringPub": "67.206.163.122", + "os": "Windows 10 Pro 2009 Professional 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:05:18.535Z", + "active": true, + "monitoredJobFetched": "2026-07-05T15:53:17.328Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "5cb6353e-0e66-95d2-c39b-9dad9424b4a4", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:05:18.309Z", + "locationId": "64144044-9dc5-4747-b2c9-7ab15716f3ce", + "data": { + "rmmUid": "5cb6353e-0e66-95d2-c39b-9dad9424b4a4" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": false, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:14:18.519Z" + }, + { + "id": "a31d6287-58cd-4f67-b91a-9f6c714a690a", + "name": null, + "hostname": "desktop-2r13cc4", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "172.16.9.105", + "ipstring": "172.16.9.105", + "ipPub": "4.18.160.106", + "ipstringPub": "4.18.160.106", + "os": "Windows 10 Pro 2009 Professional 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:05:23.535Z", + "active": true, + "monitoredJobFetched": "2026-07-05T15:53:20.939Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "97aa36b8-71e4-2422-ce57-2560c9953074", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:05:21.959Z", + "locationId": "a29f3049-64fa-4593-9e3c-fe0519a53dee", + "data": { + "rmmUid": "97aa36b8-71e4-2422-ce57-2560c9953074" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:15:08.286Z" + }, + { + "id": "97dfbd93-8698-4f74-a4f7-b42cb10f35bf", + "name": null, + "hostname": "desktop-3pfa5i7", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.0.67", + "ipstring": "192.168.0.67", + "ipPub": "67.206.163.122", + "ipstringPub": "67.206.163.122", + "os": "Windows 10 Pro 2009 Professional 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:05:18.535Z", + "active": true, + "monitoredJobFetched": "2026-07-05T15:59:15.925Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "a32784b0-d291-af29-3173-456ac6a83038", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:05:15.860Z", + "locationId": "64144044-9dc5-4747-b2c9-7ab15716f3ce", + "data": { + "rmmUid": "a32784b0-d291-af29-3173-456ac6a83038" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": false, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:15:24.131Z" + }, + { + "id": "8806dd16-78ba-4d30-8d53-76e2dd169fc2", + "name": null, + "hostname": "desktop-3usu20b", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.1.48", + "ipstring": "192.168.1.48", + "ipPub": "70.177.5.164", + "ipstringPub": "70.177.5.164", + "os": "Windows 11 Professional 24H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T15:58:33.509Z", + "active": true, + "monitoredJobFetched": "2026-07-05T15:46:34.462Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "7eeb1a4a-208e-27ec-942a-f7fecfbd91db", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T15:58:30.659Z", + "locationId": "bb3db4c4-8db9-4f51-beee-2150f5e9b820", + "data": { + "rmmUid": "7eeb1a4a-208e-27ec-942a-f7fecfbd91db" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:16:57.633Z" + }, + { + "id": "34aaf61b-c374-4902-94d6-8ac785bd5bd1", + "name": null, + "hostname": "desktop-actpa", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.0.115", + "ipstring": "192.168.0.115", + "ipPub": "4.18.160.106", + "ipstringPub": "4.18.160.106", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:05:33.534Z", + "active": true, + "monitoredJobFetched": "2026-07-05T16:03:28.470Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "26d593e6-81a1-933f-160b-4430ab45c383", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:05:28.563Z", + "locationId": "a29f3049-64fa-4593-9e3c-fe0519a53dee", + "data": { + "rmmUid": "26d593e6-81a1-933f-160b-4430ab45c383" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.150", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-04T13:11:44Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:17:16.365Z" + }, + { + "id": "312fd6b7-b7ae-4f87-900d-5bd1ea454ec9", + "name": null, + "hostname": "desktop-ah0slt7", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.0.173", + "ipstring": "192.168.0.173", + "ipPub": "67.206.163.122", + "ipstringPub": "67.206.163.122", + "os": "Windows 11 Professional 24H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-03T21:35:37.231Z", + "active": false, + "monitoredJobFetched": "2026-07-03T21:21:33.912Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "bb7b47ca-8930-2dd7-7cc5-a467fd993e27", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-03T21:35:35.013Z", + "locationId": "64144044-9dc5-4747-b2c9-7ab15716f3ce", + "data": { + "rmmUid": "bb7b47ca-8930-2dd7-7cc5-a467fd993e27" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.140", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-03T13:13:19Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": false, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T14:35:48.249Z" + }, + { + "id": "ff28239d-3905-46e3-a614-e34caa8ac7bb", + "name": null, + "hostname": "desktop-arnpe1u", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "10.0.0.160", + "ipstring": "10.0.0.160", + "ipPub": "24.14.52.11", + "ipstringPub": "24.14.52.11", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-02T19:03:55.332Z", + "active": false, + "monitoredJobFetched": "2026-07-02T18:57:51.502Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "811978de-a41d-2b9b-1ca0-2f29d77bb305", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-02T19:03:52.154Z", + "locationId": "bb3db4c4-8db9-4f51-beee-2150f5e9b820", + "data": { + "rmmUid": "811978de-a41d-2b9b-1ca0-2f29d77bb305" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.132", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-02T11:36:05Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T10:12:31.293Z" + }, + { + "id": "5ec7307a-8d42-4561-b948-51cbc1198048", + "name": null, + "hostname": "desktop-c84j8os", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.0.23", + "ipstring": "192.168.0.23", + "ipPub": "174.24.74.180", + "ipstringPub": "174.24.74.180", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:06:13.537Z", + "active": true, + "monitoredJobFetched": "2026-07-05T15:56:08.132Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "1478a81c-9462-8948-d5f3-9e29a90dad9a", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:06:08.877Z", + "locationId": "0d56c0b4-c21b-4917-9e75-58aaee72748c", + "data": { + "rmmUid": "1478a81c-9462-8948-d5f3-9e29a90dad9a" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:15:47.334Z" + }, + { + "id": "56fee22f-29dc-41cc-bc7d-c4b90c5f3f03", + "name": null, + "hostname": "desktop-dltagoi", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "10.0.20.72", + "ipstring": "10.0.20.72", + "ipPub": "184.191.143.62", + "ipstringPub": "184.191.143.62", + "os": "Windows 11 ProfessionalWorkstation 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:06:18.537Z", + "active": true, + "monitoredJobFetched": "2026-07-05T16:04:14.301Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "eaf0765a-f2a6-262d-d56c-c77e331d2a06", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:06:14.415Z", + "locationId": "1dbd2b02-f7df-45d0-a7f2-18667f48447f", + "data": { + "rmmUid": "eaf0765a-f2a6-262d-d56c-c77e331d2a06" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:16:46.177Z" + }, + { + "id": "c9d97234-e057-44d9-92ee-c826ee4a8387", + "name": null, + "hostname": "desktop-est", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "172.16.9.120", + "ipstring": "172.16.9.120", + "ipPub": "4.18.160.106", + "ipstringPub": "4.18.160.106", + "os": "Windows 10 Enterprise 2009 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-02T21:07:00.860Z", + "active": false, + "monitoredJobFetched": "2026-07-02T20:52:57.704Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "c9075b19-36eb-073b-42e1-237bc38a887c", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-02T21:06:58.591Z", + "locationId": "a29f3049-64fa-4593-9e3c-fe0519a53dee", + "data": { + "rmmUid": "c9075b19-36eb-073b-42e1-237bc38a887c" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.132", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-02T11:36:05Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:15:42.788Z" + }, + { + "id": "159ef436-c7c4-4b3c-a687-e4ced6dd4d20", + "name": null, + "hostname": "desktop-eva4h1a", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.88.252", + "ipstring": "192.168.88.252", + "ipPub": "140.99.11.3", + "ipstringPub": "140.99.11.3", + "os": "Windows 10 Home 2009 Core 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:05:33.534Z", + "active": true, + "monitoredJobFetched": "2026-07-05T15:55:28.936Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": null, + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:05:29.707Z", + "locationId": "170e9b08-73c7-4f50-86c2-5805baca4dfb", + "data": {}, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-07-05T01:26:08.322Z" + }, + { + "id": "367297cb-8fff-460f-bf02-aadd77c0f5a3", + "name": null, + "hostname": "desktop-f3ugo7l", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.68.62", + "ipstring": "192.168.68.62", + "ipPub": "138.28.19.229", + "ipstringPub": "138.28.19.229", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-02T21:42:55.981Z", + "active": false, + "monitoredJobFetched": "2026-07-02T21:34:52.307Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "cf3c7232-0c9a-e194-116a-43962feba3f8", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-02T21:42:53.082Z", + "locationId": "bb3db4c4-8db9-4f51-beee-2150f5e9b820", + "data": { + "rmmUid": "cf3c7232-0c9a-e194-116a-43962feba3f8" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.132", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-02T11:36:05Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T11:15:32.206Z" + }, + { + "id": "4b9f71a2-cc27-4ad3-aacc-0b6475cedb31", + "name": null, + "hostname": "desktop-fmdik0q", + "version": "3.17.1.5371", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "127.0.0.1", + "ipstring": "127.0.0.1", + "ipPub": "73.58.175.100", + "ipstringPub": "73.58.175.100", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-05-21T23:54:42.278Z", + "active": false, + "monitoredJobFetched": "2026-05-21T23:54:42.278Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "aa627d07-d48a-0466-4e02-5a173ccf6161", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-05-21T23:54:41.289Z", + "locationId": "bb3db4c4-8db9-4f51-beee-2150f5e9b820", + "data": { + "rmmUid": "aa627d07-d48a-0466-4e02-5a173ccf6161" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2603.8370", + "rtpVersion": "1.0.2603.8111", + "vdfVersion": "8.20.73.142", + "amsiVersion": "1.0.2602.2638", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.0.66", + "sentryVersion": "3.0.2603.2844", + "rebootRequired": false, + "vdfReleaseDate": "2026-03-06T08:56:29Z", + "firewallVersion": "1.0.2603.3746", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-02-25T00:00:00Z", + "quarantineVersion": "1.0.2602.2376", + "remediationVersion": "1.0.2602.3154", + "onDemandScanVersion": "1.0.2602.3567", + "netProtectionVersion": "1.0.2602.3002" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-05-21T19:24:11.000Z" + }, + { + "id": "72ce9e36-8071-48c3-b4d7-6b72d1891efc", + "name": null, + "hostname": "desktop-ft0t4mk", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "127.0.0.1", + "ipstring": "127.0.0.1", + "ipPub": "67.206.163.122", + "ipstringPub": "67.206.163.122", + "os": "Windows 11 Professional 24H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-02T04:58:11.682Z", + "active": false, + "monitoredJobFetched": "2026-07-02T04:58:09.399Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "dbbc1b98-e1f3-45f9-06b8-b9cb3a43da7e", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-02T04:58:09.402Z", + "locationId": "64144044-9dc5-4747-b2c9-7ab15716f3ce", + "data": { + "rmmUid": "dbbc1b98-e1f3-45f9-06b8-b9cb3a43da7e" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.128", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-01T18:59:16Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": false, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-22T13:02:49.882Z" + }, + { + "id": "664d27bb-c195-44bc-a05a-24f75c0eacdc", + "name": null, + "hostname": "desktop-fub3pav", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "127.0.0.1", + "ipstring": "127.0.0.1", + "ipPub": "71.31.249.249", + "ipstringPub": "71.31.249.249", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-01T21:28:34.770Z", + "active": false, + "monitoredJobFetched": "2026-07-01T21:28:32.947Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "431846f8-78ef-5d2e-73da-8c9a16ae0645", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-01T21:28:32.950Z", + "locationId": "bb3db4c4-8db9-4f51-beee-2150f5e9b820", + "data": { + "rmmUid": "431846f8-78ef-5d2e-73da-8c9a16ae0645" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.124", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-01T07:35:42Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-22T12:55:14.304Z" + }, + { + "id": "798dadc9-dd72-40fe-bd06-e6b5506ebf73", + "name": null, + "hostname": "desktop-gg4lksl", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.1.135", + "ipstring": "192.168.1.135", + "ipPub": "67.212.194.147", + "ipstringPub": "67.212.194.147", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:06:28.538Z", + "active": true, + "monitoredJobFetched": "2026-07-05T15:58:24.306Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": null, + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:06:25.058Z", + "locationId": "3b844ef0-d792-4be9-bc0e-7d4848b99180", + "data": {}, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-29T21:30:00.638Z" + }, + { + "id": "f547ca99-2f99-4ac9-80ce-c4fbc4d59db4", + "name": null, + "hostname": "desktop-h64faqi", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "172.16.9.111", + "ipstring": "172.16.9.111", + "ipPub": "4.18.160.106", + "ipstringPub": "4.18.160.106", + "os": "Windows 11 Professional 24H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:05:08.533Z", + "active": true, + "monitoredJobFetched": "2026-07-05T15:56:59.043Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "6413b13a-438e-1c59-0900-5ff6ac6901ba", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:05:03.585Z", + "locationId": "a29f3049-64fa-4593-9e3c-fe0519a53dee", + "data": { + "rmmUid": "6413b13a-438e-1c59-0900-5ff6ac6901ba" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:15:44.934Z" + }, + { + "id": "1e55a9f8-182e-482c-a645-860bd9a76096", + "name": null, + "hostname": "desktop-h6qhrr7", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.3.15", + "ipstring": "192.168.3.15", + "ipPub": "72.211.21.217", + "ipstringPub": "72.211.21.217", + "os": "Windows 11 ProfessionalWorkstation 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:06:53.539Z", + "active": true, + "monitoredJobFetched": "2026-07-05T15:56:52.124Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "bdd638b8-8e22-c6fa-cb3f-74364e447019", + "deviceShortId": "7229206", + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:06:52.685Z", + "locationId": "1dbd2b02-f7df-45d0-a7f2-18667f48447f", + "data": { + "rmmUid": "bdd638b8-8e22-c6fa-cb3f-74364e447019" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:14:22.926Z" + }, + { + "id": "c99b40f4-fe08-4434-b1fe-e2ff93cb30ae", + "name": null, + "hostname": "desktop-hn4uqf2", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.1.17", + "ipstring": "192.168.1.17", + "ipPub": "68.107.218.69", + "ipstringPub": "68.107.218.69", + "os": "Windows 11 Professional 24H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-02T22:40:51.205Z", + "active": false, + "monitoredJobFetched": "2026-07-02T22:34:49.196Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "21f8695c-d94f-7fbe-e63c-f39cacbfeefa", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-02T22:40:49.535Z", + "locationId": "bb3db4c4-8db9-4f51-beee-2150f5e9b820", + "data": { + "rmmUid": "21f8695c-d94f-7fbe-e63c-f39cacbfeefa" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.132", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-02T11:36:05Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T13:41:40.170Z" + }, + { + "id": "fcf8b5f3-4f23-4b3d-91c6-6fdb9effc874", + "name": null, + "hostname": "desktop-jk4e68n", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "127.0.0.1", + "ipstring": "127.0.0.1", + "ipPub": "72.217.40.81", + "ipstringPub": "72.217.40.81", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-04T20:15:58.019Z", + "active": false, + "monitoredJobFetched": "2026-07-04T20:15:54.508Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "9491f44e-ba32-59fd-d025-738df0ea72b4", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-04T20:15:54.510Z", + "locationId": "49d5fbf2-f377-4ede-9e4c-1c8655939b63", + "data": { + "rmmUid": "9491f44e-ba32-59fd-d025-738df0ea72b4" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.150", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-04T13:11:44Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-27T19:09:14.721Z" + }, + { + "id": "02e96646-0a21-400e-ab57-c5b6aa382aa7", + "name": null, + "hostname": "desktop-kqsl232", + "version": "3.17.1.5371", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "10.0.20.227", + "ipstring": "10.0.20.227", + "ipPub": "184.191.143.62", + "ipstringPub": "184.191.143.62", + "os": "Windows 10 Pro 2009 Professional 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-05-29T17:49:19.864Z", + "active": false, + "monitoredJobFetched": "2026-05-29T17:47:14.869Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "14135ff9-9527-9135-62ee-84a2297c9950", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-05-29T17:49:15.069Z", + "locationId": "1dbd2b02-f7df-45d0-a7f2-18667f48447f", + "data": { + "rmmUid": "14135ff9-9527-9135-62ee-84a2297c9950" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.1.28", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.6", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-05-29T11:13:39Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-04-28T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-05-21T05:14:24.679Z" + }, + { + "id": "98d82401-c3ca-46f9-8033-d5a1795678fa", + "name": null, + "hostname": "desktop-lopkb4g", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "127.0.0.1", + "ipstring": "127.0.0.1", + "ipPub": "70.177.5.164", + "ipstringPub": "70.177.5.164", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T14:20:28.132Z", + "active": false, + "monitoredJobFetched": "2026-07-05T10:21:48.473Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "10508445-b295-165e-feae-1e6116a3468c", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T14:20:28.037Z", + "locationId": "bb3db4c4-8db9-4f51-beee-2150f5e9b820", + "data": { + "rmmUid": "10508445-b295-165e-feae-1e6116a3468c" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.150", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-04T13:11:44Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T12:30:25.534Z" + }, + { + "id": "f981dcaa-37f5-4c89-986f-d7cea4e97dd1", + "name": null, + "hostname": "desktop-lpopv30", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "10.0.20.100", + "ipstring": "10.0.20.100", + "ipPub": "184.191.143.62", + "ipstringPub": "184.191.143.62", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:05:28.535Z", + "active": true, + "monitoredJobFetched": "2026-07-05T15:57:24.351Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "ffb0fdc1-2c62-ee15-6936-a526cc7891c8", + "deviceShortId": "7229195", + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:05:24.959Z", + "locationId": "1dbd2b02-f7df-45d0-a7f2-18667f48447f", + "data": { + "rmmUid": "ffb0fdc1-2c62-ee15-6936-a526cc7891c8" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:16:00.034Z" + }, + { + "id": "7190aee1-7fbb-45ff-a555-9ffa2a076873", + "name": null, + "hostname": "desktop-md6uqi3", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "10.0.20.222", + "ipstring": "10.0.20.222", + "ipPub": "184.191.143.62", + "ipstringPub": "184.191.143.62", + "os": "Windows 11 ProfessionalWorkstation 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T14:29:38.171Z", + "active": false, + "monitoredJobFetched": "2026-07-05T14:21:33.027Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": null, + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T14:29:33.463Z", + "locationId": "1dbd2b02-f7df-45d0-a7f2-18667f48447f", + "data": { + "rmmUid": null + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.150", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-04T13:11:44Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T14:08:42.680Z" + }, + { + "id": "ab1c7e79-bf93-495c-b09a-606fbe92a848", + "name": null, + "hostname": "desktop-n5g1roo", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "10.0.20.183", + "ipstring": "10.0.20.183", + "ipPub": "184.191.143.62", + "ipstringPub": "184.191.143.62", + "os": "Windows 11 ProfessionalWorkstation 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:06:13.537Z", + "active": true, + "monitoredJobFetched": "2026-07-05T16:04:10.498Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": null, + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:06:10.410Z", + "locationId": "1dbd2b02-f7df-45d0-a7f2-18667f48447f", + "data": { + "rmmUid": null + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-26T03:44:21.332Z" + }, + { + "id": "de26177d-a700-4473-8a2a-a0bf662199cb", + "name": null, + "hostname": "desktop-ojd1t65", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.22.107", + "ipstring": "192.168.22.107", + "ipPub": "72.219.226.171", + "ipstringPub": "72.219.226.171", + "os": "Windows 11 Core 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:05:53.536Z", + "active": true, + "monitoredJobFetched": "2026-07-05T15:51:52.413Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "85355207-f741-dd68-48a0-7c15d366cff0", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:05:53.022Z", + "locationId": "beb180e1-2750-446c-a093-45021f575cfc", + "data": { + "rmmUid": "85355207-f741-dd68-48a0-7c15d366cff0" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:15:55.262Z" + }, + { + "id": "17e1cb85-f72e-4abc-b719-2af266b97b0a", + "name": null, + "hostname": "desktop-p5f7nqu", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.0.109", + "ipstring": "192.168.0.109", + "ipPub": "67.206.163.122", + "ipstringPub": "67.206.163.122", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:05:08.533Z", + "active": true, + "monitoredJobFetched": "2026-07-05T15:53:06.788Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "97e08cf8-8092-c84a-d740-56308ab66a04", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:05:07.525Z", + "locationId": "64144044-9dc5-4747-b2c9-7ab15716f3ce", + "data": { + "rmmUid": "97e08cf8-8092-c84a-d740-56308ab66a04" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": false, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:14:40.065Z" + }, + { + "id": "7fc34e53-b278-4fbc-9cbc-a219544706b4", + "name": null, + "hostname": "desktop-q33i5h1", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.0.135", + "ipstring": "192.168.0.135", + "ipPub": "67.206.163.122", + "ipstringPub": "67.206.163.122", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:06:18.537Z", + "active": true, + "monitoredJobFetched": "2026-07-05T16:06:16.943Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "c0fd0040-53cc-fa7d-2fb3-aa61f7506c90", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:06:16.945Z", + "locationId": "64144044-9dc5-4747-b2c9-7ab15716f3ce", + "data": { + "rmmUid": "c0fd0040-53cc-fa7d-2fb3-aa61f7506c90" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.150", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-04T13:11:44Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": false, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:14:44.538Z" + }, + { + "id": "fb0d9792-2c60-4e24-a319-ca7e24ffb07e", + "name": null, + "hostname": "desktop-rok7vnm", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "10.0.20.223", + "ipstring": "10.0.20.223", + "ipPub": "184.191.143.62", + "ipstringPub": "184.191.143.62", + "os": "Windows 11 ProfessionalWorkstation 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:05:23.535Z", + "active": true, + "monitoredJobFetched": "2026-07-05T15:53:22.134Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "5097f40d-0078-6ef5-7102-37b9f71a5e56", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:05:22.886Z", + "locationId": "1dbd2b02-f7df-45d0-a7f2-18667f48447f", + "data": { + "rmmUid": "5097f40d-0078-6ef5-7102-37b9f71a5e56" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:15:45.168Z" + }, + { + "id": "3c1de986-4c01-42c9-ba83-69360b24171b", + "name": null, + "hostname": "desktop-s4gnl8o", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "172.16.9.144", + "ipstring": "172.16.9.144", + "ipPub": "4.18.160.106", + "ipstringPub": "4.18.160.106", + "os": "Windows 11 Professional 24H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-02T22:58:16.280Z", + "active": false, + "monitoredJobFetched": "2026-07-02T22:48:11.261Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "cb89c0c1-8066-a72c-7a34-169dfa7fec37", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-02T22:58:12.094Z", + "locationId": "a29f3049-64fa-4593-9e3c-fe0519a53dee", + "data": { + "rmmUid": "cb89c0c1-8066-a72c-7a34-169dfa7fec37" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.134", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-02T17:37:00Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-23T15:30:19.012Z" + }, + { + "id": "989e6eb9-3b6f-4cb4-9482-10328bbdae0c", + "name": null, + "hostname": "desktop-sa4n14m", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.0.89", + "ipstring": "192.168.0.89", + "ipPub": "67.1.228.29", + "ipstringPub": "67.1.228.29", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-03T01:58:22.084Z", + "active": false, + "monitoredJobFetched": "2026-07-03T01:58:20.000Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": null, + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-03T01:58:20.002Z", + "locationId": "64144044-9dc5-4747-b2c9-7ab15716f3ce", + "data": { + "rmmUid": null + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.134", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-02T17:37:00Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": false, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T15:42:38.201Z" + }, + { + "id": "d7f1063b-840e-49e3-baf5-8273a0ae6f71", + "name": null, + "hostname": "desktop-trcieja", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "10.0.20.184", + "ipstring": "10.0.20.184", + "ipPub": "184.191.143.62", + "ipstringPub": "184.191.143.62", + "os": "Windows 11 Professional 21H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:06:58.539Z", + "active": true, + "monitoredJobFetched": "2026-07-05T15:58:56.773Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "49424117-a460-afe7-170d-69dafe83cf02", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:06:57.447Z", + "locationId": "1dbd2b02-f7df-45d0-a7f2-18667f48447f", + "data": { + "rmmUid": "49424117-a460-afe7-170d-69dafe83cf02" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.150", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-04T13:11:44Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-22T13:52:59.274Z" + }, + { + "id": "5dc9c06f-e9a1-416f-905a-0f1f7e1eb5d3", + "name": null, + "hostname": "desktop-u2dhap0", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.3.37", + "ipstring": "192.168.3.37", + "ipPub": "184.191.143.62", + "ipstringPub": "184.191.143.62", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:05:18.535Z", + "active": true, + "monitoredJobFetched": "2026-07-05T15:55:13.267Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "e96f8184-8cdc-8859-97a8-136e69288383", + "deviceShortId": "7229205", + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:05:13.702Z", + "locationId": "1dbd2b02-f7df-45d0-a7f2-18667f48447f", + "data": { + "rmmUid": "e96f8184-8cdc-8859-97a8-136e69288383" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:15:51.685Z" + }, + { + "id": "e722f7d8-55f0-401a-8eb8-1efdc5eed669", + "name": null, + "hostname": "desktop-u8phs72", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.0.48", + "ipstring": "192.168.0.48", + "ipPub": "67.206.163.122", + "ipstringPub": "67.206.163.122", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:06:18.537Z", + "active": true, + "monitoredJobFetched": "2026-07-05T15:52:13.577Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "dbf3d55b-cce9-a776-72c7-4558eb504e7d", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:06:14.254Z", + "locationId": "64144044-9dc5-4747-b2c9-7ab15716f3ce", + "data": { + "rmmUid": "dbf3d55b-cce9-a776-72c7-4558eb504e7d" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": false, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:17:19.976Z" + }, + { + "id": "f6140353-ea73-42db-ac51-c864d7ae0fa1", + "name": null, + "hostname": "desktop-urv3ugr", + "version": "3.17.1.4968", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.0.48", + "ipstring": "192.168.0.48", + "ipPub": "72.194.57.2", + "ipstringPub": "72.194.57.2", + "os": "Windows 10 Pro 2009 Professional 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-04-15T19:03:45.677Z", + "active": false, + "monitoredJobFetched": "2026-04-15T18:55:40.280Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "9ef39c76-a308-f891-9ed6-47a89de5922f", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-04-15T19:03:40.702Z", + "locationId": "c56026f0-b174-4f84-9dc4-cf8cffa49b74", + "data": { + "rmmUid": "9ef39c76-a308-f891-9ed6-47a89de5922f" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2603.8370", + "rtpVersion": "1.0.2603.8111", + "vdfVersion": "8.20.76.130", + "amsiVersion": "1.0.2602.2638", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.0.82", + "sentryVersion": "3.0.2603.2844", + "rebootRequired": false, + "vdfReleaseDate": "2026-04-15T03:39:45Z", + "firewallVersion": "1.0.2603.3746", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-03-31T00:00:00Z", + "quarantineVersion": "1.0.2602.2376", + "remediationVersion": "1.0.2602.3154", + "onDemandScanVersion": "1.0.2602.3567", + "netProtectionVersion": "1.0.2602.3002" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-04-03T04:42:11.322Z" + }, + { + "id": "e320c63a-4b0f-4665-9556-6d4998d71406", + "name": null, + "hostname": "desktop-vscnaqv", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "127.0.0.1", + "ipstring": "127.0.0.1", + "ipPub": "174.255.190.40", + "ipstringPub": "174.255.190.40", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-02T17:13:24.819Z", + "active": false, + "monitoredJobFetched": "2026-07-02T17:12:28.511Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "96fc8eeb-391f-49ab-58a6-132ec0582bde", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-02T17:13:22.541Z", + "locationId": "bb3db4c4-8db9-4f51-beee-2150f5e9b820", + "data": { + "rmmUid": "96fc8eeb-391f-49ab-58a6-132ec0582bde" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.132", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-02T11:36:05Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T06:45:28.299Z" + }, + { + "id": "6015743b-a5de-4299-a2c3-0a85fae34952", + "name": null, + "hostname": "df-d2-training-lt", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.0.193", + "ipstring": "192.168.0.193", + "ipPub": "67.206.163.122", + "ipstringPub": "67.206.163.122", + "os": "Windows 11 ProfessionalWorkstation 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-06-26T16:25:33.793Z", + "active": false, + "monitoredJobFetched": "2026-06-26T16:20:30.651Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "8ad57039-f695-9b52-09b4-3641ba9fab90", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-06-26T16:25:28.984Z", + "locationId": "64144044-9dc5-4747-b2c9-7ab15716f3ce", + "data": { + "rmmUid": "8ad57039-f695-9b52-09b4-3641ba9fab90", + "serviceCompatibility": { + "rwd": { + "status": "compatible" + }, + "dattoAV": { + "status": "compatible" + }, + "rollback": { + "status": "compatible" + } + } + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.72", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-06-26T12:49:06Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": false, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-26T14:07:39.474Z" + }, + { + "id": "91b4aff0-2d2c-40e3-b6e1-d5cc43e2a312", + "name": null, + "hostname": "df-joel2", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.0.174", + "ipstring": "192.168.0.174", + "ipPub": "67.206.163.122", + "ipstringPub": "67.206.163.122", + "os": "Windows 11 ProfessionalWorkstation 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:06:58.539Z", + "active": true, + "monitoredJobFetched": "2026-07-05T15:58:54.159Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "882b4122-82c9-f328-f9ca-cdecf7ee577e", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:06:54.865Z", + "locationId": "64144044-9dc5-4747-b2c9-7ab15716f3ce", + "data": { + "rmmUid": "882b4122-82c9-f328-f9ca-cdecf7ee577e" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": false, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:14:40.337Z" + }, + { + "id": "532711d3-f78e-44a4-b648-7a877559a1ba", + "name": null, + "hostname": "df-lee-i9", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.0.103", + "ipstring": "192.168.0.103", + "ipPub": "67.206.163.122", + "ipstringPub": "67.206.163.122", + "os": "Windows 11 Professional 23H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:07:00.586Z", + "active": true, + "monitoredJobFetched": "2026-07-05T16:07:00.586Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "b3ed3359-d607-b015-5d91-d19994ddadb1", + "deviceShortId": "7768006", + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:05:00.618Z", + "locationId": "64144044-9dc5-4747-b2c9-7ab15716f3ce", + "data": { + "rmmUid": "b3ed3359-d607-b015-5d91-d19994ddadb1" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": false, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:15:14.658Z" + }, + { + "id": "46f7c58e-a673-42e0-9fc4-ed3c9ff7c7eb", + "name": null, + "hostname": "dfaslb0519", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.0.175", + "ipstring": "192.168.0.175", + "ipPub": "67.206.163.122", + "ipstringPub": "67.206.163.122", + "os": "Windows 10 Pro 2009 Professional 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-02T18:33:20.206Z", + "active": false, + "monitoredJobFetched": "2026-07-02T18:27:19.439Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "71bbdcf7-0db0-5e9c-62fe-089f81ad5731", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-02T18:33:19.873Z", + "locationId": "64144044-9dc5-4747-b2c9-7ab15716f3ce", + "data": { + "rmmUid": "71bbdcf7-0db0-5e9c-62fe-089f81ad5731" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.132", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-02T11:36:05Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": false, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T13:08:47.017Z" + }, + { + "id": "80dd3b9d-c460-4dee-957c-7e1f56031e83", + "name": null, + "hostname": "dforth-shipp", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.0.70", + "ipstring": "192.168.0.70", + "ipPub": "67.206.163.122", + "ipstringPub": "67.206.163.122", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:06:13.537Z", + "active": true, + "monitoredJobFetched": "2026-07-05T15:54:11.287Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "4a53fcaf-ac9d-72a1-cda0-429ea40c180d", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:06:12.120Z", + "locationId": "64144044-9dc5-4747-b2c9-7ab15716f3ce", + "data": { + "rmmUid": "4a53fcaf-ac9d-72a1-cda0-429ea40c180d" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": false, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:14:47.294Z" + }, + { + "id": "4121720d-95f1-4e37-a6b8-0ce74468b532", + "name": null, + "hostname": "dforthpc18", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.0.182", + "ipstring": "192.168.0.182", + "ipPub": "67.206.163.122", + "ipstringPub": "67.206.163.122", + "os": "Windows 10 Pro 2009 Professional 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-01T22:54:30.137Z", + "active": false, + "monitoredJobFetched": "2026-07-01T22:54:28.898Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "6ad803f8-35e9-a57e-04cf-23ad8c5ece6c", + "deviceShortId": "7467968", + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-01T22:54:28.901Z", + "locationId": "64144044-9dc5-4747-b2c9-7ab15716f3ce", + "data": { + "rmmUid": "6ad803f8-35e9-a57e-04cf-23ad8c5ece6c" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.126", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-01T14:06:54Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": false, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-22T13:39:00.031Z" + }, + { + "id": "932747a8-8dc3-41d7-9490-e817c15c0999", + "name": null, + "hostname": "eng-dev-server", + "version": "3.17.1.5371", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.0.89", + "ipstring": "192.168.0.89", + "ipPub": "67.206.163.122", + "ipstringPub": "67.206.163.122", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-05-23T00:08:41.870Z", + "active": false, + "monitoredJobFetched": "2026-05-23T00:02:37.658Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "5349c962-9025-f71d-b5a7-1a0535312400", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-05-23T00:08:37.808Z", + "locationId": "64144044-9dc5-4747-b2c9-7ab15716f3ce", + "data": { + "rmmUid": "5349c962-9025-f71d-b5a7-1a0535312400" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.0.196", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.6", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-05-22T19:02:57Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-04-28T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": false, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-05-23T00:01:51.621Z" + }, + { + "id": "0acb7978-2dc6-46c2-9b91-4ce1f4fa3d8c", + "name": null, + "hostname": "eng-dev-server", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.0.149", + "ipstring": "192.168.0.149", + "ipPub": "67.206.163.122", + "ipstringPub": "67.206.163.122", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:05:53.536Z", + "active": true, + "monitoredJobFetched": "2026-07-05T15:53:48.640Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "425f46a2-7034-c3a2-622e-573b7ced3454", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:05:49.475Z", + "locationId": "64144044-9dc5-4747-b2c9-7ab15716f3ce", + "data": { + "rmmUid": "425f46a2-7034-c3a2-622e-573b7ced3454" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": false, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:17:18.324Z" + }, + { + "id": "0add8fb2-bc78-41da-8af5-b2f800b948fa", + "name": null, + "hostname": "estimator1", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.0.188", + "ipstring": "192.168.0.188", + "ipPub": "4.18.160.106", + "ipstringPub": "4.18.160.106", + "os": "Windows 10 Enterprise 2009 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:06:58.539Z", + "active": true, + "monitoredJobFetched": "2026-07-05T16:02:58.086Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "28f60f32-5d85-6dfa-0043-1129a9eb56b0", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:06:58.432Z", + "locationId": "a29f3049-64fa-4593-9e3c-fe0519a53dee", + "data": { + "rmmUid": "28f60f32-5d85-6dfa-0043-1129a9eb56b0" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:14:58.814Z" + }, + { + "id": "b51fe4c8-20ab-490c-99da-2f957bedfe30", + "name": null, + "hostname": "evo-x1", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.86.231", + "ipstring": "192.168.86.231", + "ipPub": "76.92.197.197", + "ipstringPub": "76.92.197.197", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-02T21:04:30.849Z", + "active": false, + "monitoredJobFetched": "2026-07-02T21:02:30.660Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "77457e2b-fa18-9a56-3f36-a96aab19794e", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-02T21:04:30.817Z", + "locationId": "ce208436-0cfa-49fe-9ed0-44c44d6292f6", + "data": { + "rmmUid": "77457e2b-fa18-9a56-3f36-a96aab19794e" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2603.8370", + "rtpVersion": "1.0.2603.8111", + "vdfVersion": "8.20.75.36", + "amsiVersion": "1.0.2602.2638", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.0.82", + "sentryVersion": "3.0.2603.2844", + "rebootRequired": false, + "vdfReleaseDate": "2026-04-03T09:45:49Z", + "firewallVersion": "1.0.2603.3746", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-03-31T00:00:00Z", + "quarantineVersion": "1.0.2602.2376", + "remediationVersion": "1.0.2602.3154", + "onDemandScanVersion": "1.0.2602.3567", + "netProtectionVersion": "1.0.2602.3002" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-22T11:40:42.352Z" + }, + { + "id": "e00b0e51-47ae-4fd8-aeb2-e99189be3e8c", + "name": null, + "hostname": "front64", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "172.16.9.147", + "ipstring": "172.16.9.147", + "ipPub": "4.18.160.106", + "ipstringPub": "4.18.160.106", + "os": "Windows 10 Pro 2009 Professional 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-02T22:55:51.272Z", + "active": false, + "monitoredJobFetched": "2026-07-02T22:51:46.392Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "d386c40b-6f98-628c-aa5d-d035628b104f", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-02T22:55:46.686Z", + "locationId": "a29f3049-64fa-4593-9e3c-fe0519a53dee", + "data": { + "rmmUid": "d386c40b-6f98-628c-aa5d-d035628b104f" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.134", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-02T17:37:00Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:15:54.658Z" + }, + { + "id": "ba32908e-ed5a-48ed-b02a-de5e660e44cf", + "name": null, + "hostname": "gh-laptop", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "10.0.0.61", + "ipstring": "10.0.0.61", + "ipPub": "71.202.53.96", + "ipstringPub": "71.202.53.96", + "os": "Windows 10 Pro 2009 Professional 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-06-25T06:48:15.634Z", + "active": false, + "monitoredJobFetched": "2026-06-25T06:34:12.740Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "60281d59-64c0-a744-375a-d23b9b4b69b6", + "deviceShortId": "7474150", + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-06-25T06:48:13.469Z", + "locationId": "64144044-9dc5-4747-b2c9-7ab15716f3ce", + "data": { + "rmmUid": "60281d59-64c0-a744-375a-d23b9b4b69b6" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.58", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-06-24T18:54:06Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": false, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:15:05.433Z" + }, + { + "id": "40843fd8-21a8-4ef0-af54-057ae0015f7d", + "name": null, + "hostname": "goldstar19", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.0.171", + "ipstring": "192.168.0.171", + "ipPub": "67.206.163.122", + "ipstringPub": "67.206.163.122", + "os": "Windows 10 Pro 2009 Professional 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:06:53.539Z", + "active": true, + "monitoredJobFetched": "2026-07-05T16:04:53.305Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": null, + "deviceShortId": "7634073", + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:06:53.191Z", + "locationId": "64144044-9dc5-4747-b2c9-7ab15716f3ce", + "data": { + "rmmUid": null + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": false, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:15:31.291Z" + }, + { + "id": "82201dc5-8b31-4b5e-942d-5290d2668302", + "name": null, + "hostname": "gti-exchange", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.8.212", + "ipstring": "192.168.8.212", + "ipPub": "65.113.52.82", + "ipstringPub": "65.113.52.82", + "os": "Windows Server 2016 Standard 1607 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:05:43.536Z", + "active": true, + "monitoredJobFetched": "2026-07-05T16:03:42.946Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "84b604ef-b893-567e-aa8c-0d933ba4e64c", + "deviceShortId": null, + "deviceGroupId": "002ad7ee-492c-4a7f-aa60-042044ab31bf", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:05:43.163Z", + "locationId": "b7f840d0-5f18-4714-9acd-573a82970e74", + "data": { + "rmmUid": "84b604ef-b893-567e-aa8c-0d933ba4e64c" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:16:18.151Z" + }, + { + "id": "91ded7cc-00c0-42bb-9daf-7db7a5e21301", + "name": null, + "hostname": "gti-inv-dc", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.8.5", + "ipstring": "192.168.8.5", + "ipPub": "65.56.254.174", + "ipstringPub": "65.56.254.174", + "os": "Windows Server 2016 Standard 1607 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:05:23.535Z", + "active": true, + "monitoredJobFetched": "2026-07-05T15:57:22.855Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "54801820-cfc7-a668-3a13-450a13321c41", + "deviceShortId": null, + "deviceGroupId": "002ad7ee-492c-4a7f-aa60-042044ab31bf", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:05:23.488Z", + "locationId": "b7f840d0-5f18-4714-9acd-573a82970e74", + "data": { + "rmmUid": "54801820-cfc7-a668-3a13-450a13321c41" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:17:40.978Z" + }, + { + "id": "790fd47b-eff9-41b4-af0f-731c9677e63b", + "name": null, + "hostname": "gti-inv-dc1", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.8.2", + "ipstring": "192.168.8.2", + "ipPub": "65.56.254.174", + "ipstringPub": "65.56.254.174", + "os": "Windows Server 2016 Standard 1607 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:06:33.539Z", + "active": true, + "monitoredJobFetched": "2026-07-05T15:56:29.570Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "897d7b4e-44bb-085b-8778-cac4e191cde6", + "deviceShortId": null, + "deviceGroupId": "002ad7ee-492c-4a7f-aa60-042044ab31bf", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:06:30.196Z", + "locationId": "b7f840d0-5f18-4714-9acd-573a82970e74", + "data": { + "rmmUid": "897d7b4e-44bb-085b-8778-cac4e191cde6" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:15:12.970Z" + }, + { + "id": "571c8402-6032-4525-81e6-583398cef951", + "name": null, + "hostname": "gti-inv-sql", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.8.62", + "ipstring": "192.168.8.62", + "ipPub": "65.56.254.174", + "ipstringPub": "65.56.254.174", + "os": "Windows Server 2016 Standard 1607 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:05:53.536Z", + "active": true, + "monitoredJobFetched": "2026-07-05T15:53:48.227Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "f95dffb2-50b4-e872-3bdf-b8bdb4f05b00", + "deviceShortId": null, + "deviceGroupId": "002ad7ee-492c-4a7f-aa60-042044ab31bf", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:05:49.204Z", + "locationId": "b7f840d0-5f18-4714-9acd-573a82970e74", + "data": { + "rmmUid": "f95dffb2-50b4-e872-3bdf-b8bdb4f05b00" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:15:50.056Z" + }, + { + "id": "a94d7107-ea85-4f39-966c-8b061d1ee0fa", + "name": null, + "hostname": "health-services-director", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "10.0.20.178", + "ipstring": "10.0.20.178", + "ipPub": "184.191.143.62", + "ipstringPub": "184.191.143.62", + "os": "Windows 11 ProfessionalWorkstation 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:05:53.536Z", + "active": true, + "monitoredJobFetched": "2026-07-05T15:57:51.234Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": null, + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:05:51.318Z", + "locationId": "1dbd2b02-f7df-45d0-a7f2-18667f48447f", + "data": { + "rmmUid": null + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.150", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-04T13:11:44Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-26T03:44:16.061Z" + }, + { + "id": "1abeb270-e431-423c-b2f4-d547de696e27", + "name": null, + "hostname": "hghaubner", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.0.148", + "ipstring": "192.168.0.148", + "ipPub": "67.206.163.122", + "ipstringPub": "67.206.163.122", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:05:03.532Z", + "active": true, + "monitoredJobFetched": "2026-07-05T15:59:02.084Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "9eb2c03b-0989-faea-94a2-8c4cf35c5c3b", + "deviceShortId": "7486895", + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:05:02.479Z", + "locationId": "64144044-9dc5-4747-b2c9-7ab15716f3ce", + "data": { + "rmmUid": "9eb2c03b-0989-faea-94a2-8c4cf35c5c3b" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": false, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:16:16.598Z" + }, + { + "id": "af3dbba0-fd3f-4ab2-93cc-f3039c7beba0", + "name": null, + "hostname": "hsm-bill", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.1.114", + "ipstring": "192.168.1.114", + "ipPub": "68.10.32.150", + "ipstringPub": "68.10.32.150", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T12:17:47.591Z", + "active": false, + "monitoredJobFetched": "2026-07-05T12:15:51.542Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "d4d6711a-f834-e54f-1a02-4be037e64fcc", + "deviceShortId": "7385167", + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T12:17:45.195Z", + "locationId": "49d5fbf2-f377-4ede-9e4c-1c8655939b63", + "data": { + "rmmUid": "d4d6711a-f834-e54f-1a02-4be037e64fcc" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.146", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-04T04:58:15Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": "2025-08-30T00:50:30.397Z", + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T08:48:11.875Z" + }, + { + "id": "3244c8fd-f59c-4db5-bd38-fd9800cc35a4", + "name": null, + "hostname": "hsm-cathy", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.1.119", + "ipstring": "192.168.1.119", + "ipPub": "68.10.32.150", + "ipstringPub": "68.10.32.150", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-02T20:00:10.545Z", + "active": false, + "monitoredJobFetched": "2026-07-02T19:56:08.893Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "1b177992-377f-7e0c-22a2-d74ca603779b", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-02T20:00:09.361Z", + "locationId": "49d5fbf2-f377-4ede-9e4c-1c8655939b63", + "data": { + "rmmUid": "1b177992-377f-7e0c-22a2-d74ca603779b" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.132", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-02T11:36:05Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T16:57:17.367Z" + }, + { + "id": "376acb59-e55f-46a1-b5ea-e3b6e65dc09c", + "name": null, + "hostname": "hsm-frank02", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.1.112", + "ipstring": "192.168.1.112", + "ipPub": "68.10.32.150", + "ipstringPub": "68.10.32.150", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:06:28.538Z", + "active": true, + "monitoredJobFetched": "2026-07-05T15:56:27.259Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "45466447-9c1e-d29a-9c3b-14a64020f2d2", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:06:27.553Z", + "locationId": "49d5fbf2-f377-4ede-9e4c-1c8655939b63", + "data": { + "rmmUid": "45466447-9c1e-d29a-9c3b-14a64020f2d2" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:14:41.021Z" + }, + { + "id": "4b322974-9cbd-4850-84ca-5ad805ee236d", + "name": null, + "hostname": "hsm-newserver", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.1.10", + "ipstring": "192.168.1.10", + "ipPub": "68.10.32.150", + "ipstringPub": "68.10.32.150", + "os": "Windows Server 2019 Essentials 1809 ServerSolution 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:06:13.537Z", + "active": true, + "monitoredJobFetched": "2026-07-05T15:58:11.024Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "30ef6e9b-99dc-bb4a-2a6e-51fa89f73848", + "deviceShortId": null, + "deviceGroupId": null, + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:06:11.332Z", + "locationId": "49d5fbf2-f377-4ede-9e4c-1c8655939b63", + "data": { + "rmmUid": "30ef6e9b-99dc-bb4a-2a6e-51fa89f73848" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:14:32.353Z" + }, + { + "id": "423bc847-cd6e-4ae7-b19a-786616627b71", + "name": null, + "hostname": "hsm-server", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.1.5", + "ipstring": "192.168.1.5", + "ipPub": "68.10.32.150", + "ipstringPub": "68.10.32.150", + "os": "Windows Server 2019 Standard 1809 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:05:23.535Z", + "active": true, + "monitoredJobFetched": "2026-07-05T15:59:21.910Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "94a5cdb6-7685-d598-4bce-bdfac204daf3", + "deviceShortId": "7385170", + "deviceGroupId": null, + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:05:22.601Z", + "locationId": "49d5fbf2-f377-4ede-9e4c-1c8655939b63", + "data": { + "rmmUid": "94a5cdb6-7685-d598-4bce-bdfac204daf3" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:16:18.880Z" + }, + { + "id": "6be90ce7-0d5d-4e45-98b4-19134df6a274", + "name": null, + "hostname": "iMac-de-CAROLINA.local", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.1.74", + "ipstring": "192.168.1.74", + "ipPub": "189.173.5.130", + "ipstringPub": "189.173.5.130", + "os": "MacOS 15.6.1 (24G90)", + "osWindows": false, + "osOsx": true, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-03T19:13:56.569Z", + "active": false, + "monitoredJobFetched": "2026-07-03T19:01:53.072Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "bb6e64ad-9db6-5a92-bcae-f512b9b143c9", + "deviceShortId": null, + "deviceGroupId": null, + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-03T19:13:54.170Z", + "locationId": "4790a339-3e17-48fd-a30c-69b038fe239e", + "data": { + "rmmUid": "bb6e64ad-9db6-5a92-bcae-f512b9b143c9" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "vdfVersion": "8.21.2.138", + "engineReady": true, + "avpackVersion": "8.6.6.14", + "compatibility": "Modern", + "engineVersion": "8.4.2.12", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-03" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": null, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:32:41.611Z" + }, + { + "id": "c4c6d6f0-a9c4-4f14-b40a-ba806075a2f6", + "name": null, + "hostname": "iMac.home", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.10.127", + "ipstring": "192.168.10.127", + "ipPub": "206.51.112.31", + "ipstringPub": "206.51.112.31", + "os": "MacOS 26.4.1 (25E253)", + "osWindows": false, + "osOsx": true, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:05:28.535Z", + "active": true, + "monitoredJobFetched": "2026-07-05T16:03:24.480Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "fd62d571-8dc3-92e4-5d46-67396ddb004b", + "deviceShortId": null, + "deviceGroupId": null, + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:05:24.951Z", + "locationId": "4790a339-3e17-48fd-a30c-69b038fe239e", + "data": { + "rmmUid": "fd62d571-8dc3-92e4-5d46-67396ddb004b" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "vdfVersion": "8.21.2.138", + "engineReady": true, + "avpackVersion": "8.6.6.14", + "compatibility": "Modern", + "engineVersion": "8.4.2.12", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-04" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": null, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-22T16:46:13.639Z" + }, + { + "id": "116e5a78-dcf6-4c40-a84b-eee9943c9a9e", + "name": null, + "hostname": "imc-l1-station9", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.0.48", + "ipstring": "192.168.0.48", + "ipPub": "72.194.57.2", + "ipstringPub": "72.194.57.2", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:05:38.535Z", + "active": true, + "monitoredJobFetched": "2026-07-05T16:01:37.442Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "ec25adff-5645-1a97-b3d5-4f2e5e401156", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:05:37.513Z", + "locationId": "c56026f0-b174-4f84-9dc4-cf8cffa49b74", + "data": { + "rmmUid": "ec25adff-5645-1a97-b3d5-4f2e5e401156" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:15:30.669Z" + }, + { + "id": "565d1315-be0a-49a8-a3f9-6d640e2b2690", + "name": null, + "hostname": "imc-lessons", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.0.62", + "ipstring": "192.168.0.62", + "ipPub": "72.194.57.2", + "ipstringPub": "72.194.57.2", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:05:03.532Z", + "active": true, + "monitoredJobFetched": "2026-07-05T15:58:58.866Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "21e6f2aa-5329-03dc-86a9-253cb0b75201", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:04:58.963Z", + "locationId": "c56026f0-b174-4f84-9dc4-cf8cffa49b74", + "data": { + "rmmUid": "21e6f2aa-5329-03dc-86a9-253cb0b75201" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:17:17.990Z" + }, + { + "id": "2efedba9-fa81-4ec3-bdce-69d4f8f6fc87", + "name": null, + "hostname": "imc-mini", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.0.28", + "ipstring": "192.168.0.28", + "ipPub": "72.194.57.2", + "ipstringPub": "72.194.57.2", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:06:33.539Z", + "active": true, + "monitoredJobFetched": "2026-07-05T16:00:31.810Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "39525fb7-7010-289a-7176-a4d29c91fb23", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:06:32.084Z", + "locationId": "c56026f0-b174-4f84-9dc4-cf8cffa49b74", + "data": { + "rmmUid": "39525fb7-7010-289a-7176-a4d29c91fb23" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:16:13.431Z" + }, + { + "id": "a037509f-8e8c-48e8-a0ca-11778b62c9ea", + "name": null, + "hostname": "imc-station1", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.0.64", + "ipstring": "192.168.0.64", + "ipPub": "72.194.57.2", + "ipstringPub": "72.194.57.2", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:05:23.535Z", + "active": true, + "monitoredJobFetched": "2026-07-05T15:59:20.705Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "db4106bb-593b-fb6e-49ba-c103f6f4db8c", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:05:20.971Z", + "locationId": "c56026f0-b174-4f84-9dc4-cf8cffa49b74", + "data": { + "rmmUid": "db4106bb-593b-fb6e-49ba-c103f6f4db8c" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:16:03.294Z" + }, + { + "id": "086b96f8-e348-4a65-889c-86b2088fda42", + "name": null, + "hostname": "imc-station2", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.0.66", + "ipstring": "192.168.0.66", + "ipPub": "72.194.57.2", + "ipstringPub": "72.194.57.2", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:05:58.536Z", + "active": true, + "monitoredJobFetched": "2026-07-05T15:57:54.999Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "17def2e0-72d1-f144-a8ee-056549b21290", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:05:55.548Z", + "locationId": "c56026f0-b174-4f84-9dc4-cf8cffa49b74", + "data": { + "rmmUid": "17def2e0-72d1-f144-a8ee-056549b21290" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:14:47.497Z" + }, + { + "id": "714deb43-eeec-49c0-ad89-27f15a45fdae", + "name": null, + "hostname": "imc-svcstr", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.0.55", + "ipstring": "192.168.0.55", + "ipPub": "72.194.57.2", + "ipstringPub": "72.194.57.2", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:07:05.771Z", + "active": true, + "monitoredJobFetched": "2026-07-05T16:07:05.771Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "6896f31a-9d70-2d7b-9a59-22e753dc34ed", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:05:05.767Z", + "locationId": "c56026f0-b174-4f84-9dc4-cf8cffa49b74", + "data": { + "rmmUid": "6896f31a-9d70-2d7b-9a59-22e753dc34ed" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:16:06.628Z" + }, + { + "id": "723c5421-bef1-4371-a732-068585fd3bbb", + "name": null, + "hostname": "isacc-lptp", + "version": "3.17.1.4869", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": true, + "ip": "172.16.9.173", + "ipstring": "172.16.9.173", + "ipPub": "4.18.160.106", + "ipstringPub": "4.18.160.106", + "os": "Windows 10 Enterprise 2009 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-06-04T14:05:46.775Z", + "active": false, + "monitoredJobFetched": "2026-04-02T14:06:39.710Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "30f7118b-d2fd-b9a2-0974-45de0db148b6", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-06-04T14:05:46.156Z", + "locationId": "a29f3049-64fa-4593-9e3c-fe0519a53dee", + "data": { + "rmmUid": "30f7118b-d2fd-b9a2-0974-45de0db148b6" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.1.110", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.6", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-06-04T06:32:20Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-04-28T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-04T12:33:00.046Z" + }, + { + "id": "92f8961c-6f0b-446b-8c10-4be8a4bb29bb", + "name": null, + "hostname": "janc-qb", + "version": "3.17.1.4537", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "127.0.0.1", + "ipstring": "127.0.0.1", + "ipPub": "76.134.167.207", + "ipstringPub": "76.134.167.207", + "os": "Windows Server 2016 Standard 1607 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:06:23.538Z", + "active": true, + "monitoredJobFetched": "2026-07-05T15:53:20.405Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "c075b5f7-2bcd-52f7-633a-17d451d5da42", + "deviceShortId": null, + "deviceGroupId": null, + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:06:19.257Z", + "locationId": "2a390cf6-6668-4c8b-9dc3-a423e24fbe7d", + "data": { + "rmmUid": "c075b5f7-2bcd-52f7-633a-17d451d5da42" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2602.8055", + "rtpVersion": "1.0.2602.7892", + "vdfVersion": "8.20.72.152", + "amsiVersion": "1.0.2602.2569", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.0.62", + "sentryVersion": "3.0.2601.2646", + "rebootRequired": false, + "vdfReleaseDate": "2026-02-16T15:06:52Z", + "firewallVersion": "1.0.2601.3488", + "coreEngineVersion": "2.0.3.52", + "engineReleaseDate": "2026-02-13T00:00:00Z", + "quarantineVersion": "1.0.2602.2329", + "remediationVersion": "1.0.2602.3103", + "onDemandScanVersion": "1.0.2512.3314", + "netProtectionVersion": "1.0.2512.2795" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-07-05T13:47:10.310Z" + }, + { + "id": "daab460d-a054-464c-86db-16ea6fcfe61b", + "name": null, + "hostname": "jg64-2", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "172.16.9.195", + "ipstring": "172.16.9.195", + "ipPub": "4.18.160.106", + "ipstringPub": "4.18.160.106", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:06:23.538Z", + "active": true, + "monitoredJobFetched": "2026-07-05T16:02:20.629Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "87828ff5-efe1-4e90-b27d-5d93d1010357", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:06:20.840Z", + "locationId": "a29f3049-64fa-4593-9e3c-fe0519a53dee", + "data": { + "rmmUid": "87828ff5-efe1-4e90-b27d-5d93d1010357" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.150", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-04T13:11:44Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:16:05.178Z" + }, + { + "id": "bec03c19-bd7e-4bfe-97bd-000201537b53", + "name": null, + "hostname": "jrw10-64", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.0.128", + "ipstring": "192.168.0.128", + "ipPub": "4.18.160.106", + "ipstringPub": "4.18.160.106", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:05:53.536Z", + "active": true, + "monitoredJobFetched": "2026-07-05T15:51:49.934Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "18e19fd2-515b-662e-c266-bd00404b95a7", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:05:50.219Z", + "locationId": "a29f3049-64fa-4593-9e3c-fe0519a53dee", + "data": { + "rmmUid": "18e19fd2-515b-662e-c266-bd00404b95a7" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:15:10.147Z" + }, + { + "id": "3967c947-4b67-4885-85c3-69a525b0b11b", + "name": null, + "hostname": "june", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.1.20", + "ipstring": "192.168.1.20", + "ipPub": "153.66.247.80", + "ipstringPub": "153.66.247.80", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:07:02.597Z", + "active": true, + "monitoredJobFetched": "2026-07-05T16:07:02.597Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "c2f33c8a-a96f-b0ef-34e9-1ccd2a0fa3d4", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:05:02.319Z", + "locationId": "d649e02b-91db-4b3f-a481-86000b823c14", + "data": { + "rmmUid": "c2f33c8a-a96f-b0ef-34e9-1ccd2a0fa3d4" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:30:53.892Z" + }, + { + "id": "45bb8c01-dc00-4bfe-8ec6-dc9e6098745a", + "name": null, + "hostname": "key-media", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "10.0.0.100", + "ipstring": "10.0.0.100", + "ipPub": "76.159.149.33", + "ipstringPub": "76.159.149.33", + "os": "Windows 11 Core 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:06:33.539Z", + "active": true, + "monitoredJobFetched": "2026-07-05T15:54:29.873Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "9ef62958-d1b5-3f54-6a81-c14200736d7b", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:06:30.716Z", + "locationId": "8a0094c8-867e-4941-b0aa-06ca707e0faf", + "data": { + "rmmUid": "9ef62958-d1b5-3f54-6a81-c14200736d7b" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:15:28.244Z" + }, + { + "id": "3e367da2-142d-4bb1-a88e-78f234a26141", + "name": null, + "hostname": "ksteenbb2025", + "version": "3.17.1.4968", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.0.192", + "ipstring": "192.168.0.192", + "ipPub": "68.102.250.191", + "ipstringPub": "68.102.250.191", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:05:18.535Z", + "active": true, + "monitoredJobFetched": "2026-07-05T16:03:17.104Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": null, + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": false, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:05:17.114Z", + "locationId": "ce208436-0cfa-49fe-9ed0-44c44d6292f6", + "data": { + "rmmUid": null + }, + "eppData": { + "dattoav": { + "data": { + "connected": false, + "engineReady": false, + "compatibility": "Unknown", + "rebootRequired": false + }, + "enabled": false, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-07-02T00:44:51.989Z" + }, + { + "id": "4f5d0a99-01af-4073-bdec-057352029aac", + "name": null, + "hostname": "lab-fandi", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.1.89", + "ipstring": "192.168.1.89", + "ipPub": "174.77.67.237", + "ipstringPub": "174.77.67.237", + "os": "Windows 11 Professional 24H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-06-29T18:17:50.226Z", + "active": false, + "monitoredJobFetched": "2026-06-29T18:13:45.701Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "99d8c547-8a76-1923-4e59-d0a4d3841861", + "deviceShortId": "7585388", + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-06-29T18:17:45.884Z", + "locationId": "aebf4eaf-9a02-4936-86cb-af2f3d4ba9fc", + "data": { + "rmmUid": "99d8c547-8a76-1923-4e59-d0a4d3841861" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.106", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-06-29T13:44:20Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-20T19:44:33.383Z" + }, + { + "id": "8b7dd876-5993-4f9c-b716-0d0b706f85ba", + "name": null, + "hostname": "laptop-795f67gj", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.1.4", + "ipstring": "192.168.1.4", + "ipPub": "68.10.32.154", + "ipstringPub": "68.10.32.154", + "os": "Windows 11 Professional 24H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:05:28.535Z", + "active": true, + "monitoredJobFetched": "2026-07-05T16:01:27.182Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "5621a72f-fd8f-1f18-bb2b-ac4326486620", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:05:27.279Z", + "locationId": "beb180e1-2750-446c-a093-45021f575cfc", + "data": { + "rmmUid": "5621a72f-fd8f-1f18-bb2b-ac4326486620" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:14:04.464Z" + }, + { + "id": "9af568cb-44ca-4837-8301-b490eb7602a9", + "name": null, + "hostname": "laptop-8p7hdsei", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.3.101", + "ipstring": "192.168.3.101", + "ipPub": "72.211.21.217", + "ipstringPub": "72.211.21.217", + "os": "Windows 10 Pro for Workstations 2009 ProfessionalWorkstation 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:05:18.535Z", + "active": true, + "monitoredJobFetched": "2026-07-05T15:57:13.108Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": null, + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:05:13.673Z", + "locationId": "1dbd2b02-f7df-45d0-a7f2-18667f48447f", + "data": { + "rmmUid": null + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-26T03:44:14.771Z" + }, + { + "id": "0733025b-f4ce-4767-95ab-5e167550d46e", + "name": null, + "hostname": "laptop-drq5l558", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "10.0.20.237", + "ipstring": "10.0.20.237", + "ipPub": "184.191.143.62", + "ipstringPub": "184.191.143.62", + "os": "Windows 11 ProfessionalWorkstation 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:05:13.534Z", + "active": true, + "monitoredJobFetched": "2026-07-05T16:01:13.004Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "bf9f7d26-03ee-ee56-b85e-239b7b9675ef", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:05:13.330Z", + "locationId": "1dbd2b02-f7df-45d0-a7f2-18667f48447f", + "data": { + "rmmUid": "bf9f7d26-03ee-ee56-b85e-239b7b9675ef" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T13:35:58.721Z" + }, + { + "id": "acaf4ee3-43ed-4707-a5cd-f2bd2efa345a", + "name": null, + "hostname": "laptop-e0stjje8", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "10.0.20.80", + "ipstring": "10.0.20.80", + "ipPub": "184.191.143.62", + "ipstringPub": "184.191.143.62", + "os": "Windows 11 ProfessionalWorkstation 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:05:08.533Z", + "active": true, + "monitoredJobFetched": "2026-07-05T16:03:08.046Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "1e0dbb7d-8143-a7ef-8f3e-4c9f4fc43083", + "deviceShortId": "7229207", + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:05:08.092Z", + "locationId": "1dbd2b02-f7df-45d0-a7f2-18667f48447f", + "data": { + "rmmUid": "1e0dbb7d-8143-a7ef-8f3e-4c9f4fc43083" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:16:33.518Z" + }, + { + "id": "1aac2904-b4ec-4d52-9268-8fb1a54add53", + "name": null, + "hostname": "laptop-e5ekejt8", + "version": "3.17.1.4869", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "100.124.224.20", + "ipstring": "100.124.224.20", + "ipPub": "109.104.115.52", + "ipstringPub": "109.104.115.52", + "os": "Windows 11 Core 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:01:43.521Z", + "active": true, + "monitoredJobFetched": "2026-07-05T15:51:14.178Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "8caa07f6-3dbd-0429-74a7-2870a9cab9c6", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": false, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:01:40.367Z", + "locationId": "b8782731-4a15-4920-ba70-1a21a7b6b960", + "data": { + "rmmUid": "8caa07f6-3dbd-0429-74a7-2870a9cab9c6" + }, + "eppData": { + "dattoav": { + "data": { + "connected": false, + "engineReady": false, + "compatibility": "Unknown", + "rebootRequired": false + }, + "enabled": false, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-07-01T00:15:20.439Z" + }, + { + "id": "61ab4a9b-96f6-4a82-a327-6b1a0dcf8ae2", + "name": null, + "hostname": "laptop-rd47e88a", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.0.149", + "ipstring": "192.168.0.149", + "ipPub": "67.1.203.242", + "ipstringPub": "67.1.203.242", + "os": "Windows 11 Core 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-02T13:49:18.877Z", + "active": false, + "monitoredJobFetched": "2026-07-02T13:45:32.133Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "e59e4aed-a5e3-2d48-a602-90e0f11e4045", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-02T13:49:16.820Z", + "locationId": "64144044-9dc5-4747-b2c9-7ab15716f3ce", + "data": { + "rmmUid": "e59e4aed-a5e3-2d48-a602-90e0f11e4045" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.54", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.10", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-06-24T03:39:52Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-09T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": false, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-23T00:32:00.159Z" + }, + { + "id": "8325ec28-6e05-4381-9828-de39828d0f63", + "name": null, + "hostname": "laptop1", + "version": "3.17.1.4377", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": true, + "ip": "192.168.2.119", + "ipstring": "192.168.2.119", + "ipPub": "72.211.21.217", + "ipstringPub": "72.211.21.217", + "os": "Windows 11 Professional 24H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-05-08T17:30:20.078Z", + "active": false, + "monitoredJobFetched": "2026-01-16T22:47:04.269Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "c2cbb252-c048-3028-f702-b7027a2baf4f", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-05-08T17:30:15.247Z", + "locationId": "1dbd2b02-f7df-45d0-a7f2-18667f48447f", + "data": { + "rmmUid": "c2cbb252-c048-3028-f702-b7027a2baf4f" + }, + "eppData": { + "dattoav": { + "data": { + "eppVersion": "1.0.2604.8994", + "rtpVersion": "1.0.2604.8504", + "vdfVersion": "8.20.77.138", + "amsiVersion": "1.0.2604.2840", + "compatibility": "Unknown", + "engineVersion": "8.4.2.6", + "sentryVersion": "3.0.2603.2974", + "rebootRequired": false, + "vdfReleaseDate": "2026-05-07T09:39:14Z", + "firewallVersion": "1.0.2604.3973", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-04-28T00:00:00Z", + "quarantineVersion": "1.0.2604.2487", + "remediationVersion": "1.0.2604.3271", + "onDemandScanVersion": "1.0.2604.3709", + "netProtectionVersion": "1.0.2604.3181" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-04-06T15:27:44.841Z" + }, + { + "id": "579c26f4-ed35-468f-904e-f17a233783bb", + "name": null, + "hostname": "laptop2", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.2.118", + "ipstring": "192.168.2.118", + "ipPub": "184.191.143.62", + "ipstringPub": "184.191.143.62", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:06:03.536Z", + "active": true, + "monitoredJobFetched": "2026-07-05T16:05:58.595Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "b97aa81f-4f73-0576-d589-4165b22f3285", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:05:58.599Z", + "locationId": "1dbd2b02-f7df-45d0-a7f2-18667f48447f", + "data": { + "rmmUid": "b97aa81f-4f73-0576-d589-4165b22f3285" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T12:39:08.338Z" + }, + { + "id": "c1931065-a7ab-4b59-908e-5c351f3112b8", + "name": null, + "hostname": "laptop3", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "127.0.0.1", + "ipstring": "127.0.0.1", + "ipPub": "72.211.21.217", + "ipstringPub": "72.211.21.217", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-02T00:43:55.585Z", + "active": false, + "monitoredJobFetched": "2026-07-02T00:43:54.030Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "ae109b35-fef0-13f4-9d59-ffa912d97bc8", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-02T00:43:54.032Z", + "locationId": "1dbd2b02-f7df-45d0-a7f2-18667f48447f", + "data": { + "rmmUid": "ae109b35-fef0-13f4-9d59-ffa912d97bc8" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.124", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-01T07:35:42Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T19:02:43.158Z" + }, + { + "id": "3324e580-8d77-4e27-b0c6-d3caefe5fa18", + "name": null, + "hostname": "laptop4", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.3.89", + "ipstring": "192.168.3.89", + "ipPub": "72.211.21.217", + "ipstringPub": "72.211.21.217", + "os": "Windows 11 Professional 24H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:06:43.539Z", + "active": true, + "monitoredJobFetched": "2026-07-05T16:04:49.935Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "a70cdecd-2c8b-a3ca-2d5d-cdc6dd6b566f", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:06:39.533Z", + "locationId": "1dbd2b02-f7df-45d0-a7f2-18667f48447f", + "data": { + "rmmUid": "a70cdecd-2c8b-a3ca-2d5d-cdc6dd6b566f" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.150", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-04T13:11:44Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T07:54:02.715Z" + }, + { + "id": "6c2f05bf-fa79-4624-8f9c-84ce926f86d7", + "name": null, + "hostname": "lee10", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.6.3", + "ipstring": "192.168.6.3", + "ipPub": "67.206.163.122", + "ipstringPub": "67.206.163.122", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-06-27T03:02:31.158Z", + "active": false, + "monitoredJobFetched": "2026-06-27T02:56:30.435Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "50eea5f4-0c88-3064-8952-43b171beae1a", + "deviceShortId": "7486887", + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-06-27T03:02:30.993Z", + "locationId": "64144044-9dc5-4747-b2c9-7ab15716f3ce", + "data": { + "rmmUid": "50eea5f4-0c88-3064-8952-43b171beae1a" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.76", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-06-26T20:26:49Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": false, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T15:29:53.184Z" + }, + { + "id": "9047be1a-b38c-47df-ad99-55e730a84580", + "name": null, + "hostname": "maintenance-pc", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "10.0.20.96", + "ipstring": "10.0.20.96", + "ipPub": "184.191.143.62", + "ipstringPub": "184.191.143.62", + "os": "Windows 11 ProfessionalWorkstation 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-06-19T16:44:56.283Z", + "active": false, + "monitoredJobFetched": "2026-06-19T16:36:53.409Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "f7014509-1da1-7a0e-1096-b4058e1bf2a2", + "deviceShortId": "7229199", + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-06-19T16:44:54.030Z", + "locationId": "1dbd2b02-f7df-45d0-a7f2-18667f48447f", + "data": { + "rmmUid": "f7014509-1da1-7a0e-1096-b4058e1bf2a2" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.10", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.10", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-06-19T10:27:41Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-09T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:15:27.081Z" + }, + { + "id": "0462ff40-ce32-4839-8556-7bb9db7785d1", + "name": null, + "hostname": "mdirector-pc", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "10.0.20.71", + "ipstring": "10.0.20.71", + "ipPub": "184.191.143.62", + "ipstringPub": "184.191.143.62", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:06:03.536Z", + "active": true, + "monitoredJobFetched": "2026-07-05T16:04:00.176Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": null, + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:06:00.193Z", + "locationId": "1dbd2b02-f7df-45d0-a7f2-18667f48447f", + "data": { + "rmmUid": null + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.150", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-04T13:11:44Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-26T03:44:16.365Z" + }, + { + "id": "ef52d27a-26f2-4bb4-8ba4-340da82203dd", + "name": null, + "hostname": "megan", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "10.0.20.202", + "ipstring": "10.0.20.202", + "ipPub": "184.191.143.62", + "ipstringPub": "184.191.143.62", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:06:38.546Z", + "active": true, + "monitoredJobFetched": "2026-07-05T16:02:37.803Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "b89fcc26-ec87-ace9-d3fd-aa1186a98213", + "deviceShortId": "7229196", + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:06:37.829Z", + "locationId": "1dbd2b02-f7df-45d0-a7f2-18667f48447f", + "data": { + "rmmUid": "b89fcc26-ec87-ace9-d3fd-aa1186a98213" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:16:54.064Z" + }, + { + "id": "bb10099f-0d83-40fe-8179-7576ada3dedc", + "name": null, + "hostname": "memrecept-pc", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "10.0.20.97", + "ipstring": "10.0.20.97", + "ipPub": "184.191.143.62", + "ipstringPub": "184.191.143.62", + "os": "Windows 10 Pro 2009 Professional 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:06:03.536Z", + "active": true, + "monitoredJobFetched": "2026-07-05T15:59:58.845Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "8771a2ba-b688-75e4-be22-6346390b64e3", + "deviceShortId": "7229209", + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:05:59.347Z", + "locationId": "1dbd2b02-f7df-45d0-a7f2-18667f48447f", + "data": { + "rmmUid": "8771a2ba-b688-75e4-be22-6346390b64e3" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:17:03.093Z" + }, + { + "id": "4de2c560-9f8f-47c1-aa4b-060834607b74", + "name": null, + "hostname": "mike-think", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.1.5", + "ipstring": "192.168.1.5", + "ipPub": "184.180.184.254", + "ipstringPub": "184.180.184.254", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:06:13.537Z", + "active": true, + "monitoredJobFetched": "2026-07-05T16:00:10.475Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "9afc78d1-ad67-56a1-5559-ea9f1d746d60", + "deviceShortId": "7585719", + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:06:10.979Z", + "locationId": "d90a4c65-fde1-43fd-955c-2b5cdeff11ae", + "data": { + "rmmUid": "9afc78d1-ad67-56a1-5559-ea9f1d746d60" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:16:24.414Z" + }, + { + "id": "963178af-23b1-4bee-90e8-f9a6dbac7aec", + "name": null, + "hostname": "mj-paralegal", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.1.136", + "ipstring": "192.168.1.136", + "ipPub": "67.212.194.147", + "ipstringPub": "67.212.194.147", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:05:13.534Z", + "active": true, + "monitoredJobFetched": "2026-07-05T15:57:09.581Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": null, + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:05:09.805Z", + "locationId": "3b844ef0-d792-4be9-bc0e-7d4848b99180", + "data": {}, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-29T21:29:53.467Z" + }, + { + "id": "16b51f1f-feb9-409b-9f0b-adbfa843acc1", + "name": null, + "hostname": "modern_stile_20", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "10.10.8.115", + "ipstring": "10.10.8.115", + "ipPub": "98.97.41.103", + "ipstringPub": "98.97.41.103", + "os": "Windows 11 Professional 24H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-06-30T18:18:06.166Z", + "active": false, + "monitoredJobFetched": "2026-06-30T18:09:08.089Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": null, + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-06-30T18:18:02.520Z", + "locationId": "d649e02b-91db-4b3f-a481-86000b823c14", + "data": { + "rmmUid": null + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.116", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-06-30T11:46:46Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-22T15:23:13.079Z" + }, + { + "id": "bf06b084-5c71-4b2f-8c12-e18186866644", + "name": null, + "hostname": "my9-pc", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.0.92", + "ipstring": "192.168.0.92", + "ipPub": "67.206.163.122", + "ipstringPub": "67.206.163.122", + "os": "Windows 10 Pro 2009 Professional 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:05:53.536Z", + "active": true, + "monitoredJobFetched": "2026-07-05T16:05:48.895Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "1b6b9f8d-a1a2-a0eb-40aa-d65c91c3bd01", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:05:48.897Z", + "locationId": "64144044-9dc5-4747-b2c9-7ab15716f3ce", + "data": { + "rmmUid": "1b6b9f8d-a1a2-a0eb-40aa-d65c91c3bd01" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": false, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:14:48.259Z" + }, + { + "id": "85cd3d0e-43f1-42f5-b4bc-7aa083c06ac9", + "name": null, + "hostname": "neptune", + "version": "3.17.1.5311", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "172.16.3.11", + "ipstring": "172.16.3.11", + "ipPub": "67.206.163.122", + "ipstringPub": "67.206.163.122", + "os": "Windows Server 2022 Datacenter 2009 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-05-16T14:53:50.497Z", + "active": false, + "monitoredJobFetched": "2026-05-16T14:53:46.942Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "250bded0-d0e5-2a1f-5489-a84600bd223f", + "deviceShortId": null, + "deviceGroupId": "002ad7ee-492c-4a7f-aa60-042044ab31bf", + "isolated": false, + "dattoAvEnabled": false, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-05-16T14:53:46.944Z", + "locationId": "b2b5edcc-fe97-4c6a-9607-a0b11490de44", + "data": { + "rmmUid": null + }, + "eppData": { + "dattoav": { + "data": null, + "enabled": false, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": false, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": null + }, + { + "id": "23c3c36e-219a-4c4a-a30c-5dc121e3151e", + "name": null, + "hostname": "nurseassist", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.3.254", + "ipstring": "192.168.3.254", + "ipPub": "184.191.143.62", + "ipstringPub": "184.191.143.62", + "os": "Windows 11 ProfessionalWorkstation 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-04T00:11:47.899Z", + "active": false, + "monitoredJobFetched": "2026-07-03T23:57:42.208Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "18322340-67fc-40c8-63a9-1e32e85dbdff", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-04T00:11:43.126Z", + "locationId": "1dbd2b02-f7df-45d0-a7f2-18667f48447f", + "data": { + "rmmUid": "18322340-67fc-40c8-63a9-1e32e85dbdff" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.140", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-03T13:13:19Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-26T15:28:49.889Z" + }, + { + "id": "e966e772-916d-4d6c-9046-d11204d871d0", + "name": null, + "hostname": "nursestation-pc", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "10.0.20.180", + "ipstring": "10.0.20.180", + "ipPub": "184.191.143.62", + "ipstringPub": "184.191.143.62", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:06:43.539Z", + "active": true, + "monitoredJobFetched": "2026-07-05T15:56:38.055Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "ff4db31a-a8f3-c991-9cbf-673cb4d4544b", + "deviceShortId": "7229198", + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:06:38.542Z", + "locationId": "1dbd2b02-f7df-45d0-a7f2-18667f48447f", + "data": { + "rmmUid": "ff4db31a-a8f3-c991-9cbf-673cb4d4544b" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:15:43.733Z" + }, + { + "id": "3fdfd912-bfcb-42f6-afdb-39a0e9b918a6", + "name": null, + "hostname": "office1", + "version": "3.17.1.4968", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.0.34", + "ipstring": "192.168.0.34", + "ipPub": "72.194.57.2", + "ipstringPub": "72.194.57.2", + "os": "Windows 10 Pro 2009 Professional 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-04-15T18:19:30.033Z", + "active": false, + "monitoredJobFetched": "2026-04-15T18:09:28.986Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "8654e7d9-35b9-a3b2-aaa0-c54828d3a530", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-04-15T18:19:29.776Z", + "locationId": "c56026f0-b174-4f84-9dc4-cf8cffa49b74", + "data": { + "rmmUid": "8654e7d9-35b9-a3b2-aaa0-c54828d3a530" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "engineReady": false, + "compatibility": "Unknown", + "rebootRequired": false + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-04-03T04:41:19.639Z" + }, + { + "id": "95edb584-e795-4cf6-92a5-c08edd1c0b4b", + "name": null, + "hostname": "ordersty", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "172.16.9.121", + "ipstring": "172.16.9.121", + "ipPub": "4.18.160.106", + "ipstringPub": "4.18.160.106", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:06:08.537Z", + "active": true, + "monitoredJobFetched": "2026-07-05T15:54:05.296Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "3179a8a1-688b-76bd-1fa3-e88d2cfe0ee8", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:06:06.074Z", + "locationId": "a29f3049-64fa-4593-9e3c-fe0519a53dee", + "data": { + "rmmUid": "3179a8a1-688b-76bd-1fa3-e88d2cfe0ee8" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:14:23.938Z" + }, + { + "id": "470e8742-3495-4a33-ab24-dd87c3a81d2d", + "name": null, + "hostname": "pbx.intranet.dataforth.com", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.100.196", + "ipstring": "192.168.100.196", + "ipPub": "67.206.163.122", + "ipstringPub": "67.206.163.122", + "os": "Debian Linux 12.0.0 Bookworm", + "osWindows": false, + "osOsx": false, + "osLinux": true, + "osOther": false, + "heartbeat": "2026-07-05T16:06:08.537Z", + "active": true, + "monitoredJobFetched": "2026-01-22T13:19:23.009Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "32e85967-2cd9-c2b9-996b-9c7214d4660c", + "deviceShortId": "7773645", + "deviceGroupId": null, + "isolated": false, + "dattoAvEnabled": false, + "dnsSecureEnabled": false, + "dnsSecureLastEnabled": null, + "locationId": "64144044-9dc5-4747-b2c9-7ab15716f3ce", + "data": { + "rmmUid": "32e85967-2cd9-c2b9-996b-9c7214d4660c" + }, + "eppData": { + "dattoav": { + "data": { + "compatibility": { + "Unsupported": null + } + }, + "enabled": false, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": null, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:14:37.851Z" + }, + { + "id": "d6fc8814-d1c2-41f2-9973-dba5683d9ee3", + "name": null, + "hostname": "pierce", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "10.0.4.77", + "ipstring": "10.0.4.77", + "ipPub": "72.24.118.229", + "ipstringPub": "72.24.118.229", + "os": "Windows 11 Professional 24H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T06:14:20.868Z", + "active": false, + "monitoredJobFetched": "2026-07-05T06:02:19.412Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "d96ce9c3-3938-65c3-67a6-bf3c39cf4b5a", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T06:14:20.291Z", + "locationId": "bb3db4c4-8db9-4f51-beee-2150f5e9b820", + "data": { + "rmmUid": "d96ce9c3-3938-65c3-67a6-bf3c39cf4b5a" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.150", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-04T13:11:44Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T11:14:14.880Z" + }, + { + "id": "514140fd-1474-4fad-a5e7-eda0b026557e", + "name": null, + "hostname": "purchasingcomp", + "version": "3.17.1.4968", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.0.71", + "ipstring": "192.168.0.71", + "ipPub": "72.194.57.2", + "ipstringPub": "72.194.57.2", + "os": "Windows 10 Pro 2009 Professional 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-04-15T21:07:37.261Z", + "active": false, + "monitoredJobFetched": "2026-04-15T21:01:33.196Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "40a064c2-817e-1808-978b-2ed19c970f27", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-04-15T21:07:34.309Z", + "locationId": "c56026f0-b174-4f84-9dc4-cf8cffa49b74", + "data": { + "rmmUid": "40a064c2-817e-1808-978b-2ed19c970f27" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "engineReady": false, + "compatibility": "Unknown", + "rebootRequired": false + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-04-03T04:42:27.679Z" + }, + { + "id": "f364c0dd-3a21-47ba-9f28-21a9092a8159", + "name": null, + "hostname": "qcinspection", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.0.73", + "ipstring": "192.168.0.73", + "ipPub": "67.206.163.122", + "ipstringPub": "67.206.163.122", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-02T18:25:55.173Z", + "active": false, + "monitoredJobFetched": "2026-07-02T18:25:53.884Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "982d009c-36fd-9eda-c281-6afab9358573", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-02T18:25:53.886Z", + "locationId": "64144044-9dc5-4747-b2c9-7ab15716f3ce", + "data": { + "rmmUid": "982d009c-36fd-9eda-c281-6afab9358573" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.132", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-02T11:36:05Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": false, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T13:35:43.546Z" + }, + { + "id": "98caec5a-b814-4e83-9e99-7a2984dfe54f", + "name": null, + "hostname": "randiwork", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.22.142", + "ipstring": "192.168.22.142", + "ipPub": "72.219.226.171", + "ipstringPub": "72.219.226.171", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T15:45:33.465Z", + "active": false, + "monitoredJobFetched": "2026-07-05T15:36:30.425Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "7bd0cc3e-aa47-9ca2-a838-10cf7bb5fca4", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T15:45:30.550Z", + "locationId": "beb180e1-2750-446c-a093-45021f575cfc", + "data": { + "rmmUid": "7bd0cc3e-aa47-9ca2-a838-10cf7bb5fca4" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.150", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-04T13:11:44Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:15:13.978Z" + }, + { + "id": "e3fb71f1-a4e2-4c88-b2ec-6464fd4b0842", + "name": null, + "hostname": "receptionist-pc", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "10.0.20.68", + "ipstring": "10.0.20.68", + "ipPub": "184.191.143.62", + "ipstringPub": "184.191.143.62", + "os": "Windows 11 Professional 23H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:06:43.539Z", + "active": true, + "monitoredJobFetched": "2026-07-05T15:58:40.877Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": null, + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:06:41.273Z", + "locationId": "1dbd2b02-f7df-45d0-a7f2-18667f48447f", + "data": { + "rmmUid": null + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.150", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-04T13:11:44Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-26T03:56:21.456Z" + }, + { + "id": "df5deaaf-2f7c-4e19-8050-ea5aeeb40f11", + "name": null, + "hostname": "receptionist-pc", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "10.0.20.102", + "ipstring": "10.0.20.102", + "ipPub": "184.191.143.62", + "ipstringPub": "184.191.143.62", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:06:08.537Z", + "active": true, + "monitoredJobFetched": "2026-07-05T15:56:03.541Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "6cf2d36a-c6f1-9dcb-99f6-3d2cfb812c63", + "deviceShortId": "7229211", + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:06:04.416Z", + "locationId": "1dbd2b02-f7df-45d0-a7f2-18667f48447f", + "data": { + "rmmUid": "6cf2d36a-c6f1-9dcb-99f6-3d2cfb812c63" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:15:43.805Z" + }, + { + "id": "b85896c5-9c18-424a-99e4-d668e173b188", + "name": null, + "hostname": "rednourcarrievirt", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.10.187", + "ipstring": "192.168.10.187", + "ipPub": "67.212.194.147", + "ipstringPub": "67.212.194.147", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:05:53.536Z", + "active": true, + "monitoredJobFetched": "2026-07-05T16:03:53.248Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "c53a5131-9aaf-ed22-d485-b8c48d7e82a3", + "deviceShortId": "7478185", + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:05:53.517Z", + "locationId": "114866f3-0cf5-4c64-a42b-116f2ded99cd", + "data": { + "rmmUid": "c53a5131-9aaf-ed22-d485-b8c48d7e82a3" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:14:45.968Z" + }, + { + "id": "92babb9b-5c54-4c4f-8551-b4980e3ceed0", + "name": null, + "hostname": "rgi-dc", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.2.5", + "ipstring": "192.168.2.5", + "ipPub": "67.206.161.54", + "ipstringPub": "67.206.161.54", + "os": "Windows Server 2016 Standard 1607 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:06:18.537Z", + "active": true, + "monitoredJobFetched": "2026-07-05T16:00:16.635Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": null, + "deviceShortId": null, + "deviceGroupId": "002ad7ee-492c-4a7f-aa60-042044ab31bf", + "isolated": false, + "dattoAvEnabled": false, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:06:17.187Z", + "locationId": "436d7e55-d179-4b90-be1b-3636ef417596", + "data": {}, + "eppData": { + "dattoav": { + "data": { + "connected": false, + "engineReady": true, + "compatibility": "Modern", + "rebootRequired": true + }, + "enabled": false, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-07-05T01:30:06.519Z" + }, + { + "id": "b98b3ba0-5f82-466f-911a-5a6b24cdbae7", + "name": null, + "hostname": "rmm-test-machine", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "172.20.48.68", + "ipstring": "172.20.48.68", + "ipPub": "98.168.18.21", + "ipstringPub": "98.168.18.21", + "os": "Windows 11 EnterpriseEval 22H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-06-28T04:42:46.919Z", + "active": false, + "monitoredJobFetched": "2026-06-28T04:36:42.494Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": null, + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-06-28T04:42:42.840Z", + "locationId": "c3ba0672-e6bb-4784-9a37-2f434fc6f08c", + "data": {}, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.88", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-06-27T23:01:41Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-25T19:57:08.592Z" + }, + { + "id": "49d114b2-e0a1-4cb6-b54b-b83e9c1614a8", + "name": null, + "hostname": "robert-dell3540", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.12.124", + "ipstring": "192.168.12.124", + "ipPub": "172.56.87.186", + "ipstringPub": "172.56.87.186", + "os": "Windows 11 Professional 23H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:06:03.536Z", + "active": true, + "monitoredJobFetched": "2026-07-05T15:54:01.737Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "dd04cd3f-aab8-5a57-b8c8-369dbeecc3db", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:06:02.637Z", + "locationId": "bb3db4c4-8db9-4f51-beee-2150f5e9b820", + "data": { + "rmmUid": "dd04cd3f-aab8-5a57-b8c8-369dbeecc3db" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:52:32.542Z" + }, + { + "id": "290aece4-ce08-48ae-8f9d-cb5bca5eff53", + "name": null, + "hostname": "rtg-host01", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.2.113", + "ipstring": "192.168.2.113", + "ipPub": "67.206.161.54", + "ipstringPub": "67.206.161.54", + "os": "Windows Server 2016 Essentials 1607 ServerSolution 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:06:38.546Z", + "active": true, + "monitoredJobFetched": "2026-07-05T15:54:32.879Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": null, + "deviceShortId": null, + "deviceGroupId": "002ad7ee-492c-4a7f-aa60-042044ab31bf", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:06:34.104Z", + "locationId": "436d7e55-d179-4b90-be1b-3636ef417596", + "data": {}, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": { + "engine": "1.1.26050.11", + "product": "4.18.26050.15", + "service": "4.18.26050.15", + "nisEngine": "1.1.26050.11", + "asSignature": "1.453.428.0", + "avSignature": "1.453.428.0", + "nisSignature": "1.453.428.0", + "fileSystemFilter": "4.18.26050.15" + }, + "enabled": true, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-07-05T01:25:53.497Z" + }, + { + "id": "a22ad4b0-d46c-47e8-98a8-63cbfd6e2b58", + "name": null, + "hostname": "russo-srv", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "10.0.0.224", + "ipstring": "10.0.0.224", + "ipPub": "70.163.119.6", + "ipstringPub": "70.163.119.6", + "os": "Windows Server 2016 Standard 1607 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:06:48.539Z", + "active": true, + "monitoredJobFetched": "2026-07-05T16:06:46.266Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "6985f321-dfef-966e-5a71-c5ff510d113f", + "deviceShortId": "7807310", + "deviceGroupId": "002ad7ee-492c-4a7f-aa60-042044ab31bf", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:06:46.269Z", + "locationId": "550eb7e5-7206-4bb6-b81c-a91d64bcb3f6", + "data": { + "rmmUid": "6985f321-dfef-966e-5a71-c5ff510d113f" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:14:53.173Z" + }, + { + "id": "76a8f99d-fa3e-4fb2-af01-7ca4703c6bcc", + "name": null, + "hostname": "sabronbbloffice", + "version": "3.17.1.4968", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": true, + "ip": "192.168.86.41", + "ipstring": "192.168.86.41", + "ipPub": "76.92.197.197", + "ipstringPub": "76.92.197.197", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-02T17:34:04.919Z", + "active": false, + "monitoredJobFetched": "2026-04-17T04:54:40.499Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "eed2dcc3-b7c5-23ef-9e7b-fadbe361d1b0", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": false, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-02T17:34:01.670Z", + "locationId": "ce208436-0cfa-49fe-9ed0-44c44d6292f6", + "data": { + "rmmUid": "eed2dcc3-b7c5-23ef-9e7b-fadbe361d1b0" + }, + "eppData": { + "dattoav": { + "data": { + "connected": false, + "engineReady": false, + "compatibility": "Unknown", + "rebootRequired": false + }, + "enabled": false, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": false, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-04-17T04:58:41.863Z" + }, + { + "id": "57165b3c-1535-4166-aaae-78a43802d335", + "name": null, + "hostname": "safesite-lt-02", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "10.110.83.225", + "ipstring": "10.110.83.225", + "ipPub": "174.255.144.67", + "ipstringPub": "174.255.144.67", + "os": "Windows 10 Pro 2009 Professional 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-06-30T14:11:09.941Z", + "active": false, + "monitoredJobFetched": "2026-06-30T14:01:09.346Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "192c838d-64fd-112e-0b58-8c03e400a6b7", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-06-30T14:11:09.395Z", + "locationId": "bb3db4c4-8db9-4f51-beee-2150f5e9b820", + "data": { + "rmmUid": "192c838d-64fd-112e-0b58-8c03e400a6b7" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.114", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-06-30T07:16:24Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T13:38:28.762Z" + }, + { + "id": "0bad7059-90dd-4889-aaa7-3047b7076293", + "name": null, + "hostname": "safesite-lt04", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.0.126", + "ipstring": "192.168.0.126", + "ipPub": "47.48.84.90", + "ipstringPub": "47.48.84.90", + "os": "Windows 11 Core 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T07:03:06.200Z", + "active": false, + "monitoredJobFetched": "2026-07-05T06:57:01.155Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "c8800596-6739-5384-9f4b-0706008f97f8", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T07:03:01.407Z", + "locationId": "bb3db4c4-8db9-4f51-beee-2150f5e9b820", + "data": { + "rmmUid": "c8800596-6739-5384-9f4b-0706008f97f8" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.150", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-04T13:11:44Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T18:38:02.637Z" + }, + { + "id": "a88bce90-3ba0-416d-a28f-72c403b3d39a", + "name": null, + "hostname": "sales4-pc", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "10.0.20.203", + "ipstring": "10.0.20.203", + "ipPub": "184.191.143.62", + "ipstringPub": "184.191.143.62", + "os": "Windows 11 Core 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-04T02:27:48.437Z", + "active": false, + "monitoredJobFetched": "2026-07-04T02:19:45.203Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "4b8391b2-da5a-1d91-273a-31864ba35b10", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-04T02:27:45.774Z", + "locationId": "1dbd2b02-f7df-45d0-a7f2-18667f48447f", + "data": { + "rmmUid": "4b8391b2-da5a-1d91-273a-31864ba35b10" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.140", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-03T13:13:19Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-21T14:46:53.443Z" + }, + { + "id": "1908c378-51c1-4716-9baf-f73bbeed3e63", + "name": null, + "hostname": "server19", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.0.19", + "ipstring": "192.168.0.19", + "ipPub": "4.18.160.106", + "ipstringPub": "4.18.160.106", + "os": "Windows Server 2012 R2 Standard 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:06:58.539Z", + "active": true, + "monitoredJobFetched": "2026-07-05T15:58:56.067Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "d5e1d157-614e-ce68-6a94-a76bcd61a3da", + "deviceShortId": null, + "deviceGroupId": "002ad7ee-492c-4a7f-aa60-042044ab31bf", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:06:56.537Z", + "locationId": "a29f3049-64fa-4593-9e3c-fe0519a53dee", + "data": { + "rmmUid": "d5e1d157-614e-ce68-6a94-a76bcd61a3da" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2301.440", + "rtpVersion": "1.0.2301.369", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2301.79", + "engineReady": true, + "compatibility": "Legacy", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2301.60", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2301.129", + "coreEngineVersion": "1.0.2.8", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2211.80", + "remediationVersion": "1.0.2301.313", + "onDemandScanVersion": "1.0.2301.292", + "netProtectionVersion": "1.0.2301.234" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:14:51.317Z" + }, + { + "id": "6d0b6f9a-170f-4780-98a6-6971c208477e", + "name": null, + "hostname": "ss-sp2", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.1.171", + "ipstring": "192.168.1.171", + "ipPub": "70.177.5.164", + "ipstringPub": "70.177.5.164", + "os": "Windows Server 2016 Standard 1607 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:05:58.536Z", + "active": true, + "monitoredJobFetched": "2026-07-05T15:53:53.436Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "6040373d-9664-5afd-b5ad-479138bd1121", + "deviceShortId": null, + "deviceGroupId": null, + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:05:54.228Z", + "locationId": "bb3db4c4-8db9-4f51-beee-2150f5e9b820", + "data": { + "rmmUid": "6040373d-9664-5afd-b5ad-479138bd1121" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:14:56.170Z" + }, + { + "id": "8477cf9f-62be-4700-8972-5a2922a8e265", + "name": null, + "hostname": "ss-srv1", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.1.74", + "ipstring": "192.168.1.74", + "ipPub": "70.177.5.164", + "ipstringPub": "70.177.5.164", + "os": "Windows Server 2022 Standard 2009 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:05:23.535Z", + "active": true, + "monitoredJobFetched": "2026-07-05T15:55:17.789Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "a6599c64-0915-155c-6830-b587b504c5a7", + "deviceShortId": "7484784", + "deviceGroupId": null, + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:05:18.603Z", + "locationId": "bb3db4c4-8db9-4f51-beee-2150f5e9b820", + "data": { + "rmmUid": "a6599c64-0915-155c-6830-b587b504c5a7" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:17:00.474Z" + }, + { + "id": "8d6444ab-a7f5-40d6-b997-09f69ce0083b", + "name": null, + "hostname": "station20-pc", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.0.129", + "ipstring": "192.168.0.129", + "ipPub": "67.206.163.122", + "ipstringPub": "67.206.163.122", + "os": "Windows 10 Pro 2009 Professional 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:06:18.537Z", + "active": true, + "monitoredJobFetched": "2026-07-05T16:06:18.355Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "4f0ba06d-ae5d-60f4-5224-2a3caaed5221", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:06:18.357Z", + "locationId": "64144044-9dc5-4747-b2c9-7ab15716f3ce", + "data": { + "rmmUid": "4f0ba06d-ae5d-60f4-5224-2a3caaed5221" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": false, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:15:14.547Z" + }, + { + "id": "acc563c8-9a7d-4cba-8b21-40e312ace7a5", + "name": null, + "hostname": "station21", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.0.79", + "ipstring": "192.168.0.79", + "ipPub": "67.206.163.122", + "ipstringPub": "67.206.163.122", + "os": "Windows 10 Pro 2009 Professional 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:05:13.534Z", + "active": true, + "monitoredJobFetched": "2026-07-05T16:03:12.424Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "a8e2275a-0557-561f-cb7d-29d642cd8114", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:05:12.628Z", + "locationId": "64144044-9dc5-4747-b2c9-7ab15716f3ce", + "data": { + "rmmUid": "a8e2275a-0557-561f-cb7d-29d642cd8114" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.1.194", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.6", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-06-11T11:44:51Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-04-28T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": false, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:16:13.709Z" + }, + { + "id": "a96af4fc-1edf-4874-883c-72d7ef0bcf29", + "name": null, + "hostname": "station43", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.0.43", + "ipstring": "192.168.0.43", + "ipPub": "67.206.163.122", + "ipstringPub": "67.206.163.122", + "os": "Windows 10 Pro 2009 Professional 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:05:58.536Z", + "active": true, + "monitoredJobFetched": "2026-07-05T15:51:52.637Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "2721bfa4-f879-4b82-7424-55b2d68454f3", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:05:53.668Z", + "locationId": "64144044-9dc5-4747-b2c9-7ab15716f3ce", + "data": { + "rmmUid": "2721bfa4-f879-4b82-7424-55b2d68454f3" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": false, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:14:33.814Z" + }, + { + "id": "23bfeedb-7b41-46a8-899d-37a860476c7b", + "name": null, + "hostname": "station_41", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.0.42", + "ipstring": "192.168.0.42", + "ipPub": "67.206.163.122", + "ipstringPub": "67.206.163.122", + "os": "Windows 11 Professional 24H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:05:33.534Z", + "active": true, + "monitoredJobFetched": "2026-07-05T15:59:30.537Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "2d368049-2cef-c543-7e38-47b8dc123ec0", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:05:30.811Z", + "locationId": "64144044-9dc5-4747-b2c9-7ab15716f3ce", + "data": { + "rmmUid": "2d368049-2cef-c543-7e38-47b8dc123ec0" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": false, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:14:56.428Z" + }, + { + "id": "f0bf7585-12e3-469d-98d6-463eec10d9e2", + "name": null, + "hostname": "steve2020", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "10.0.0.157", + "ipstring": "10.0.0.157", + "ipPub": "70.163.119.6", + "ipstringPub": "70.163.119.6", + "os": "Windows 10 Pro 2009 Professional 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:06:38.546Z", + "active": true, + "monitoredJobFetched": "2026-07-05T16:02:34.689Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": null, + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:06:34.804Z", + "locationId": "550eb7e5-7206-4bb6-b81c-a91d64bcb3f6", + "data": { + "rmmUid": null + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:16:51.751Z" + }, + { + "id": "a4867e9d-1a5b-4c93-93fd-15bc405fc904", + "name": null, + "hostname": "susan-think", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.1.3", + "ipstring": "192.168.1.3", + "ipPub": "184.180.184.254", + "ipstringPub": "184.180.184.254", + "os": "Windows 10 Pro 2009 Professional 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:05:28.535Z", + "active": true, + "monitoredJobFetched": "2026-07-05T15:59:27.237Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "897b7d54-eeb7-5b6b-f410-4956c1470620", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:05:27.528Z", + "locationId": "d90a4c65-fde1-43fd-955c-2b5cdeff11ae", + "data": { + "rmmUid": "897b7d54-eeb7-5b6b-f410-4956c1470620" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:15:26.642Z" + }, + { + "id": "be7d84b9-07de-4cfa-9baf-c5bca90bfbc8", + "name": null, + "hostname": "tablet-c0be64rn", + "version": "3.17.1.5409", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": true, + "ip": "127.0.0.1", + "ipstring": "127.0.0.1", + "ipPub": "71.35.5.188", + "ipstringPub": "71.35.5.188", + "os": "Windows 11 Professional 23H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-03T19:09:11.537Z", + "active": false, + "monitoredJobFetched": "2026-06-16T01:06:23.246Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "297e8484-906a-5882-b795-cccab78a1480", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-03T19:09:06.562Z", + "locationId": "4cd39e2e-0c1d-49e1-9773-a12958a4d55a", + "data": { + "rmmUid": "297e8484-906a-5882-b795-cccab78a1480" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.1.238", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.6", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-06-15T16:25:15Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-04-28T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-07-03T19:09:06.559Z" + }, + { + "id": "78be2136-cfbe-410e-a11e-dc3e5956b788", + "name": null, + "hostname": "test01", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.0.167", + "ipstring": "192.168.0.167", + "ipPub": "67.206.163.122", + "ipstringPub": "67.206.163.122", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:05:23.535Z", + "active": true, + "monitoredJobFetched": "2026-07-05T15:51:21.593Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "ceb4d7ee-19bc-106c-861b-4dd10b7c64af", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:05:22.782Z", + "locationId": "64144044-9dc5-4747-b2c9-7ab15716f3ce", + "data": { + "rmmUid": "ceb4d7ee-19bc-106c-861b-4dd10b7c64af" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": false, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:15:10.742Z" + }, + { + "id": "718e3546-7607-4d01-aedb-db9c80de5cdb", + "name": null, + "hostname": "thinkpad-jill", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.1.5", + "ipstring": "192.168.1.5", + "ipPub": "68.10.32.154", + "ipstringPub": "68.10.32.154", + "os": "Windows 11 Professional 24H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T03:00:14.763Z", + "active": false, + "monitoredJobFetched": "2026-07-05T02:58:11.259Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "06defaeb-fee5-2659-f513-736d9ea36edc", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T03:00:11.188Z", + "locationId": "beb180e1-2750-446c-a093-45021f575cfc", + "data": { + "rmmUid": "06defaeb-fee5-2659-f513-736d9ea36edc" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.150", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-04T13:11:44Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:15:57.609Z" + }, + { + "id": "68414f1c-8605-47d9-b486-c5eb25e60d09", + "name": null, + "hostname": "tpm-pc", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.0.144", + "ipstring": "192.168.0.144", + "ipPub": "24.251.214.125", + "ipstringPub": "24.251.214.125", + "os": "Windows 11 Professional 24H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:06:23.538Z", + "active": true, + "monitoredJobFetched": "2026-07-05T16:02:21.481Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "9933806f-12ad-009a-53dc-1d71a1ba4eeb", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:06:21.753Z", + "locationId": "0d56c0b4-c21b-4917-9e75-58aaee72748c", + "data": { + "rmmUid": "9933806f-12ad-009a-53dc-1d71a1ba4eeb" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T14:17:26.268Z" + }, + { + "id": "1370c2c0-8f58-413f-b16e-5bdb0274d7a6", + "name": null, + "hostname": "travis", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "127.0.0.1", + "ipstring": "127.0.0.1", + "ipPub": "70.177.5.164", + "ipstringPub": "70.177.5.164", + "os": "Windows 11 Professional 24H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T12:28:02.642Z", + "active": false, + "monitoredJobFetched": "2026-07-05T12:27:59.043Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "f41e1eb9-2f51-6142-15bf-01e5f0e3d659", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T12:27:59.128Z", + "locationId": "bb3db4c4-8db9-4f51-beee-2150f5e9b820", + "data": { + "rmmUid": "f41e1eb9-2f51-6142-15bf-01e5f0e3d659" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.150", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-04T13:11:44Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T08:16:05.996Z" + }, + { + "id": "831bc70c-69b4-413d-8af8-4e8f5a91b947", + "name": null, + "hostname": "vwp-chrisg-l", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.1.92", + "ipstring": "192.168.1.92", + "ipPub": "174.17.163.129", + "ipstringPub": "174.17.163.129", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:01:43.521Z", + "active": true, + "monitoredJobFetched": "2026-07-05T15:59:48.622Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "38288d54-90f0-623e-5114-105b7eea002e", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:01:43.321Z", + "locationId": "a29f3049-64fa-4593-9e3c-fe0519a53dee", + "data": { + "rmmUid": "38288d54-90f0-623e-5114-105b7eea002e" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.150", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-04T13:11:44Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T17:45:07.750Z" + }, + { + "id": "00c91675-ab4b-47ea-9343-874a4a97e7e0", + "name": null, + "hostname": "vwp-dc1", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "172.16.9.2", + "ipstring": "172.16.9.2", + "ipPub": "4.18.160.106", + "ipstringPub": "4.18.160.106", + "os": "Windows Server 2019 Standard 1809 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:05:18.535Z", + "active": true, + "monitoredJobFetched": "2026-07-05T15:55:12.920Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "22ae4ec3-cca4-fa28-71b5-b9eb7ed30907", + "deviceShortId": null, + "deviceGroupId": "002ad7ee-492c-4a7f-aa60-042044ab31bf", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:05:13.547Z", + "locationId": "a29f3049-64fa-4593-9e3c-fe0519a53dee", + "data": { + "rmmUid": "22ae4ec3-cca4-fa28-71b5-b9eb7ed30907" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:14:25.817Z" + }, + { + "id": "71474870-d11f-407d-8dc3-877158ff2f28", + "name": null, + "hostname": "vwp-files", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.0.20", + "ipstring": "192.168.0.20", + "ipPub": "4.18.160.106", + "ipstringPub": "4.18.160.106", + "os": "Windows Server 2019 Standard 1809 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:06:53.539Z", + "active": true, + "monitoredJobFetched": "2026-07-05T15:52:51.434Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "5e03ddbf-7417-8a4b-7fad-70705a71e751", + "deviceShortId": null, + "deviceGroupId": "002ad7ee-492c-4a7f-aa60-042044ab31bf", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:06:52.267Z", + "locationId": "a29f3049-64fa-4593-9e3c-fe0519a53dee", + "data": { + "rmmUid": "5e03ddbf-7417-8a4b-7fad-70705a71e751" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:15:29.099Z" + }, + { + "id": "3877d67a-d638-477b-8ab9-f3e8600825fa", + "name": null, + "hostname": "vwp-fin", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.0.26", + "ipstring": "192.168.0.26", + "ipPub": "4.18.160.106", + "ipstringPub": "4.18.160.106", + "os": "Windows Server 2019 Standard 1809 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:05:53.536Z", + "active": true, + "monitoredJobFetched": "2026-07-05T15:53:49.905Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "e2faefe2-2ab5-af73-7597-cea3735cb746", + "deviceShortId": null, + "deviceGroupId": "002ad7ee-492c-4a7f-aa60-042044ab31bf", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:05:50.292Z", + "locationId": "a29f3049-64fa-4593-9e3c-fe0519a53dee", + "data": { + "rmmUid": "e2faefe2-2ab5-af73-7597-cea3735cb746" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:15:03.190Z" + }, + { + "id": "70649726-37a8-40ba-825b-40b6df0136f8", + "name": null, + "hostname": "vwp-hyperv1", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "172.16.9.184", + "ipstring": "172.16.9.184", + "ipPub": "4.18.160.106", + "ipstringPub": "4.18.160.106", + "os": "Windows Server 2025 Standard 2009 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:06:48.539Z", + "active": true, + "monitoredJobFetched": "2026-07-05T15:54:43.566Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "d1903f3b-e113-9481-e1cf-cb9341ba8ce3", + "deviceShortId": null, + "deviceGroupId": "002ad7ee-492c-4a7f-aa60-042044ab31bf", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:06:44.276Z", + "locationId": "a29f3049-64fa-4593-9e3c-fe0519a53dee", + "data": { + "rmmUid": "d1903f3b-e113-9481-e1cf-cb9341ba8ce3" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:15:20.021Z" + }, + { + "id": "04b2cb2c-1f63-45ce-a98b-3068111281cc", + "name": null, + "hostname": "vwp-jesseiii", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "172.16.9.165", + "ipstring": "172.16.9.165", + "ipPub": "4.18.160.106", + "ipstringPub": "4.18.160.106", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:06:58.539Z", + "active": true, + "monitoredJobFetched": "2026-07-05T15:58:54.302Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": null, + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:06:55.487Z", + "locationId": "a29f3049-64fa-4593-9e3c-fe0519a53dee", + "data": { + "rmmUid": null + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:18:22.186Z" + }, + { + "id": "9e706f8b-03c5-4a46-b660-dfc1b83b14e3", + "name": null, + "hostname": "vwp-jr-l", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.0.157", + "ipstring": "192.168.0.157", + "ipPub": "76.87.81.200", + "ipstringPub": "76.87.81.200", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-04T16:50:57.178Z", + "active": false, + "monitoredJobFetched": "2026-07-04T16:39:59.109Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "1ee1490e-425b-8577-7a53-759ac57a71fe", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-04T16:50:54.921Z", + "locationId": "a29f3049-64fa-4593-9e3c-fe0519a53dee", + "data": { + "rmmUid": "1ee1490e-425b-8577-7a53-759ac57a71fe" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.148", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-04T08:59:32Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T06:45:48.046Z" + }, + { + "id": "b169ddf9-d859-45bf-b29d-cbaf730e44de", + "name": null, + "hostname": "vwp-qbs", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "172.16.9.169", + "ipstring": "172.16.9.169", + "ipPub": "4.18.160.106", + "ipstringPub": "4.18.160.106", + "os": "Windows Server 2022 Standard 2009 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:06:53.539Z", + "active": true, + "monitoredJobFetched": "2026-07-05T15:54:52.169Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "ec8e01ed-c810-e1c3-085a-77c0393dd8d8", + "deviceShortId": null, + "deviceGroupId": "002ad7ee-492c-4a7f-aa60-042044ab31bf", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:06:52.928Z", + "locationId": "a29f3049-64fa-4593-9e3c-fe0519a53dee", + "data": { + "rmmUid": "ec8e01ed-c810-e1c3-085a-77c0393dd8d8" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:14:41.454Z" + }, + { + "id": "61506b9c-8210-414d-96a3-9279ad4e7fd9", + "name": null, + "hostname": "vwp-reanna", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "172.16.9.108", + "ipstring": "172.16.9.108", + "ipPub": "4.18.160.106", + "ipstringPub": "4.18.160.106", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:06:13.537Z", + "active": true, + "monitoredJobFetched": "2026-07-05T16:04:12.103Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "161c2e9f-dc6d-24c3-688c-dbb9079d279b", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:06:12.341Z", + "locationId": "a29f3049-64fa-4593-9e3c-fe0519a53dee", + "data": { + "rmmUid": "161c2e9f-dc6d-24c3-688c-dbb9079d279b" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:15:59.855Z" + }, + { + "id": "fcbf2063-22f7-433f-88d4-a4c6daa12903", + "name": null, + "hostname": "vwp-rose", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "172.16.9.188", + "ipstring": "172.16.9.188", + "ipPub": "4.18.160.106", + "ipstringPub": "4.18.160.106", + "os": "Windows 11 Enterprise 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:06:48.539Z", + "active": true, + "monitoredJobFetched": "2026-07-05T15:56:43.055Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "1e0c4bc2-2e7b-9e78-d403-94bd2fc87f19", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:06:43.598Z", + "locationId": "a29f3049-64fa-4593-9e3c-fe0519a53dee", + "data": { + "rmmUid": "1e0c4bc2-2e7b-9e78-d403-94bd2fc87f19" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:15:49.442Z" + }, + { + "id": "b7f5e1eb-8e2a-4559-8f60-56626d47982f", + "name": null, + "hostname": "vwp-server", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.0.148", + "ipstring": "192.168.0.148", + "ipPub": "4.18.160.106", + "ipstringPub": "4.18.160.106", + "os": "Windows Server 2022 Standard 2009 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:06:38.546Z", + "active": true, + "monitoredJobFetched": "2026-07-05T15:54:36.650Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "77ba770c-7aa7-81c3-c23b-f1b18c1af7a5", + "deviceShortId": null, + "deviceGroupId": "002ad7ee-492c-4a7f-aa60-042044ab31bf", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:06:37.224Z", + "locationId": "a29f3049-64fa-4593-9e3c-fe0519a53dee", + "data": { + "rmmUid": "77ba770c-7aa7-81c3-c23b-f1b18c1af7a5" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "engineReady": true, + "compatibility": "Unknown", + "rebootRequired": false + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:15:05.453Z" + }, + { + "id": "0e8f6dc0-1bd7-4a09-be63-d1b966c73d29", + "name": null, + "hostname": "vwp_adsrvr", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.0.25", + "ipstring": "192.168.0.25", + "ipPub": "4.18.160.106", + "ipstringPub": "4.18.160.106", + "os": "Windows Server 2019 Standard 1809 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:06:28.538Z", + "active": true, + "monitoredJobFetched": "2026-07-05T15:56:26.853Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "fb4a5f1e-f4a2-05f5-767b-70f1c5bdaac7", + "deviceShortId": null, + "deviceGroupId": "002ad7ee-492c-4a7f-aa60-042044ab31bf", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:06:27.317Z", + "locationId": "a29f3049-64fa-4593-9e3c-fe0519a53dee", + "data": { + "rmmUid": "fb4a5f1e-f4a2-05f5-767b-70f1c5bdaac7" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:14:36.379Z" + }, + { + "id": "b3963145-5cc3-4dc5-b1e9-1b7d51ad9680", + "name": null, + "hostname": "win-acct", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.0.162", + "ipstring": "192.168.0.162", + "ipPub": "4.18.160.106", + "ipstringPub": "4.18.160.106", + "os": "Windows 10 Enterprise 2009 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:05:43.536Z", + "active": true, + "monitoredJobFetched": "2026-07-05T15:51:39.229Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "6ddcfaf3-d858-bd58-4926-c71e9839fbde", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:05:40.195Z", + "locationId": "a29f3049-64fa-4593-9e3c-fe0519a53dee", + "data": { + "rmmUid": "6ddcfaf3-d858-bd58-4926-c71e9839fbde" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:16:12.468Z" + }, + { + "id": "43910423-eff3-4f42-9388-a9b76ec59e16", + "name": null, + "hostname": "win-backup-srv", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.0.22", + "ipstring": "192.168.0.22", + "ipPub": "4.18.160.106", + "ipstringPub": "4.18.160.106", + "os": "Windows Server 2019 Datacenter 1809 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:05:13.534Z", + "active": true, + "monitoredJobFetched": "2026-07-05T16:01:09.003Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "c82af3de-7849-aae1-8f18-244186a986c1", + "deviceShortId": null, + "deviceGroupId": "002ad7ee-492c-4a7f-aa60-042044ab31bf", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:05:09.535Z", + "locationId": "a29f3049-64fa-4593-9e3c-fe0519a53dee", + "data": { + "rmmUid": "c82af3de-7849-aae1-8f18-244186a986c1" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:15:31.793Z" + }, + { + "id": "78db76ae-5519-451f-a534-711973149110", + "name": null, + "hostname": "win-server97", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.0.156", + "ipstring": "192.168.0.156", + "ipPub": "4.18.160.106", + "ipstringPub": "4.18.160.106", + "os": "Windows Server 2019 Standard 1809 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:06:28.538Z", + "active": true, + "monitoredJobFetched": "2026-07-05T15:52:23.163Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "d4de1cf0-a953-b99c-e9ff-f6a635b3b1fb", + "deviceShortId": null, + "deviceGroupId": "002ad7ee-492c-4a7f-aa60-042044ab31bf", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:06:23.895Z", + "locationId": "a29f3049-64fa-4593-9e3c-fe0519a53dee", + "data": { + "rmmUid": "d4de1cf0-a953-b99c-e9ff-f6a635b3b1fb" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:16:01.761Z" + }, + { + "id": "6314faf0-b6ac-4c7d-b5ff-1509fc8c2911", + "name": null, + "hostname": "work-dell3550", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.1.10", + "ipstring": "192.168.1.10", + "ipPub": "172.58.125.134", + "ipstringPub": "172.58.125.134", + "os": "Windows 11 Professional 25H2 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:05:28.535Z", + "active": true, + "monitoredJobFetched": "2026-07-05T15:57:23.722Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "ccf9c71a-e261-6548-ff8c-9c94563aba27", + "deviceShortId": null, + "deviceGroupId": "2395baff-89bc-41ad-b17a-9ec3c4ab44c3", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:05:24.426Z", + "locationId": "bb3db4c4-8db9-4f51-beee-2150f5e9b820", + "data": { + "rmmUid": "ccf9c71a-e261-6548-ff8c-9c94563aba27" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T12:56:02.480Z" + }, + { + "id": "4af7ae6f-b60e-44ae-af7d-e5c0fca756b2", + "name": null, + "hostname": "www", + "version": "3.17.1.5552", + "authorized": true, + "markedForUninstall": false, + "markedForUpdate": false, + "ip": "192.168.8.72", + "ipstring": "192.168.8.72", + "ipPub": "65.113.52.88", + "ipstringPub": "65.113.52.88", + "os": "Windows Server 2019 Standard 1809 64-bit", + "osWindows": true, + "osOsx": false, + "osLinux": false, + "osOther": false, + "heartbeat": "2026-07-05T16:06:03.536Z", + "active": true, + "monitoredJobFetched": "2026-07-05T15:52:02.310Z", + "type": "installed", + "vsaId": null, + "pulsewayId": null, + "deviceId": "a19e134f-18c0-c82f-6018-9a0817f1705b", + "deviceShortId": null, + "deviceGroupId": "002ad7ee-492c-4a7f-aa60-042044ab31bf", + "isolated": false, + "dattoAvEnabled": true, + "dnsSecureEnabled": true, + "dnsSecureLastEnabled": "2026-07-05T16:06:03.017Z", + "locationId": "b7f840d0-5f18-4714-9acd-573a82970e74", + "data": { + "rmmUid": "a19e134f-18c0-c82f-6018-9a0817f1705b" + }, + "eppData": { + "dattoav": { + "data": { + "connected": true, + "eppVersion": "1.0.2605.9416", + "rtpVersion": "1.0.2605.8770", + "vdfVersion": "8.21.2.152", + "amsiVersion": "1.0.2605.2939", + "engineReady": true, + "compatibility": "Unknown", + "engineVersion": "8.4.2.12", + "sentryVersion": "3.0.2605.3146", + "rebootRequired": false, + "vdfReleaseDate": "2026-07-05T10:21:12Z", + "firewallVersion": "1.0.2604.4056", + "coreEngineVersion": "2.0.3.63", + "engineReleaseDate": "2026-06-17T00:00:00Z", + "quarantineVersion": "1.0.2604.2537", + "remediationVersion": "1.0.2605.3357", + "onDemandScanVersion": "1.0.2605.3822", + "netProtectionVersion": "1.0.2605.3308" + }, + "enabled": true, + "eppType": "Datto AV" + }, + "defender": { + "data": null, + "enabled": false, + "eppType": "Defender" + } + }, + "rwdInfo": { + "rwdInstalled": true, + "rwdRollbackInstalled": false + }, + "metricsCollection": null, + "verboseLogging": null, + "markedForUpdateOn": "2026-06-19T05:14:54.575Z" + } +] diff --git a/projects/gps-rmm-audit/onsite-check-list.md b/projects/gps-rmm-audit/onsite-check-list.md new file mode 100644 index 00000000..125c58b0 --- /dev/null +++ b/projects/gps-rmm-audit/onsite-check-list.md @@ -0,0 +1,63 @@ +# Onsite-Check List — machines/clients with NO remote channel + +Rule (Howard, 2026-07-05): anything we cannot reach via ScreenConnect, Syncro checkin, +or Bitdefender goes in this group — it gets handled at the next onsite visit to that +location (enroll GuruRMM + SC + Datto EDR while physically there, or confirm the +machine is retired and get it pulled from GPS billing). + +Sources: Syncro assets (authoritative inventory) vs live RMM, SC reachability from +`needs-screenconnect.md` (rebuilt 2026-07-04), Bitdefender/EDR footprint from the +Phase 4 matrix. "no SC" = no ScreenConnect session at all; a day count = SC session +exists but stale that many days (kept here only when 45d+ AND no other channel). + +Machines listed are NOT yet in GuruRMM. Anything that comes online meanwhile is +harvested automatically by GPS-RMM-AutoEnroll — remove it from this list when it +appears in RMM (the daily progress DM catches that). + +## Whole clients with NO footprint anywhere (visit or call required) + +| Client | Billed devices | Notes | +|---|---|---| +| Little Hearts Little Hands | 8 | Only 2 Syncro assets known (LHLH, WIN-KNVO6MUMMEM), both no-SC. Also NO-AV. | +| Residential and Renovation Engineering | 2 | No Syncro assets with SC, no BD, no RMM org agents. EDR org/location exist, 0 agents. | +| Janet Altschuler | 2 | Separate from JANC Excavation (Syncro 457710 vs 2248945, confirmed 2026-07-04). NO-AV. | +| Business Services of Tucson LLC | 2 | KAT1 active in SC <=14d (autoenroll may catch); KAT no-SC. NO-AV. | +| Marty Ryan | 1 | DESKTOP-OC2PH4I seen in SC 0d — autoenroll should catch; onsite only if it doesn't. | + +## Special case — pending Mike's ruling + +- **IMC-PRINTSERVER** [Instrumental Music Center] — GuruRMM agent INSTALLED and running, + but the box drops all outbound TLS so it cannot connect. DM'd Mike 2026-07-05: by design + or fix? If by design -> stays here (dormant agent, check on next IMC visit / gateway change). + +## Per-client machines with no SC session (Syncro-known, unreachable remotely) + +- **Bill Tedards** (0/2 in RMM): DESKTOP-SUFJR0J, TEDARDSLAPTOP +- **Business Services of Tucson LLC**: KAT +- **Curtis Plumbing** (5/6): CURTIS-003 +- **Grabb & Durando Law Office** (9/12): GND-ASUSWS, GND-JEANNETTE, HOMEPC +- **Heieck, Sheila** (0/3): John Heieck's iMac, Sheila's iMac, Sheila's MacBook Pro (all Macs) +- **Horseshoe Management** (5/9): HSM-RANDI, HSM-SURFACE +- **Instrumental Music Center** (13/20): IMC-L1-GRAPHICS (stale 2025 box), PHIL; + stale-SC 80-141d: DESKTOP-JQ0D38J, DESKTOP-URV3UGR, IMC-EVENTS, PHIL2021LAPTOP, PURCHASINGCOMP +- **Little Hearts Little Hands**: LHLH, WIN-KNVO6MUMMEM +- **MVAN Enterprises Inc** (0/4): CPC-chris-UZR6E, DESKTOP-I7504C5, June's MacBook Pro; MITCH-LAPTOP (139d) +- **Mineralogical Record** (4/5): DESKTOP-3VPT017, DESKTOP-9QHSCIT +- **Multicultural Counseling Center** (2/3): DESKTOP-S1HPLDF (65d) +- **PUTT LAND SURVEYING, INC.** (2/7): PLS-FOUR, PLS-FRONT, PLS-LAPTOP, PLS-ONE +- **Quantum Wealth Management**: DESKTOP-A3IVMNF +- **Reliant Well Drilling and Pump Corporate** (1/9): Clark's iMac, DESKTOP-09H7T66, + DESKTOP-QIGH458, DESKTOP-V2247T9, LAPTOP-8AUEP9N6, LAPTOP-EJL9PFOU, LAPTOP-FR4QN9KF, + LAPTOP-JQMU8N9K, RELIANT-L01, RELIANT-L02, RELIANT-L03, WILCOXADMIN; RWD-ALANLAPTOP (127d) + — 13 dead assets vs 9 billed: several likely retired; reconcile onsite/with Winter. +- **Safesite**: 1225-LENOVO-E16 (49d), DESKTOP-QAR6D04 (142d) +- **Stamback Septic** (3/8, B-flag billing): DEREK-LAPTOP, DESKTOP-1BS5JL4, DESKTOP-JVLQQIJ, + SSS-SPARE, STAMBACK-JBECK, STAMBACK-NEW06 — billing says 8, reality ~2; billing review first. +- **The Marc Group** (0/2): LAPTOP-JMUNGO (54d) +- **The Prairie Schooner** (4/5): DESKTOP-SRUOH4R, DESKTOP-TS1P9MT + +## Not on this list on purpose + +- Jimmy Company (1/12) and Glaz-Tech (159 billed / ~5 real) — billing-vs-reality anomalies + held for Winter/Mike; nothing to chase onsite until billing is ruled on. +- Anything with an SC session active <=45d — the autoenroll loop owns those. diff --git a/projects/gps-rmm-audit/tools/edr-deploy.py b/projects/gps-rmm-audit/tools/edr-deploy.py new file mode 100644 index 00000000..43d32db5 --- /dev/null +++ b/projects/gps-rmm-audit/tools/edr-deploy.py @@ -0,0 +1,139 @@ +#!/usr/bin/env python3 +# edr-deploy.py — throttled Bitdefender->Datto EDR rollout via GuruRMM. +# +# For every ONLINE Windows RMM agent belonging to a GPS client with a vaulted +# EDR registration key, and whose hostname is not already in Datto EDR, push the +# official Install-EDR one-liner through the RMM command API. Deliberately slow: +# strictly sequential, poll each command to completion, fixed gap between +# machines, retry once on transient 5xx. Glaz-Tech has no key (stays BD) and +# non-Windows agents are skipped by design. +# +# Env: RMM, TOK. Files: .edr-agents-now.json (fresh `edr.py --json agents` dump). +# Usage: edr-deploy.py --dry | --live [--gap 20] +import json, os, sys, time, ssl, subprocess, urllib.request, re + +sys.stdout.reconfigure(encoding="utf-8", errors="replace") +RMM = os.environ["RMM"]; TOK = os.environ["TOK"] +ctx = ssl.create_default_context() +DRY = "--live" not in sys.argv +GAP = int(sys.argv[sys.argv.index("--gap") + 1]) if "--gap" in sys.argv else 20 +ROOT = "projects/gps-rmm-audit" +INSTANCE = "https://azcomp4587.infocyte.com" +ONELINER = ('[System.Net.ServicePointManager]::SecurityProtocol = ' + '[Enum]::ToObject([System.Net.SecurityProtocolType], 3072); ' + '(new-object Net.WebClient).DownloadString(' + '"https://raw.githubusercontent.com/Infocyte/PowershellTools/master/AgentDeployment/install_huntagent.ps1")' + ' | iex; Install-EDR -URL "{u}" -RegKey {k}') + +def api(path, body=None, tries=3): + for i in range(tries): + try: + req = urllib.request.Request( + RMM + path, + data=json.dumps(body).encode() if body is not None else None, + method="POST" if body is not None else "GET", + headers={"Authorization": "Bearer " + TOK, "Content-Type": "application/json"}) + raw = urllib.request.urlopen(req, context=ctx, timeout=30).read().decode("utf-8", "replace") + return json.loads("".join(c for c in raw if ord(c) >= 32 or c in "\t\n\r")) + except Exception as e: + if i == tries - 1: raise + time.sleep(5) + +def norm(s): + s = re.sub(r"[^a-z0-9 ]", " ", s.lower()) + drop = {"llc", "inc", "corp", "corporate", "ltd", "co", "the", "and", "of", "office", "offices"} + return frozenset(w for w in s.split() if w and w not in drop) + +# --- keys from vault (decrypted in-memory, never written to disk) --- +raw = subprocess.run(["bash", ".claude/scripts/vault.sh", "get", "msp-tools/datto-edr-regkeys.sops.yaml"], + capture_output=True, text=True).stdout +keys = {} +in_creds = False +for line in raw.splitlines(): + if line.startswith("credentials:"): in_creds = True; continue + if in_creds: + m = re.match(r"\s+(.+?):\s*(\S+)\s*$", line) + if m: keys[m.group(1)] = m.group(2) + elif line and not line.startswith(" "): break +OVERRIDES = { # vault name -> RMM client name (where token match is not enough) + "Tedards": "Bill Tedards", + "Altschuler, Janet": "Janet Altschuler", + "Residential and Renovation Eng": "Residential and Renovation Engineering", +} + +# --- current EDR coverage --- +edr = json.load(open(f"{ROOT}/.edr-agents-now.json")) +edr = edr if isinstance(edr, list) else edr.get("agents", edr.get("data", [])) +covered = set((a.get("hostname") or a.get("name") or "").lower() for a in edr) + +# --- RMM fleet --- +agents = api("/api/agents") +clients = sorted(set(a.get("client_name") or "" for a in agents)) +key_by_rmm_client = {} +for vname, k in keys.items(): + target = OVERRIDES.get(vname) + if target and target in clients: + key_by_rmm_client[target] = k; continue + nv = norm(vname) + best = [c for c in clients if norm(c) and (nv <= norm(c) or norm(c) <= nv)] + if len(best) == 1: + key_by_rmm_client[best[0]] = k + elif len(best) > 1: + exact = [c for c in best if norm(c) == nv] + if len(exact) == 1: key_by_rmm_client[exact[0]] = k + else: print(f"[WARNING] ambiguous key mapping for vault '{vname}': {best} — skipped") + # zero matches = client has no RMM org yet; fine. + +targets = [] +for a in agents: + c = a.get("client_name") or "" + if c not in key_by_rmm_client: continue + if (a.get("status") or "").lower() != "online": continue + osname = (a.get("os") or a.get("os_type") or "").lower() + if osname and "windows" not in osname: continue + h = (a.get("hostname") or "").lower() + if not h or h in covered: continue + targets.append((c, a["hostname"], a["id"])) +targets.sort() + +print(f"EDR deploy plan: {len(targets)} machine(s) across " + f"{len(set(t[0] for t in targets))} client(s); gap {GAP}s; {'DRY-RUN' if DRY else 'LIVE'}") +for c, h, aid in targets: + print(f" {c:45s} {h}") +if DRY or not targets: + sys.exit(0) + +results = [] +for n, (c, h, aid) in enumerate(targets, 1): + cmd = ONELINER.format(u=INSTANCE, k=key_by_rmm_client[c]) + print(f"[{n}/{len(targets)}] {c} / {h} ... ", end="", flush=True) + try: + r = api(f"/api/agents/{aid}/command", + {"command_type": "powershell", "command": cmd, "timeout_seconds": 300, "elevated": True}) + cid = r.get("command_id") or r.get("id") + status, out = "timeout", "" + for _ in range(60): # poll up to 5 min + time.sleep(5) + st = api(f"/api/commands/{cid}") + status = st.get("status") + if status not in ("running", "pending"): + out = (st.get("stdout") or "")[-400:] + break + ok = status == "completed" and ("installed" in out.lower() or "success" in out.lower() + or "already" in out.lower() or out.strip()) + print(status) + results.append((c, h, status, out.replace("\n", " ")[:200])) + except Exception as e: + print(f"ERROR {e}") + results.append((c, h, "dispatch-error", str(e)[:200])) + time.sleep(GAP) + +print("\n=== RESULTS ===") +for c, h, s, o in results: + print(f"{s:16s} {c:40s} {h}\n {o}") +done = sum(1 for r in results if r[2] == "completed") +print(f"\ncompleted {done}/{len(results)}") +with open(f"{ROOT}/edr-deploy-results.md", "a", encoding="utf-8") as f: + f.write(f"\n## Run {time.strftime('%Y-%m-%d %H:%M')} — {done}/{len(results)} completed\n") + for c, h, s, o in results: + f.write(f"- {s} | {c} | {h} | {o}\n") diff --git a/projects/gps-rmm-audit/tracker.md b/projects/gps-rmm-audit/tracker.md index 7a5ee826..fb05c0f9 100644 --- a/projects/gps-rmm-audit/tracker.md +++ b/projects/gps-rmm-audit/tracker.md @@ -312,3 +312,8 @@ Deploy recipe per machine (Monday): RMM online -> POST /api/agents/:id/command p (RMM command); readback via listener query log or nginx access log on the RMM server (`/install//windows?gpsdiag=...` — CF passes the install path). Full detail: session-logs/2026-07/2026-07-05-howard-cpqb-fixed-imcprintserver-tls-blocked.md + +**Onsite-check group created (2026-07-05, Howard's rule):** machines/clients with no SC, +no Syncro checkin, and no Bitdefender go to `onsite-check-list.md` — handled at the next +site visit, not chased remotely. IMC-PRINTSERVER pending Mike's ruling (TLS lockdown by +design vs fix — DM sent 2026-07-05).