<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Paul Cornell : Personal Productivity</title><link>http://blogs.msdn.com/paulcornell/archive/tags/Personal+Productivity/default.aspx</link><description>Tags: Personal Productivity</description><dc:language>en-US</dc:language><generator>CommunityServer 2.1 SP1 (Build: 61025.2)</generator><item><title>Outlook 2010: Macro for Moving Selected Items</title><link>http://blogs.msdn.com/paulcornell/archive/2009/12/07/outlook-2010-macro-for-moving-selected-items.aspx</link><pubDate>Mon, 07 Dec 2009 22:52:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9933777</guid><dc:creator>Paul Cornell [MSFT]</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.msdn.com/paulcornell/comments/9933777.aspx</comments><wfw:commentRss>http://blogs.msdn.com/paulcornell/commentrss.aspx?PostID=9933777</wfw:commentRss><description>&lt;FONT size=2 face=Verdana&gt;
&lt;P&gt;It has been a really long time since I wrote Microsoft Outlook VBA code. But when a customer last week&amp;nbsp;asked me if there was a way to&amp;nbsp;write some VBA code to move selected Inbox items to an Archive folder, I felt right at home. Here's what I came up with for him:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Sub ArchiveItems()

    ' Moves each of the selected items on the screen to an Archive folder.
    Dim olApp As New Outlook.Application
    Dim olExp As Outlook.Explorer
    Dim olSel As Outlook.Selection
    Dim olNameSpace As Outlook.NameSpace
    Dim olArchive As Outlook.Folder
    Dim intItem As Integer

    Set olExp = olApp.ActiveExplorer
    Set olSel = olExp.Selection
    Set olNameSpace = olApp.GetNamespace("MAPI")
    ' This assumes that you have an Inbox subfolder named Archive.
    Set olArchive = olNameSpace.GetDefaultFolder(olFolderInbox).Folders("Archive")

    For intItem = 1 To olSel.Count
        olSel.Item(intItem).Move olArchive
    Next intItem

