I am integrating FinderSync Extension in my Cocoa Application to show badges in files and folders. Look at the below two scenario:
Does anybody have an idea how to enable Finder Extension in the System Preference using second scenario?
I got the solution:
Code to Enable Extension (bundle ID)
system("pluginkit -e use -i YourAppBundleID")
Code to Disable Extension (bundle ID)
system("pluginkit -e ignore -i YourAppBundleID")
Before i used:
system("pluginkit -e use -i AppBundleID.FinderSync")
so just remove ".FinderSync" its working.