Scheduled Report - Category/Threat Reporting
not pursuing
Minetta Gould
marked this post as
not pursuing
Thanks for sharing this request! We don’t have plans to build this specific report customization right now, but report flexibility is always on our radar.
If this kind of feature would make your reporting easier, add a vote or comment — it helps us see how much demand there is for deeper customization.
Jonathan Bullock
You could check manually by going to https://debug.dnsfilter.com/ per device.
To do this programmatically you'd have to script this on your own.
Here's some Powershell code that you could use to update a UDF in your RMM:
ec
$a = (invoke-webrequest -uri "https://adult.filterdns.net/status.json" -usebasicparsing).content
$a
if ($a -match "true") {
$udf17 = "True"
} else {
$udf17 = "False"
}
Set-ItemProperty "HKLM:\Software\CentraStage" -Name "Custom17$env:usrUDF17" -Value $udf17
<#This script is Datto RMM specific and uses a registry entry to update the field: https://rmm.datto.com/help/en/Content/3NEWUI/Devices/UserDefinedFields.htm
#>