Hello all,
I am have a text file with a list of windows services. Is there a way to check if the computer I'm working on has a specific service installed(Currently Win7 but needs to work for Vista and XP too? I want to do something like this:
bool found = false;
while(!file.eof())
{
getline(file, serv);
//if(Check if service(serv) is found){
// found = true;
// return 1;}
//else
// found = false;
}
Is this possible?
Thanks!