diff --git a/apps/app_confbridge.c b/apps/app_confbridge.c
index 7569a69e62..ed6a8a973c 100644
--- a/apps/app_confbridge.c
+++ b/apps/app_confbridge.c
@@ -236,7 +236,10 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
 		
 			
 			
-			
+			
+				If this parameter is not a complete channel name, the first channel with this prefix will be used.
+				If this parameter is "all", all channels will be kicked from the conference.
+			
 		
 		
 		
@@ -2966,7 +2969,7 @@ static int action_confbridgekick(struct mansession *s, const struct message *m)
 	ao2_ref(conference, -1);
 
 	if (found) {
-		astman_send_ack(s, m, "User kicked");
+		astman_send_ack(s, m, !strcmp("all", channel) ? "All participants kicked" : "User kicked");
 	} else {
 		astman_send_error(s, m, "No Channel by that name found in Conference.");
 	}