So, had an odd thing happen this weekend, a ton of my devices ended up being non-compliant to my policies. I've never seen that happen before and thought someone did something. It was quickly apparent that a ton of configs were downloaded of a zero length. This was a scheduled job we spur off each week vs. a RTCN download.
I was able to confirm that they were of a zero length with this query, ie: if the config is = '', then it must be blank, right?
SELECT TOP 1000 ConfigTitle, DownloadTime, ConfigType, Config
FROM [dbo].[NCM_ConfigArchive]
WHERE (DownloadTime > DateAdd(day, -3, GetDate())) AND (Config = '')
The thing that confuses me the most is my "Config Min Length" in NCM settings is 11 lines. How can I get zero length configs downloaded that are at least 11 lines long? Anyone else seen this?
I have noticed that this isn't isolated to whatever happened this weekend, I've since found blank configs going further back in dates.
Has anyone else experienced this?
Wondering if maybe I'm interpreting these settings wrong, or if it should be as I'm thinking it?