}
private boolean testWMI() {
int count = -1;
try {
WindowsWmi ww = new WindowsWmi(creds);
count = ww.getCount();
if (debug) {
String[] info = ww.getInfo();
out.append(Strings.get("dcom.wmi.procinfolegend"));
for (String s : info) {
// e.g. '\tCommandLine = "xxxxx"'
String[] lines = s.split("[\t\n\r]");
for (String line : lines) {