Let us consider that we have four independent events A,B,C,D each with probability Pa,Pb,Pc,Pd associated with it.
Now we have to find the probability of at least two events occurring.
First we find the probability of exactly two events occurring.
These two events can be AB, AC, AD, BC, BD, CD.
event space = {AB, AC, AD, BC, BD, CD, }
Since all these events are mutually exclusive.
Probability of any one them occurring is Sum of all probabilities in the events space.
P(AB) = Pa * Pb * (1-Pc) * (1-Pd)
P(AC) = Pa * (1-Pb) * Pc * (1-Pd)
P(AD) = Pa * (1-Pb) * (1-Pc) * Pd
P(BC) = (1-Pa) * Pb * Pc * (1-Pd)
P(BD) = (1-Pa) * Pb * (1-Pc) * Pd
P(CD) = (1-Pa) * (1-Pb) * Pc * Pd
After that we can sum all these to get the probability of Two events occurring. In a similar way we can calculate probability of Three and Four events occurring.
Final probability = Prob(Two_events) + Prob(Three_events) + Prob(Four_events)
However I am unable to generalize for at least M events out of N.
I hope it will shed more light on your problem.