Jump to content

Recommended Posts

Posted

What's the set of commands to read the status bar text of an open Windows Task Manager window, and parse out the "CPU Usage" % number?

Thanks so much!!!

Posted

Got it!

$cpu = 100
    
    while $cpu > 35
        $cpu = StatusbarGetText("Windows Task Manager", "", 2)
        $len = StringLen($cpu)
        $cpu = StringTrimLeft($cpu, 11)
        $cpu = StringTrimRight($cpu, 1)
        $cpu = Int($cpu)
        sleep(1000)
    wend

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...