snake3062 Posted May 30, 2017 Posted May 30, 2017 Does anyone know of a script out there that will close internet explorer after so many minutes of inactivity. I know this should be easy to do. I have tried to work it out on my on but for some reason I can't get it to work. I can get a title to work and close for just that title but I want to closed IE completely. Any help would be great! Thanks..
Deye Posted May 31, 2017 Posted May 31, 2017 (edited) @snake3062 Welcome to the autoit forum: check out: _Timer_GetIdleTime() ,its in the help file as well .. Edit: for closing iexplore.exe completely Local $a_process = ProcessList("iexplore.exe") For $i = 1 To $a_process[0][0] ProcessClose($a_process[$i][1]) Next Edited May 31, 2017 by Deye
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