timbo343 Posted September 21, 2017 Posted September 21, 2017 Something that has really bugged me for a while is users leaving SIMS open when they've left their desk. We have tried getting staff to lock their machines after x mins of idle but that hasn't worked well and tried telling them to close SIMS when not at their machine. Well, now i've modified a little script from here DONE: IdleClose - exit certain programs after x minutes of idle time - DonationCoder.com. It needs Auto Hot Key installing on machines but i was thinking that this could run when at startup for a user session meaning when the machine was idle, SIMS would automatically close . ;2006-02-15 ;kill certain programs after x hours of idle time #Persistent AutoExec8: SetTimer, AutoKill, 25000 ; ; 5000 milliseconds = 5 seconds ; 10000 milliseconds = 10 Seconds ; 1800000 milliseconds = 30 minutes ; 3600000 milliseconds = 1 hour ; 5400000 milliseconds = 1,5 hours ; 7200000 milliseconds = 2 hours ; 7200000 milliseconds = 2 hours ; 9000000 milliseconds = 2,5 hours ; AutoKill: ; TrayTip, test, test If A_TimeIdlePhysical > 5000 process, close, pulsar.exe return Link to Auto Hot Key http://ahkscript.org/
Michael Posted September 21, 2017 Posted September 21, 2017 Why not use the timeout to password lock the Windows screensaver? This shouldn't just apply to SIMS, it should apply to any application which could contain sensitive information. 1
mukz Posted September 21, 2017 Posted September 21, 2017 I am pretty sure there is a timeout command which can be put in the connect.ini file?
matt40k Posted September 21, 2017 Posted September 21, 2017 Why not use the timeout to password lock the Windows screensaver? This shouldn't just apply to SIMS, it should apply to any application which could contain sensitive information. 100% Not difficult to set as a group policy and it protects EVERYTHING! I am pretty sure there is a timeout command which can be put in the connect.ini file? That's for how long SIMS waits before it retries ( or more likely) \ gives up communicating with the SQL database. So how long will it wait from you clicking the button to the server responding before it fails. So its machine timeout not user timeout.
mukz Posted September 21, 2017 Posted September 21, 2017 @matt40k thanks for clearing that up quickly.
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