Kasteel 0 Posted March 10, 2011 Hi I need to simulate 20% (more or less) of CPU usage. Is this possible to do with AutoIT? Thanks Share this post Link to post Share on other sites
JohnOne 1,603 Posted March 10, 2011 Dont understand that. Whats your endgame? AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans. Share this post Link to post Share on other sites
Kasteel 0 Posted March 10, 2011 Dont understand that.Whats your endgame?I need to simulate CPU usage for a performance test. In other words I need to keep the CPU busy where this will simulate as if a user is working on the computer. Share this post Link to post Share on other sites
CarlMontgomery 1 Posted March 10, 2011 I need to simulate 20% (more or less) of CPU usage. this may be a difficalt task considering AutoIt is single threded. a single autoit instance can never take more than one core of the processor. You may be able to use this to your advantage. eg. if you have a 4 core processor you could run the below (very simple) script and it would take approx 25% of the CPU. Is that enough for your purposes? while 1 wend Share this post Link to post Share on other sites