How to create a list of blocked programs in C #?

-1

I want you to select one of the programs from the list of installed programs in Windows. I want to prevent them from being opened, in this case, with a password.

For example, select, click Block, and add a password to connect to the locked program.

Here is an example of what I want to do, in fact, it's something like the parental control function, to define which programs can be run:

I thought of listing the programs in a listbox, and when I select the program, it looks for the process, so that it can be blocked. Anyone have any tips?

    
asked by anonymous 29.01.2016 / 22:28

1 answer

2

You can begin to solve your problem in parts. This link shows how to list installed programs on windows - > link .

2 Try to figure out how to get software being started-> link

3 List the softwares that are on your list with the ones being initialized. Listing the software you want to be blocked is very easy and there are several tutorials that explain this (It's the basics)

Finally, try doing it in parts. What I've just shown is a part of several ways to solve the same problem. Another thing to try to search in English only search results will be surprising.

I hope to have given you an idea of starting your project!

    
01.02.2016 / 11:30