Do you work at a company that requires you to report your time?
Are you curious how much time you are spending on different projects or duties?
Hate having a separate tool just for time tracking and reporting? (me too!)
My Outlook calendar makes for easy time tracking. It's on my iPhone, my desktop, my laptop, my home PC...but there are no reporting capabilities that I am aware of, and I am not going to buy an app or plugin that I have to manage.
What if I wanted to find out how much time the rest of my team is spending on something like "host maintenance?" They have their calendar shared with me, and I can see their categories, but I would still have to manually add up their time, force them to do double data entry to another app, or something else that requires double-data-entry.
I wrote this Powershell solution to figure out how much time a group of people were spending on "Sales Engineering," and made a couple modifications for this post to allow different users and categories.
Features:
Category
use -category to add up time on. Only single category supported.
Multiple calendars
use -calendars to enter a single name like "Jake Robinson" or multiple in an array: @("Jake Robinson", "Alan Renouf")
Date Range
By default the current week M-F will be reported. If you need something a little different, you can use -pickDates to bring up a graphical calendar to each start and end date (click the date then press enter). You can also use -rangeStart and -rangeEnd with something like this "5/24/2012"
HTML or CSV output
Outputs to HTML report by default, or use -csv to output to comma separated value file.
Screenshots!
My Calendar
Categories
Example with pickDates
HTML report
Example using rangeStart and rangeEnd to CSV
CSV output
...and here's the script!
For more Powershell and Outlook fun, see Alan's post!