Another #ConfigMgr Quick Post today - How to quickly set all of your Configuration Baselines to run on co-managed devices via #PowerShell - https://ajf8729.com/post/enabling-baselines-for-comanaged-devices/
Enabling Configuration Baselines for Co-managed Clients

Problem: You’ve shifted the “Device Configuration” workload in your ConfigMgr site to Intune, and your existing Configuration Baselines are no longer applying, and there’s a lot of them. Solution: Spend the next two hours clicking away in the console PowerShell of course! 1 Get-CMBaseline -Fast | Set-CMBaseline -AllowComanagedClients $true Running the above one-liner will enable all of your existing baselines to be run on co-managed clients even when the workload has been shifted to Intune.

AJF8729