Search Results

2
votes

How can a windows service programmatically restart itself?

It would depend on why you want it to restart itself. If you are just looking for a way to have the service clean itself out periodically then you could have a timer running in the service …
0
votes

C# Event Handlers

I think you can if you are in the class that raises the event. You can define the handler and enumerate each. e.g. If your event is defined as event System.EventHa …
0
votes

Checking for equivalent shared folders in .net

You can examine the share definition itself by using the System.Management namespace but it is not easy to use. it starts something like ManagementClass management = new Man …
2
votes

Windows default size for console application

Instead of using the Properties menu item - Use the defaults menu item. …
0
votes

What causes Visual Studio 2005 Out-Of-Order Command Line Builds?

Make sure that you have set your dependancies in the solution correctly. This can directly affect build order. …
0
votes

Windows event scheduler custom service

Oh there are so many. I'd start with a standard windows service in .Net and use the Properties\Settings feature to store my scheduled time (this really only works with a single time - a mor …