Computer lock time

  • Thread starter Thread starter Kashyap
  • Start date Start date
K

Kashyap

Hi, is there a way that excel can detect for what duration computer was locked?
 
Within excel there is no event to track this; but you can probably lock your
computer from VBA using

Set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.Run "rundll32 user32.dll,LockWorkStation"
 
Hi Jacob, Will this not work on windowsXP?

and is there a way to track unlock time?
 
Hi Jacob, Will this not work on windowsXP?

and is there a way to track unlock time?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top