diff --git a/admin/osx/macosx.pkgproj b/admin/osx/macosx.pkgproj
index e68ed3ade..5c936a813 100644
--- a/admin/osx/macosx.pkgproj
+++ b/admin/osx/macosx.pkgproj
@@ -1021,11 +1021,11 @@
CONCLUSION_ACTION
0
IDENTIFIER
- com.owncCloud.finderPlugin
+ com.ownCloud.finderPlugin
LOCATION
0
NAME
- Finder Plugin
+ Legacy Finder Plugin (OS X 10.9 or older)
OVERWRITE_PERMISSIONS
VERSION
diff --git a/admin/osx/post_install.sh.cmake b/admin/osx/post_install.sh.cmake
index 2948a80ab..a6a55e6b9 100644
--- a/admin/osx/post_install.sh.cmake
+++ b/admin/osx/post_install.sh.cmake
@@ -8,4 +8,9 @@ tell application "Finder"
end tell
EOF
+# Always enable the new 10.10 finder plugin if available
+if [ -x "$(command -v pluginkit)" ]; then
+ pluginkit -e use -i com.owncloud.desktopclient.FinderSyncExt
+fi
+
exit 0
\ No newline at end of file