MattX Posted September 5, 2011 Posted September 5, 2011 Anyone know why this is not returning anything ? What I have I missed ? $mem = ProcessGetStats("vboxtray.exe" ,0) MsgBox(0, "result",$mem)
JohnOne Posted September 5, 2011 Posted September 5, 2011 Because that function returns an array AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans.
MattX Posted September 5, 2011 Author Posted September 5, 2011 (edited) Thanks - any idea how I can get it to return the memory details of a single .exe or service ? [ Sorry, not using that function ] - don't want to use tasklist really. Edited September 5, 2011 by MattX
JohnOne Posted September 5, 2011 Posted September 5, 2011 #include <Array.au3> $mem = ProcessGetStats("vboxtray.exe" ,0) _ArrayDisplay($mem) ;just to display results. MattX 1 AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans.
MattX Posted September 5, 2011 Author Posted September 5, 2011 Many thanks - will be using _ArrayToClip.
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now