diff --git a/apps/files/js/files.js b/apps/files/js/files.js
index 982351c589ebf4fea5f6d1e8e8e10d3d3af955ec..abde963e42345c21fe5c7260d6b068275507860c 100644
--- a/apps/files/js/files.js
+++ b/apps/files/js/files.js
@@ -495,6 +495,10 @@ $(document).ready(function() {
 				$('#notification').text(t('files','Invalid name, \'/\' is not allowed.'));
 				$('#notification').fadeIn();
 				return;
+			} else if( type == 'folder' && $('#dir').val() == '/' && $(this).val() == 'Shared') {
+				$('#notification').text(t('files','Invalid folder name. Usage of "Shared" is reserved by Owncloud'));
+				$('#notification').fadeIn();
+				return;
 			}
 			var name = getUniqueName($(this).val());
 			if (name != $(this).val()) {