Classification as a percentage of pertaining to class

I have been trying to generate classification prediction as a percentage between 0 and 1 pertaining to a binary classification of 1 and 0. With the MLP model this is achieved by viewing the percentage base on output nurons. However I wish to get the same information from Logistic Regression Models, Decision Tree and SVM. Is there a way of doing this using the standard predictors?

In all predictor nodes you can add probability columns to the output. In case of two-class problems this should give you the desired percentage (for the "positive" class).

Thanks Thor, I must have been looking at the predictor nodes blind, as it is quite easy to enable the probability columns.