End Sub&lt;CODE&gt;&lt;/PRE&gt;&lt;/FONT&gt;&lt;/CODE&gt;&lt;/CODE&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9933777" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/paulcornell/archive/tags/Personal+Productivity/default.aspx">Personal Productivity</category></item><item><title>Simplifying My Computer: Outlook </title><link>http://blogs.msdn.com/paulcornell/archive/2009/10/08/simplifying-my-computer-outlook.aspx</link><pubDate>Fri, 09 Oct 2009 01:15:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9905182</guid><dc:creator>Paul Cornell [MSFT]</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.msdn.com/paulcornell/comments/9905182.aspx</comments><wfw:commentRss>http://blogs.msdn.com/paulcornell/commentrss.aspx?PostID=9905182</wfw:commentRss><description>&lt;FONT size=2 face=Verdana&gt;
&lt;P&gt;I’ve been trying to simplify my computer so that I can work faster and with less distracting visual clutter. Today, I’m taking on Microsoft Outlook. (I’m currently using Outlook 2010 Technical Preview.)&lt;/P&gt;
&lt;P&gt;Here’s what I did to simplify my Outlook layout:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;I hid the Navigation Pane: on the &lt;STRONG&gt;View&lt;/STRONG&gt; menu, in the &lt;STRONG&gt;Layout &lt;/STRONG&gt;group, I clicked &lt;STRONG&gt;Navigation&lt;/STRONG&gt;, and then I clicked &lt;STRONG&gt;Minimized&lt;/STRONG&gt;.&amp;nbsp;&lt;/LI&gt;
&lt;LI&gt;I hid the To-Do Bar: on the &lt;STRONG&gt;View &lt;/STRONG&gt;menu, in the &lt;STRONG&gt;Layout &lt;/STRONG&gt;group, I clicked &lt;STRONG&gt;To-Do Bar&lt;/STRONG&gt;, and then I clicked &lt;STRONG&gt;Minimized&lt;/STRONG&gt;.&lt;/LI&gt;
&lt;LI&gt;I minimized the Ribbon by pressing CTRL + F1. (You can show the Ribbon by pressing CTRL + F1 again.)&lt;/LI&gt;
&lt;LI&gt;I turned off all of the e-mail notifications: I clicked the &lt;STRONG&gt;Office Button&lt;/STRONG&gt;, I clicked &lt;STRONG&gt;Outlook Options&lt;/STRONG&gt;, I clicked the &lt;STRONG&gt;Mail &lt;/STRONG&gt;tab, and in the &lt;STRONG&gt;Message arrival &lt;/STRONG&gt;area, I unchecked all of the boxes, and then I clicked &lt;STRONG&gt;OK&lt;/STRONG&gt;.&lt;/LI&gt;&lt;/OL&gt;
&lt;P&gt;Now that my Navigation Pane is minimized, I use the following shortcut key combinations:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;To view my Inbox, I press CTRL + 1.&lt;/LI&gt;
&lt;LI&gt;To view my Calendar, I press CTRL + 2.&lt;/LI&gt;
&lt;LI&gt;To view my Tasks list, I press CTRL + 4.&lt;/LI&gt;
&lt;LI&gt;To view my Outlook Folders, I press CTRL + 6. (To hide my Outlook Folders again, I press ESC.)&lt;/LI&gt;
&lt;LI&gt;To compose a new e-mail, I press CTRL + 1, and then I press CTRL + N.&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;What have you been doing to simplify your computing experience? Please let me know in the comments following this post.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;/FONT&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9905182" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/paulcornell/archive/tags/Personal+Productivity/default.aspx">Personal Productivity</category></item><item><title>OneNote Replica of Todopaper</title><link>http://blogs.msdn.com/paulcornell/archive/2009/07/27/onenote-replica-of-todopaper.aspx</link><pubDate>Mon, 27 Jul 2009 19:25:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9850128</guid><dc:creator>Paul Cornell [MSFT]</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.msdn.com/paulcornell/comments/9850128.aspx</comments><wfw:commentRss>http://blogs.msdn.com/paulcornell/commentrss.aspx?PostID=9850128</wfw:commentRss><description>&lt;P&gt;Someone recently asked how Microsoft Office OneNote could possibly be used&amp;nbsp;as a replica of&amp;nbsp;popular&amp;nbsp;list manager&amp;nbsp;&lt;A href="http://widefido.com/products/todopaper/" mce_href="http://widefido.com/products/todopaper/"&gt;Todopaper&lt;/A&gt;. Here's what I came up with:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Add your to-do items to a OneNote page, one item per line.*&lt;/LI&gt;
&lt;LI&gt;If you want a to-do style check box next to an item, position the cursor on the desired line and insert a &lt;STRONG&gt;To Do &lt;/STRONG&gt;tag (by pressing CTRL + 1 --&amp;nbsp;that’s default behavior in my version of OneNote anyway). When you complete an item, click the corresponding check box to put a check in it.&amp;nbsp;&amp;nbsp;&lt;/LI&gt;
&lt;LI&gt;If you like strikethroughs, triple-click the line, and then select strikethrough formatting for the selected text.&lt;/LI&gt;
&lt;LI&gt;Add some headings to group the items for easier visual scanning. &lt;/LI&gt;&lt;/OL&gt;
&lt;P&gt;* By the way, to save time creating new OneNote pages, you can click the &lt;STRONG&gt;Open New Side Note &lt;/STRONG&gt;tray icon to create a new page and display it and type the content in there. You can access these pages later by clicking the &lt;STRONG&gt;Unfiled Notes &lt;/STRONG&gt;button in the lower-left corner of OneNote itself.&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9850128" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/paulcornell/archive/tags/Personal+Productivity/default.aspx">Personal Productivity</category></item><item><title>Most Important Tasks</title><link>http://blogs.msdn.com/paulcornell/archive/2008/12/19/most-important-tasks.aspx</link><pubDate>Fri, 19 Dec 2008 23:33:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9242831</guid><dc:creator>Paul Cornell [MSFT]</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.msdn.com/paulcornell/comments/9242831.aspx</comments><wfw:commentRss>http://blogs.msdn.com/paulcornell/commentrss.aspx?PostID=9242831</wfw:commentRss><description>&lt;P&gt;I find the concept of &lt;EM&gt;most important tasks &lt;/EM&gt;to be very helpful in identifying my most important work and having a sense of accomplishment while completing it. I got this idea from the following two blog posts:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;A href="http://zenhabits.net/2007/02/purpose-your-day-most-important-task/" mce_href="http://zenhabits.net/2007/02/purpose-your-day-most-important-task/"&gt;Purpose Your Day: Most Important Task (MIT)&lt;/A&gt;&amp;nbsp;on the Zen Habits web site&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://lifehacker.com/software/top/geek-to-live--control-your-workday-187074.php" mce_href="http://lifehacker.com/software/top/geek-to-live--control-your-workday-187074.php"&gt;Geek to Live: Control your workday&lt;/A&gt; on the Lifehacker.com web site&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;Here's a summary of these blog posts' key recommendations:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Near the end of each day, create from one to three most important tasks to tackle during the next day. Ask yourself "if I completed only these tasks today, would I feel a healthy sense of accomplishment toward my personal or professional goals?"&lt;/LI&gt;
&lt;LI&gt;Make at least one (hopefully all!) of your most important tasks each day relate to your personal or professional goals. &lt;/LI&gt;
&lt;LI&gt;Make sure you work on your most important tasks first. Get one most important task done first each day and then check your e-mail.&lt;/LI&gt;
&lt;LI&gt;Make post-work appointments, and create a wrap-up-work timer if needed, so that you can get out of your office on time.&lt;/LI&gt;&lt;/UL&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9242831" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/paulcornell/archive/tags/Personal+Productivity/default.aspx">Personal Productivity</category></item><item><title>Tackling E-Mail, Part 4: Using Outlook Keyboard Shortcuts</title><link>http://blogs.msdn.com/paulcornell/archive/2008/12/15/tackling-e-mail-part-4-using-outlook-keyboard-shortcuts.aspx</link><pubDate>Tue, 16 Dec 2008 00:54:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9222598</guid><dc:creator>Paul Cornell [MSFT]</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.msdn.com/paulcornell/comments/9222598.aspx</comments><wfw:commentRss>http://blogs.msdn.com/paulcornell/commentrss.aspx?PostID=9222598</wfw:commentRss><description>&lt;FONT size=2 face=Verdana&gt;
&lt;P&gt;Here are the keyboard shortcuts that I use most frequently in Outlook 2007 to speed up creating and managing my e-mail:&lt;/P&gt;
&lt;P&gt;Delete: Ctrl + D&lt;BR&gt;Close Window: Alt + F4&lt;/P&gt;
&lt;P&gt;New...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Mail Message: Ctrl + N&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Task: Ctrl + Shift + K&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Note: Ctrl + Shift + N&lt;/P&gt;
&lt;P&gt;Go To...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Mail: Ctrl + 1&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Calendar: Ctrl + 2&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Tasks:&amp;nbsp;Ctrl + 4&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Notes: Ctrl + 5&lt;/P&gt;
&lt;P&gt;Send/Receive: F9&lt;/P&gt;
&lt;P&gt;Check Names: Alt, H, M&lt;BR&gt;Set Follow Up Flag: Alt, H, W&lt;BR&gt;Mark High Importance: Alt, H, H&lt;BR&gt;Check Spelling: F7&lt;BR&gt;Insert Hyperlink: Alt, N, I&lt;BR&gt;Save Sent Item To: Alt, P, S &lt;/P&gt;
&lt;P&gt;Bold Text: Ctrl + B&lt;BR&gt;Italicize Text: Ctrl + I&lt;/P&gt;
&lt;P&gt;Copy: Ctrl + C&lt;BR&gt;Cut: Ctrl + X&lt;BR&gt;Paste: Ctrl + V&amp;nbsp; &lt;BR&gt;Paste Special: Alt, O, V, S&amp;nbsp;&lt;/P&gt;&lt;/FONT&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9222598" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/paulcornell/archive/tags/Personal+Productivity/default.aspx">Personal Productivity</category></item><item><title>Tackling E-Mail, Part 3: Delaying Responses</title><link>http://blogs.msdn.com/paulcornell/archive/2008/12/08/tackling-e-mail-part-3-delaying-responses.aspx</link><pubDate>Mon, 08 Dec 2008 23:00:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9185353</guid><dc:creator>Paul Cornell [MSFT]</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.msdn.com/paulcornell/comments/9185353.aspx</comments><wfw:commentRss>http://blogs.msdn.com/paulcornell/commentrss.aspx?PostID=9185353</wfw:commentRss><description>&lt;FONT size=2 face=Verdana&gt;
&lt;P&gt;In addition to limiting the number of times that I check e-mail each day, I'm also doing the following to free up more of my&amp;nbsp;time&amp;nbsp;for project work:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Pushing back on all potentially actionable e-mail that doesn't have a clear action or deadline stated. I'm replying to the requestor and asking for it if missing or unclear.&lt;/LI&gt;
&lt;LI&gt;Delaying for at least one business day taking action on all actionable e-mail unless the requestor asks for immediate action (and I agree with their reasoning why it needs to be done so quickly). &lt;/LI&gt;
&lt;LI&gt;I'm considering adding some type of "what you can expect of me regarding e-mail" statement to my auto-signature. (Suggestions welcome, please add them in the comment below this post.)&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;-- Paul&lt;/P&gt;
&lt;P&gt;------------------------------------&lt;BR&gt;This posting is provided "AS IS" with no warranties, and confers no rights.&lt;/P&gt;&lt;/FONT&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9185353" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/paulcornell/archive/tags/Personal+Productivity/default.aspx">Personal Productivity</category></item><item><title>Tackling E-Mail, Part 2: Checking E-Mail</title><link>http://blogs.msdn.com/paulcornell/archive/2008/12/06/tackling-e-mail-part-2-checking-e-mail.aspx</link><pubDate>Sat, 06 Dec 2008 03:18:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9180821</guid><dc:creator>Paul Cornell [MSFT]</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.msdn.com/paulcornell/comments/9180821.aspx</comments><wfw:commentRss>http://blogs.msdn.com/paulcornell/commentrss.aspx?PostID=9180821</wfw:commentRss><description>&lt;FONT size=2 face=Verdana&gt;
&lt;P&gt;I try to look at my e-mail only two or three times a day.&amp;nbsp;I get so sidetracked, so distracted sometimes at work when I look at my e-mail that I've had to stop doing it as much. &lt;/P&gt;
&lt;P&gt;I've also turned off my Outlook e-mail notifications to keep me from getting sidetracked and distracted. Here's how I do it in Outlook 2007:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;On the &lt;STRONG&gt;Tools&lt;/STRONG&gt; menu, click &lt;STRONG&gt;Options&lt;/STRONG&gt;.&lt;/LI&gt;
&lt;LI&gt;On the &lt;STRONG&gt;Preferences&lt;/STRONG&gt; tab, click &lt;STRONG&gt;E-mail Options&lt;/STRONG&gt;.&lt;/LI&gt;
&lt;LI&gt;Click &lt;STRONG&gt;Advanced Options&lt;/STRONG&gt;.&lt;/LI&gt;
&lt;LI&gt;Uncheck the following four boxes: &lt;STRONG&gt;Play a sound&lt;/STRONG&gt;, &lt;STRONG&gt;Briefly change the mouse cursor&lt;/STRONG&gt;, &lt;STRONG&gt;Show an envelope icon in the notification area&lt;/STRONG&gt;, and &lt;STRONG&gt;Display a New Mail Desktop Alert (default Inbox only)&lt;/STRONG&gt;.&lt;/LI&gt;
&lt;LI&gt;Click the &lt;STRONG&gt;OK &lt;/STRONG&gt;button three times to close all of the open dialog boxes.&lt;/LI&gt;&lt;/OL&gt;
&lt;P&gt;Checking my e-mail only twice or thrice a day has not seemed to be a problem for my coworkers or customers (yet!). I hope that people who really need my attention right away will use alternate means to contact me such as calling me on the phone, instant messaging me, or stopping by my office.&lt;/P&gt;
&lt;P&gt;I'm curious: how many times each day do you check your e-mail? Have you tried to reduce the frequency? What has been the effect on your productivity and your relationships with your coworkers and customers? Please let me know in the comments below this post.&lt;/P&gt;
&lt;P&gt;-- Paul&lt;/P&gt;
&lt;P&gt;------------------------------------&lt;BR&gt;This posting is provided "AS IS" with no warranties, and confers no rights.&lt;/P&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;&lt;/FONT&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9180821" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/paulcornell/archive/tags/Personal+Productivity/default.aspx">Personal Productivity</category></item><item><title>Tackling E-Mail, Part 1: Inbox Subfolders</title><link>http://blogs.msdn.com/paulcornell/archive/2008/12/04/tackling-e-mail-part-1-inbox-subfolders.aspx</link><pubDate>Fri, 05 Dec 2008 02:50:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9177484</guid><dc:creator>Paul Cornell [MSFT]</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.msdn.com/paulcornell/comments/9177484.aspx</comments><wfw:commentRss>http://blogs.msdn.com/paulcornell/commentrss.aspx?PostID=9177484</wfw:commentRss><description>&lt;FONT size=2 face=Verdana&gt;
&lt;P&gt;I use Microsoft Outlook to manage my e-mail (go figure, since I work for Microsoft!). I recently reduced and simplified the number of Outlook Inbox subfolders that I have as follows, and I feel like I'm really benefitting from it:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;A &lt;STRONG&gt;Follow Up &lt;/STRONG&gt;subfolder.&lt;/LI&gt;
&lt;LI&gt;A &lt;STRONG&gt;Hold &lt;/STRONG&gt;subfolder. &lt;/LI&gt;
&lt;LI&gt;An &lt;STRONG&gt;Archive &lt;/STRONG&gt;subfolder. [1]&lt;/LI&gt;
&lt;LI&gt;A &lt;STRONG&gt;Bacn &lt;/STRONG&gt;subfolder, which receives all e-mails where my name is not in the &lt;STRONG&gt;To &lt;/STRONG&gt;box. [2]&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;For my &lt;STRONG&gt;Follow Up&lt;/STRONG&gt;, &lt;STRONG&gt;Hold&lt;/STRONG&gt;, and &lt;STRONG&gt;Archive &lt;/STRONG&gt;subfolders, I use categories to group similar e-mails together.&lt;/P&gt;
&lt;P&gt;Of course, I continue to use my main &lt;STRONG&gt;Inbox &lt;/STRONG&gt;folder to receive e-mails where my name is in the &lt;STRONG&gt;To&lt;/STRONG&gt; box. Also, I continue to use my &lt;STRONG&gt;Tasks &lt;/STRONG&gt;folder to see a categorized/dated view of all of my e-mails with reminders attached to them. (And my trusty &lt;STRONG&gt;Calendar &lt;/STRONG&gt;should go here without mention.)&lt;/P&gt;
&lt;P&gt;Do you use a larger or smaller number of Inbox subfolders than this? I'd appreciate hearing from you in the comments below this post. &lt;/P&gt;
&lt;P&gt;-- Paul&lt;/P&gt;
&lt;P&gt;------------------------------------&lt;BR&gt;This posting is provided "AS IS" with no warranties, and confers no rights.&lt;/P&gt;
&lt;P&gt;Notes:&lt;/P&gt;
&lt;P&gt;[1] I got the idea for the &lt;STRONG&gt;Follow Up&lt;/STRONG&gt;, &lt;STRONG&gt;Hold&lt;/STRONG&gt;, and &lt;STRONG&gt;Archive &lt;/STRONG&gt;subfolders from the blog post &lt;A href="http://lifehacker.com/software/email/empty-your-inbox-with-the-trusted-trio-182318.php" mce_href="http://lifehacker.com/software/email/empty-your-inbox-with-the-trusted-trio-182318.php"&gt;Empty Your Inbox with the Trusted Trio&lt;/A&gt; by Gina Trapani. &lt;/P&gt;
&lt;P&gt;[2] For more history, see the &lt;A href="http://en.wikipedia.org/wiki/Bacn_(electronic)" mce_href="http://en.wikipedia.org/wiki/Bacn_(electronic)"&gt;Wikipedia entry for Bacn&lt;/A&gt;. It seems good to me to have a &lt;STRONG&gt;Bacn &lt;/STRONG&gt;subfolder instead of having it go directly to my &lt;STRONG&gt;Hold &lt;/STRONG&gt;subfolder or – heaven forbid – the &lt;STRONG&gt;Deleted Items &lt;/STRONG&gt;folder.&lt;/P&gt;&lt;/FONT&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9177484" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/paulcornell/archive/tags/Personal+Productivity/default.aspx">Personal Productivity</category></item><item><title>Getting (My) Things Done</title><link>http://blogs.msdn.com/paulcornell/archive/2006/09/04/getting-my-things-done.aspx</link><pubDate>Mon, 04 Sep 2006 05:51:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:738802</guid><dc:creator>Paul Cornell [MSFT]</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.msdn.com/paulcornell/comments/738802.aspx</comments><wfw:commentRss>http://blogs.msdn.com/paulcornell/commentrss.aspx?PostID=738802</wfw:commentRss><description>&lt;P&gt;&lt;FONT size=2 face=Verdana&gt;When I first started working at Microsoft many years ago (almost 9 years, in fact), many of the folks at my new hire orientation told me that I would be "blasted by an information firehose." They were right, of course, and each year that goes by magnifies this issue even more. What I think they didn't&amp;nbsp;tell me as much was that I would also be blasted by a "to-do firehose." There are so many things for me to read and learn, but also many things for me to do in relation to multiple ongoing projects. Now that I also manage a team of highly skilled, high-performing individuals, I also need to give people ongoing performance feedback and make sure there are opportunities to continue developing their skills and Microsoft careers. &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=2 face=Verdana&gt;Keeping on top of all of the stuff on my&amp;nbsp;to-do lists (also known&amp;nbsp;in my organization&amp;nbsp;simply as "work items") has been tough at times. I've used several project-management systems, but a system that I've come to&amp;nbsp;rely on over the past year is keeping a simple set of prioritized to-do lists, with one&amp;nbsp;list per "context" (for example, one list&amp;nbsp;of work items per ongoing project, one to-do list per team member for their&amp;nbsp;skills and career development, and so on).&amp;nbsp;I've also extended this to my personal contexts as well (for example, one to-do list for my home improvement projects, one to-do list for my personal goals, and so on).&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=2 face=Verdana&gt;This system, with&amp;nbsp;acknowledgement to methodologies&amp;nbsp;such as&amp;nbsp;Getting Things Done (GTD), has worked really well for me.&amp;nbsp;I'm curious, what&amp;nbsp;similar systems that you've found&amp;nbsp;both simple to set up and simple to use have worked for you?&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=2 face=Verdana&gt;-- Paul&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=2 face=Verdana&gt;------------------------------------&lt;BR&gt;This posting is provided "AS IS" with no warranties, and confers no rights.&lt;/FONT&gt;&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=738802" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/paulcornell/archive/tags/Personal+Productivity/default.aspx">Personal Productivity</category></item></channel></rss>