Process loading and script loading - who wins? Topic is solved

Get help with using AutoHotkey (v1.1 and older) and its commands and hotkeys
sethriel

Process loading and script loading - who wins?  Topic is solved

24 Sep 2018, 08:45

Hi,

Have a strange issue, tried looping the whole thing, rearranging etc, but no luck. I have this script:

Code: Select all

[code]#Persistent
Loop {

CoordMode, ToolTip, Screen

Process, Exist, skype.exe
PID := errorLevel
; IfEqual, PID, 0, ExitApp
SetTimer, ShowToolTip 
Return

ShowToolTip:
PrLoad := Round( GetProcessTimes(PID),2)
ToolTip %PrLoad%`%, 100,100
If (PrLoad > 9)
	{
	Process, Close, skype.exe
	}
Return


GetProcessTimes( PID )    { 
   Static oldKrnlTime, oldUserTime 
   Static newKrnlTime, newUserTime 

   oldKrnlTime := newKrnlTime 
   oldUserTime := newUserTime 

   hProc := DllCall("OpenProcess", "Uint", 0x400, "int", 0, "Uint", pid) 
   DllCall("GetProcessTimes", "Uint", hProc, "int64P", CreationTime, "int64P"
           , ExitTime, "int64P", newKrnlTime, "int64P", newUserTime) 

   DllCall("CloseHandle", "Uint", hProc) 
Return (newKrnlTime-oldKrnlTime + newUserTime-oldUserTime)/10000000 * 100   
	}
}
[/code]

I borrowed parts of this code from around the net and modded a bit since my Skype (old version on Win10) starts to eat processor for some reason when I'm connected to VPN. Everything in this works when script is loaded after Skype is loaded, but not the other way around - if Skype is loaded after script, it just won't work and the load isn't shown on the ToolTip either. I'm sure there's a perfectly reasonable explanation for this but I just can't see it, so I'd really appreciate it if someone stuck my nose in it. Thanks!

Oh there's another small issue - the ToolTip shows twice the load that Process Explorer shows. I can cheat with the output but I'd also like to understand why it's like that, so if there's any guru outthere with couple of minutes of time, I'd appreciate that too, thanks!

All the best,
A.

Return to “Ask for Help (v1)”

Who is online

Users browsing this forum: Bing [Bot], Descolada, Google [Bot] and 107 guests