g-fx Posted October 27, 2015 Report post Posted October 27, 2015 Hey Guys, Id thought I'd quickly share a solution to a problem I've had with SCCM 2012 R2 SP1 CU1 whereby the iOS9 extensions were not available after the upgrade from SCCM 2012 R2. I logged a call with Intune Support without too much information and they came back pretty much straight away with a fix so I suspect it maybe something common? Anyways If the extension is missing... On your SQL server, run the following query: Select * from CFDMetadata where FeatureID = 'FFFF4E99-5BD9-4A82-BC9F-7864FCAEA519' Check to see if the MinCMVersion and MaxCMVersion are NULL. IF THEY ARE, run this: update CFDMetadata set MinCMVersion = '5.00.8239.1000', MaxCMVersion = '5.00.8239.9999', MoreInfoLink = 'https://go.microsoft.com/fwlink/?LinkId=330435', ReleasedDate = '2015-09-11 09:09:00.000' where FeatureID = 'FFFF4E99-5BD9-4A82-BC9F-7864FCAEA519' and FeatureVersion = 300001214 Once I ran the update , the extension appeared straight away in the console. Hope this helps someone . Quote Share this post Link to post Share on other sites More sharing options...