Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to run an executable and limit its memory and time usage. Of course I want to know if it breached any of these things and if not I want the data how much was used. What could I use from the .NET to do this?

share|improve this question
This is not a programming question, even though you might want to do this because of a programming problem. I recommend it be moved to ServerFault. – John Saunders Sep 4 '09 at 20:13
I disagree, he wants to create a program to monitor an executable - not using out-of-the-box monitoring application. – Eran Betzalel Sep 6 '09 at 4:26

1 Answer

up vote 5 down vote accepted

You could use a Thread to monitor the executable you run.

var process = Process.Start("Test.exe");

//  Monitor - Use this property to monitor the memory
process.MainModule.ModuleMemorySize

//  Monitor - Use this property to monitor the time
process.StartTime

//  Limit - You can use this property to limit the executable memory size,
//  but I wouldn't recommend it...
process.MaxWorkingSet

Good luck.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.