I am going to be working on a small toolkit project in C# and I have run into a couple problems. First, do I use WinForms or WPF. Now I do not know WPF at all but the book I do have for C# works with it in the later chapters. I won't be doing anything too fancy with the interface anyways so it might be overkill. Second, I am unsure how to set Windows services to Manual or Disabled startup time. I tried using Google but found many different ways all of which were only small code segments I did not understand. I can start and stop them ok but they will just restart later.
Some things I want to implement in this program:
- running chkdsk
- running Windows defrag
- emptying recycle bin (I know how to do this)
- disable startup items
- kill procresses
- disable Windows services
- install some programs
I know how to launch programs and send command line stuff for chkdsk so thats not too bad. The startup items I am looking into same with processes but I could just run Systernals tools. I won't be redistributign this program just for personal use. But if anyone here wants to help that would be great as well.