Hi, here’s Martin with a tiny Powershell One-Liner to measure, how many collection are in System Center 2012 Configuration Manager configured with the “Use incremental updates for this collection” option.
Just use:
@(Get-CMDeviceCollection | where{$_.refreshtype -eq 4 -or $_.refreshtype -eq 6}).count
Hope this helps