Monitoring Applications and Processes
-
Hello, I recently finished a C# course and I'm ready to create what could be a complex program, to me at least. The idea I have is to monitor a cad application that runs on the users machine and work on a design file locally but save it to the server every x number of minutes. Users currently work on the files on a blade server that backups are mediocre at best, a network running at 100 and not gigabit. After reading a few articles here on C# threads and processes I now have a few questions. Can C# monitor when the application starts\ends via the task manager and get the file path and name so I can then do a time\date compare with the version on the server vs. the one on the local machine? Anything to consider C# wise if a second instance of the application is started? They would be two different drawings and the task manager does show two applications and processes running. Can this be set as a service to launch, or what would be the best way to implement this once a user logs on to the machine to catch the start of the application? Should the FileSystemWatcher or EventHandler reduce the complexity? Any input or guides to an example already existing is appreciated. Or should I just stay with the "Hello World" example in the book? :doh: Thanks!
I'll tell you what, then. Why don't you call me some time when you have no class? - Thornton Melon
-
Hello, I recently finished a C# course and I'm ready to create what could be a complex program, to me at least. The idea I have is to monitor a cad application that runs on the users machine and work on a design file locally but save it to the server every x number of minutes. Users currently work on the files on a blade server that backups are mediocre at best, a network running at 100 and not gigabit. After reading a few articles here on C# threads and processes I now have a few questions. Can C# monitor when the application starts\ends via the task manager and get the file path and name so I can then do a time\date compare with the version on the server vs. the one on the local machine? Anything to consider C# wise if a second instance of the application is started? They would be two different drawings and the task manager does show two applications and processes running. Can this be set as a service to launch, or what would be the best way to implement this once a user logs on to the machine to catch the start of the application? Should the FileSystemWatcher or EventHandler reduce the complexity? Any input or guides to an example already existing is appreciated. Or should I just stay with the "Hello World" example in the book? :doh: Thanks!
I'll tell you what, then. Why don't you call me some time when you have no class? - Thornton Melon
You should always move beyond the "Hello World"! :)
Jim Meadors
-
Hello, I recently finished a C# course and I'm ready to create what could be a complex program, to me at least. The idea I have is to monitor a cad application that runs on the users machine and work on a design file locally but save it to the server every x number of minutes. Users currently work on the files on a blade server that backups are mediocre at best, a network running at 100 and not gigabit. After reading a few articles here on C# threads and processes I now have a few questions. Can C# monitor when the application starts\ends via the task manager and get the file path and name so I can then do a time\date compare with the version on the server vs. the one on the local machine? Anything to consider C# wise if a second instance of the application is started? They would be two different drawings and the task manager does show two applications and processes running. Can this be set as a service to launch, or what would be the best way to implement this once a user logs on to the machine to catch the start of the application? Should the FileSystemWatcher or EventHandler reduce the complexity? Any input or guides to an example already existing is appreciated. Or should I just stay with the "Hello World" example in the book? :doh: Thanks!
I'll tell you what, then. Why don't you call me some time when you have no class? - Thornton Melon
You can try
System.Diagnostics.Process.GetProcessesByName
to get a list of Processes. But I do not know an event for a Process being started (perhaps WMI could do so), I'd poll the list every few seconds. But more important: how much interoperation does the application to be montired allow? Can you query its current file? Is the file read-able when it is opened in that application (could be locked!)? -
You can try
System.Diagnostics.Process.GetProcessesByName
to get a list of Processes. But I do not know an event for a Process being started (perhaps WMI could do so), I'd poll the list every few seconds. But more important: how much interoperation does the application to be montired allow? Can you query its current file? Is the file read-able when it is opened in that application (could be locked!)?The software does save changes automatically in the drawing which would be local in this case and then I would have it save the drawing to the server every 20 minutes. I did find a msdn topic on services http://msdn.microsoft.com/en-us/library/zt39148a(v=vs.80).aspx[^] I think I may be on to something and I am testing it out. The reading of articles and implementing this is a bit like herding cats at the moment.
I'll tell you what, then. Why don't you call me some time when you have no class? - Thornton Melon
-
Hello, I recently finished a C# course and I'm ready to create what could be a complex program, to me at least. The idea I have is to monitor a cad application that runs on the users machine and work on a design file locally but save it to the server every x number of minutes. Users currently work on the files on a blade server that backups are mediocre at best, a network running at 100 and not gigabit. After reading a few articles here on C# threads and processes I now have a few questions. Can C# monitor when the application starts\ends via the task manager and get the file path and name so I can then do a time\date compare with the version on the server vs. the one on the local machine? Anything to consider C# wise if a second instance of the application is started? They would be two different drawings and the task manager does show two applications and processes running. Can this be set as a service to launch, or what would be the best way to implement this once a user logs on to the machine to catch the start of the application? Should the FileSystemWatcher or EventHandler reduce the complexity? Any input or guides to an example already existing is appreciated. Or should I just stay with the "Hello World" example in the book? :doh: Thanks!
I'll tell you what, then. Why don't you call me some time when you have no class? - Thornton Melon
Steps - Learn how to create a windows service - Learn how to use Process - Figure out how to manage files and specifically detect time changes and how to copy. - Figure out how the cad app 'saves' a file Last step is more experimental. You should probably save two back ups and alternate as that gives a better chance of one not be bad due to a copy during a write. Last step also involves figuring out where the file is saved and to which user it belongs.
mphill4744 wrote:
Users currently work on the files on a blade server
This of course is all dependent on the presumption that the 'server' is in fact windows.