Thread regarding Wells Fargo & Co. layoffs

Measure what matters

So leadership has told us their most important metrics are days in the office, hours in the office and number of keystrokes. So be sure to work to those. Anyone want to help me develop a random keystroke tool?

by
| 1497 views | | 10 replies (last ) | Reply
Post ID: @OP+1k83ynxr5

10 replies (most recent on top)

Executive leaders are getting a workaround with this because of a caveat in the verbiage that isn't shared with worker bees. If you set up a team's meeting and actually attend it then the key strokes and mouse vibrations don't count against you so what a lot of the managers and executives are doing is they're setting up these pointless meetings to attend so that they can get credit for activity done.

In other words don't even bother with the keystroke logger just set up a 6-hour team meeting and as long as you're in it and it's active you get credit

by
| | Reply
Post ID: @b5+1k83ynxr5

The only group using tracking activity data right now is Ops. Unless that's you, stop freaking out. If that is you, well, her back to work.

by
| | Reply
Post ID: @b1+1k83ynxr5

Bring on the carpal tunnel!

by
| | Reply
Post ID: @af+1k83ynxr5

Will keep your session alive:

# Useful references:
#
# https://superuser.com/questions/992511/emulate-a-keyboard-button-via-the-command-line
# https://ss64.com/vb/sendkeys.html
# https://social.technet.microsoft.com/Forums/windowsserver/en-US/96b339e2-e9da-4802-a66d-be619aeb21ac/execute-function-one-time-in-every-10-mins-in-windows-powershell?forum=winserverpowershell
# https://learn-powershell.net/2013/02/08/powershell-and-events-object-events/
#
# Future enhancements - use events rather than an infinite loop
$wsh = New-Object -ComObject WScript.Shell
while (1) {

Send Shift+F15 - this is the least intrusive key combination I can think of and is also used as default by: http://www.zhornsoftware.co.uk/caffeine/ Unfortunately the above triggers a malware alert on Sophos so I needed to find a native solution - hence this script...

$wsh.SendKeys('+{F15}')
Start-Sleep -seconds 59
}

by
| | Reply
Post ID: @ab+1k83ynxr5

Next year our goals will include emails read per day, average keystrokes per hour. You know, important stuff.

by
| | Reply
Post ID: @aa+1k83ynxr5

You can automate many tasks with PowerShell scripting...

Launch Excel / send keystrokes / etc.

... But there is a good chance they are monitoring these scripts, so its like a cat and mouse situation.

by
| | Reply
Post ID: @a9+1k83ynxr5

If they're monitoring keystrokes I kind of feel sorry for the folks whose jobs are legitimately to be talking on meetings most of the day. Some jobs just don't have much typing involved, from what I've seen.

by
| | Reply
Post ID: @a8+1k83ynxr5

Can’t wait to see what sinister mandates come from keystroke reporting.

by
| | Reply
Post ID: @a5+1k83ynxr5

@OP kittens

by
| | Reply
Post ID: @a4+1k83ynxr5

May not be the number of keystrokes as much as it is making sure there aren't hours at a time where it appears there aren't any. Unless you're one of the people who come to work then wander off for a couple of hours at a time throughout the day you should be fine.

by
| | Reply
Post ID: @a2+1k83ynxr5

Post a reply

: