<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:posterous="http://posterous.com/help/rss/1.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">
  <channel>
    <title>Brent Pabst</title>
    <link>http://brentpabst.com</link>
    <description>My Bliggity Blog</description>
    <generator>posterous.com</generator>
    <link xmlns="http://www.w3.org/2005/Atom" href="http://posterous.com/api/sup_update#5bd7cb701" type="application/json" rel="http://api.friendfeed.com/2008/03#sup" />
    
    
    <atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/brentpabst1" /><feedburner:info uri="brentpabst1" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://posterous.superfeedr.com/" /><feedburner:browserFriendly></feedburner:browserFriendly><item>
      <pubDate>Tue, 07 Feb 2012 09:31:47 -0800</pubDate>
      <title>Something New is Coming...</title>
      <link>http://brentpabst.com/something-new-is-coming</link>
      <guid>http://brentpabst.com/something-new-is-coming</guid>
      <description>
        <![CDATA[<p>
	<div class='p_embed p_image_embed'>
<a href="http://getfile9.posterous.com/getfile/files.posterous.com/brentpabst/pV2ULqhG1kW6BwaEKTX02EE9ojhcdq0aSHIw0lwUFb32zy4gdtoTfnCxjXci/2-7-2012_12-28-22_PM.png"><img alt="2-7-2012_12-28-22_pm" height="106" src="http://getfile1.posterous.com/getfile/files.posterous.com/brentpabst/pV2ULqhG1kW6BwaEKTX02EE9ojhcdq0aSHIw0lwUFb32zy4gdtoTfnCxjXci/2-7-2012_12-28-22_PM.png.scaled570.png" width="570" /></a>
</div>
<p></p><div class="WordSection1"><p>It&#8217;s coming&#8230;</p></div>
	
</p>

<p><a href="http://brentpabst.com/something-new-is-coming">Permalink</a> 

	| <a href="http://brentpabst.com/something-new-is-coming#comment">Leave a comment&nbsp;&nbsp;&raquo;</a>

</p>]]>
      </description>
      <posterous:author>
        <posterous:userImage>http://posterous.com/images/profile/missing-user-75.png</posterous:userImage>
        <posterous:profileUrl>http://posterous.com/users/hd24ZvSQHwT46</posterous:profileUrl>
        <posterous:firstName>Brent</posterous:firstName>
        <posterous:lastName>Pabst</posterous:lastName>
        <posterous:nickName>Brent</posterous:nickName>
        <posterous:displayName>Brent Pabst</posterous:displayName>
      </posterous:author>
      <media:content type="image/png" height="159" width="851" url="http://getfile9.posterous.com/getfile/files.posterous.com/brentpabst/pV2ULqhG1kW6BwaEKTX02EE9ojhcdq0aSHIw0lwUFb32zy4gdtoTfnCxjXci/2-7-2012_12-28-22_PM.png">
        <media:thumbnail height="93" width="500" url="http://getfile2.posterous.com/getfile/files.posterous.com/brentpabst/ymRuDZ3hKvjNn3z1gmJFhN3ksOadJh8FlwUZW1rvadG7lqj3nB1VANnBaD1I/2-7-2012_12-28-22_PM.png.scaled.500.jpg" />
      </media:content>
    </item>
    <item>
      <pubDate>Sun, 05 Feb 2012 14:12:49 -0800</pubDate>
      <title>Simple MVC Redirect after Action Completion</title>
      <link>http://brentpabst.com/simple-mvc-redirect-after-action-completion</link>
      <guid>http://brentpabst.com/simple-mvc-redirect-after-action-completion</guid>
      <description>
        <![CDATA[<p>
	<p>I ran across a rather simple problem today that I did not find a lot of simple documentation to explain so here is my simple example to hopefully help whoever might stumble upon this same question.</p><p></p><p><b>The Scenario:</b></p><p></p><p>I have a simple controller that posts data to an API, at the conclusion it hands back the newly inserted item so I can display it to my user.&nbsp; However the action to add the item is not the same action that displays the newly inserted item.&nbsp; The problem is how do I hand off the newly inserted item to the other action handler.</p><p></p><p><b>The Solution:</b></p><p></p><p>Pretty simple in the long run using the &#8220;RedirectToAction&#8221; method.&nbsp; In the end it looks a lot like this:</p><p></p><p style=""><span style="font-size: 9.5pt; font-family: Consolas; color: blue;">return</span><span style="font-size: 9.5pt; font-family: Consolas;"> RedirectToAction(<span style="color: #A31515;">&quot;Get&quot;</span>, <span style="color: blue;">new</span> <span style="color: #2B91AF;">RouteValueDictionary</span>() { { <span style="color: #A31515;">&quot;id&quot;</span>, response.Id } });</span></p><p></p><p>I simply tell the method where to go and create a simple value dictionary object with my single Guid to pass on and lookup the object.&nbsp; All in all pretty simple and you can even build up the dictionary to add other objects if you needed to.</p><p></p><p>Brent</p>
	
</p>

<p><a href="http://brentpabst.com/simple-mvc-redirect-after-action-completion">Permalink</a> 

	| <a href="http://brentpabst.com/simple-mvc-redirect-after-action-completion#comment">Leave a comment&nbsp;&nbsp;&raquo;</a>

</p>]]>
      </description>
      <posterous:author>
        <posterous:userImage>http://posterous.com/images/profile/missing-user-75.png</posterous:userImage>
        <posterous:profileUrl>http://posterous.com/users/hd24ZvSQHwT46</posterous:profileUrl>
        <posterous:firstName>Brent</posterous:firstName>
        <posterous:lastName>Pabst</posterous:lastName>
        <posterous:nickName>Brent</posterous:nickName>
        <posterous:displayName>Brent Pabst</posterous:displayName>
      </posterous:author>
    </item>
    <item>
      <pubDate>Thu, 02 Feb 2012 20:30:00 -0800</pubDate>
      <title>What kids today don't know...</title>
      <link>http://brentpabst.com/what-kids-today-dont-know-tags-humor-personal</link>
      <guid>http://brentpabst.com/what-kids-today-dont-know-tags-humor-personal</guid>
      <description>
        <![CDATA[<p>
	<p><div class='p_embed p_image_embed'>
<a href="http://getfile6.posterous.com/getfile/files.posterous.com/brentpabst/4JDhHFKtAHuUTGAgcAsZP83V7ddfG64WnO71gkYwG3mEL725QwEZ4pyrRGwf/2-2-2012_11-28-41_PM.png"><img alt="2-2-2012_11-28-41_pm" height="393" src="http://getfile8.posterous.com/getfile/files.posterous.com/brentpabst/4JDhHFKtAHuUTGAgcAsZP83V7ddfG64WnO71gkYwG3mEL725QwEZ4pyrRGwf/2-2-2012_11-28-41_PM.png.scaled570.png" width="570" /></a>
</div>
</p>
<p></p>
<div class="WordSection1">
<p>So how many kids born after 1995 know what this is?</p>
<p>&nbsp;</p>
<p>-Brent</p>
</div>
	
</p>

<p><a href="http://brentpabst.com/what-kids-today-dont-know-tags-humor-personal">Permalink</a> 

	| <a href="http://brentpabst.com/what-kids-today-dont-know-tags-humor-personal#comment">Leave a comment&nbsp;&nbsp;&raquo;</a>

</p>]]>
      </description>
      <posterous:author>
        <posterous:userImage>http://posterous.com/images/profile/missing-user-75.png</posterous:userImage>
        <posterous:profileUrl>http://posterous.com/users/hd24ZvSQHwT46</posterous:profileUrl>
        <posterous:firstName>Brent</posterous:firstName>
        <posterous:lastName>Pabst</posterous:lastName>
        <posterous:nickName>Brent</posterous:nickName>
        <posterous:displayName>Brent Pabst</posterous:displayName>
      </posterous:author>
      <media:content type="image/png" height="446" width="647" url="http://getfile6.posterous.com/getfile/files.posterous.com/brentpabst/4JDhHFKtAHuUTGAgcAsZP83V7ddfG64WnO71gkYwG3mEL725QwEZ4pyrRGwf/2-2-2012_11-28-41_PM.png">
        <media:thumbnail height="345" width="500" url="http://getfile7.posterous.com/getfile/files.posterous.com/brentpabst/MOTPZFzjJQ3d6LT87if6eIOvPf695iCo2sSyrx8F8rHyL9ropSQJ0E6UwfrG/2-2-2012_11-28-41_PM.png.scaled.500.jpg" />
      </media:content>
    </item>
    <item>
      <pubDate>Wed, 01 Feb 2012 08:04:05 -0800</pubDate>
      <title>Intuitive ERP: Automate Allowable GL Date Maintenance</title>
      <link>http://brentpabst.com/intuitive-erp-automate-allowable-gl-date-main</link>
      <guid>http://brentpabst.com/intuitive-erp-automate-allowable-gl-date-main</guid>
      <description>
        <![CDATA[<p>
	<p>I had a couple of requests regarding this from the Intuitive ERP user group so I figured I would throw it in to a blog and make it easier for people to reference.</p><p></p><p><b>The Situation:</b></p><p></p><p>Our accounting friends want to be able to control the general ledger very closely in an attempt to keep from having to deal with lots of clean-up and problems down the road.&nbsp; One of the ways they do this is by restricting the dates in which transactions can be entered into Intuitive.&nbsp; Essentially if the date is not within the allowable range the transaction cannot be entered.</p><p></p><p><b>The Problem:</b></p><p></p><p>Normally the date restriction is set to restrict to the current month or quarter depending on the organization, regardless at times someone in the finance department may forget to update the end date to push it out to the next month or quarter and that&#8217;s when major problems come up.&nbsp; If the date is not updated on the next business day the system pretty much grinds to a halt as no transactions such as work order release, purchase order release, work order clock on and off, etc. all stop.</p><p></p><p><b>The Solution:</b></p><p></p><p>Pretty simple fix here, we simply created a SQL Server Agent Job in the IT world that executes monthly to go out and push that end date out to the end of the next month.&nbsp; Essentially automating the task for the finance group so no one has to remember to do it.&nbsp; In addition we added strict error logic to the job so if anything fails it will notify a set group of users automatically via e-mail.&nbsp; This is all configured via SQL Server Mail.</p><p></p><p><b>The Code:</b></p><p></p><p>You can download the SQL Agent Job script here: <a href="http://brntpb.st/A2hlld">http://brntpb.st/A2hlld</a>.&nbsp; One note: we utilize multiple Intuitive databases so we create multiple steps in the job to update each individual database.&nbsp; This is perfect for a multiple company or multi-site model.</p><p></p><p>Enjoy!</p><p></p><p>-Brent</p>
	
</p>

<p><a href="http://brentpabst.com/intuitive-erp-automate-allowable-gl-date-main">Permalink</a> 

	| <a href="http://brentpabst.com/intuitive-erp-automate-allowable-gl-date-main#comment">Leave a comment&nbsp;&nbsp;&raquo;</a>

</p>]]>
      </description>
      <posterous:author>
        <posterous:userImage>http://posterous.com/images/profile/missing-user-75.png</posterous:userImage>
        <posterous:profileUrl>http://posterous.com/users/hd24ZvSQHwT46</posterous:profileUrl>
        <posterous:firstName>Brent</posterous:firstName>
        <posterous:lastName>Pabst</posterous:lastName>
        <posterous:nickName>Brent</posterous:nickName>
        <posterous:displayName>Brent Pabst</posterous:displayName>
      </posterous:author>
    </item>
    <item>
      <pubDate>Tue, 31 Jan 2012 06:36:59 -0800</pubDate>
      <title>Fired Over Personal E-Mail</title>
      <link>http://brentpabst.com/fired-over-personal-e-mail</link>
      <guid>http://brentpabst.com/fired-over-personal-e-mail</guid>
      <description>
        <![CDATA[<p>
	<p>So I recently read a headline and article (<a href="http://brntpb.st/zVainJ">http://brntpb.st/zVainJ</a>) that made me laugh.&nbsp; On the one hand I applaud any worker, in this case government researchers and scientists, who file complaints on organizations, both public and private, for doing things they shouldn&#8217;t be.&nbsp; However there is a simple rule in any business:</p><p></p><p><b>Do Not Use Your Work Computer For Personal Activities!</b></p><p></p><p>All large organizations either monitor activity because they can or because they are required to by law for legal reasons.&nbsp; If you want to use your personal e-mail at work just be aware that they most likely can read everything you send let alone take screenshots of your computer periodically as well.&nbsp; There is no assumption of privacy on the computers or networks of your workplace&#8230; ever!</p><p></p><p>Use your smartphone on the PUBLIC 3G or 4G signal if you really want privacy as even company provided Wi-Fi access can be monitored as if it were your own computer.&nbsp; I&#8217;m not saying the FDA was in the right here, but regardless as sensible professionals please remember your work computer is for work, and not personal activity.&nbsp; You never know who is watching.</p><p></p><p>-Brent</p>
	
</p>

<p><a href="http://brentpabst.com/fired-over-personal-e-mail">Permalink</a> 

	| <a href="http://brentpabst.com/fired-over-personal-e-mail#comment">Leave a comment&nbsp;&nbsp;&raquo;</a>

</p>]]>
      </description>
      <posterous:author>
        <posterous:userImage>http://posterous.com/images/profile/missing-user-75.png</posterous:userImage>
        <posterous:profileUrl>http://posterous.com/users/hd24ZvSQHwT46</posterous:profileUrl>
        <posterous:firstName>Brent</posterous:firstName>
        <posterous:lastName>Pabst</posterous:lastName>
        <posterous:nickName>Brent</posterous:nickName>
        <posterous:displayName>Brent Pabst</posterous:displayName>
      </posterous:author>
    </item>
    <item>
      <pubDate>Sat, 21 Jan 2012 15:32:03 -0800</pubDate>
      <title>Finally back in the states. Just as cold and gloomy as Munich.</title>
      <link>http://brentpabst.com/finally-back-in-the-states-just-as-cold-and-g</link>
      <guid>http://brentpabst.com/finally-back-in-the-states-just-as-cold-and-g</guid>
      <description>
        <![CDATA[<p>
	<div class='p_embed p_image_embed'>
<a href="http://getfile8.posterous.com/getfile/files.posterous.com/brentpabst/15DxK8c6OAHXpU0DupglehtnZ29KTZ3pfUXVBq6Tf4ndV8dvlqUXpJJVClrS/TempAttach.jpg.scaled.1000.jpg"><img alt="Tempattach" height="427" src="http://getfile6.posterous.com/getfile/files.posterous.com/brentpabst/Mme4QI05VZ9rBDM43hpkJEkFz3rwMuKo88RLzeuekWDek1wNqApn6B2uuwoH/TempAttach.jpg.scaled570.jpg" width="570" /></a>
</div>

	
</p>

<p><a href="http://brentpabst.com/finally-back-in-the-states-just-as-cold-and-g">Permalink</a> 

	| <a href="http://brentpabst.com/finally-back-in-the-states-just-as-cold-and-g#comment">Leave a comment&nbsp;&nbsp;&raquo;</a>

</p>]]>
      </description>
      <posterous:author>
        <posterous:userImage>http://posterous.com/images/profile/missing-user-75.png</posterous:userImage>
        <posterous:profileUrl>http://posterous.com/users/hd24ZvSQHwT46</posterous:profileUrl>
        <posterous:firstName>Brent</posterous:firstName>
        <posterous:lastName>Pabst</posterous:lastName>
        <posterous:nickName>Brent</posterous:nickName>
        <posterous:displayName>Brent Pabst</posterous:displayName>
      </posterous:author>
      <media:content type="image/jpeg" height="1222" width="1630" url="http://getfile5.posterous.com/getfile/files.posterous.com/brentpabst/Mme4QI05VZ9rBDM43hpkJEkFz3rwMuKo88RLzeuekWDek1wNqApn6B2uuwoH/TempAttach.jpg">
        <media:thumbnail height="375" width="500" url="http://getfile6.posterous.com/getfile/files.posterous.com/brentpabst/wCxwURzJoK4MgzMwtEy6jO6QLKsUKgkELdCHnicl58CKsPhRv4eACE6Q15yj/TempAttach.jpg.scaled.500.jpg" />
      </media:content>
    </item>
    <item>
      <pubDate>Sun, 15 Jan 2012 00:01:00 -0800</pubDate>
      <title>Checking Luggage When Traveling</title>
      <link>http://brentpabst.com/checking-luggage-when-traveling</link>
      <guid>http://brentpabst.com/checking-luggage-when-traveling</guid>
      <description>
        <![CDATA[<p>
	<p>Many business travelers will tell you never to check a bag.&nbsp; This is typically a true concept for simple trips or very short trips.&nbsp; But this is typically only true for domestic flights.&nbsp; It's simply too much work when traveling internationally to worry about bags.&nbsp; After all you only get one carry on and a personal item.&nbsp; For my female friends this means a backpack and a purse and that's it!</p>
<p>If you do travel internationally just a little bit of wisdom, especially if you are using different airlines throughout your trip:</p>
<p>- Make sure so hold on to your bag check tag.</p>
<p>This is the little receipt looking paper that you will get from the gate agent when you check your bag.&nbsp; Make sure to hold on to this receipt, if you lose it they may not be able to find your bag when you make another connection.</p>
<p>Either way, hold on to that tag and don't be too afraid to check, on longer flights it is totally worth the worry-free experience.</p>
<p>Safe travels!</p>
<p>-Brent</p>
	
</p>

<p><a href="http://brentpabst.com/checking-luggage-when-traveling">Permalink</a> 

	| <a href="http://brentpabst.com/checking-luggage-when-traveling#comment">Leave a comment&nbsp;&nbsp;&raquo;</a>

</p>]]>
      </description>
      <posterous:author>
        <posterous:userImage>http://posterous.com/images/profile/missing-user-75.png</posterous:userImage>
        <posterous:profileUrl>http://posterous.com/users/hd24ZvSQHwT46</posterous:profileUrl>
        <posterous:firstName>Brent</posterous:firstName>
        <posterous:lastName>Pabst</posterous:lastName>
        <posterous:nickName>Brent</posterous:nickName>
        <posterous:displayName>Brent Pabst</posterous:displayName>
      </posterous:author>
    </item>
    <item>
      <pubDate>Thu, 12 Jan 2012 10:39:53 -0800</pubDate>
      <title>Three Down One to Go!</title>
      <link>http://brentpabst.com/three-down-one-to-go-44863</link>
      <guid>http://brentpabst.com/three-down-one-to-go-44863</guid>
      <description>
        <![CDATA[<p>
	<div class='p_embed p_image_embed'>
<a href="http://getfile0.posterous.com/getfile/files.posterous.com/brentpabst/DWpfFah9XZwCG24l8G60nwTx18ibciQEGwM30XbD4mfqMoeM2ghROLo59zvL/P1000888.jpg.scaled.1000.jpg"><img alt="P1000888" height="428" src="http://getfile5.posterous.com/getfile/files.posterous.com/brentpabst/sp6ImnaaakDoUPYIBe0YtvspelFAZWCMGKwPPocGgEXt0mvNmzCLBdMsgCn6/P1000888.jpg.scaled570.jpg" width="570" /></a>
</div>
<p></p><div class="WordSection1"><p>Finally got three of these things done, now just the big one to go!</p><p></p></div>
	
</p>

<p><a href="http://brentpabst.com/three-down-one-to-go-44863">Permalink</a> 

	| <a href="http://brentpabst.com/three-down-one-to-go-44863#comment">Leave a comment&nbsp;&nbsp;&raquo;</a>

</p>]]>
      </description>
      <posterous:author>
        <posterous:userImage>http://posterous.com/images/profile/missing-user-75.png</posterous:userImage>
        <posterous:profileUrl>http://posterous.com/users/hd24ZvSQHwT46</posterous:profileUrl>
        <posterous:firstName>Brent</posterous:firstName>
        <posterous:lastName>Pabst</posterous:lastName>
        <posterous:nickName>Brent</posterous:nickName>
        <posterous:displayName>Brent Pabst</posterous:displayName>
      </posterous:author>
      <media:content type="image/jpeg" height="2736" width="3648" url="http://getfile7.posterous.com/getfile/files.posterous.com/brentpabst/sp6ImnaaakDoUPYIBe0YtvspelFAZWCMGKwPPocGgEXt0mvNmzCLBdMsgCn6/P1000888.jpg">
        <media:thumbnail height="375" width="500" url="http://getfile8.posterous.com/getfile/files.posterous.com/brentpabst/hQ70KqH32jQ9pXXV5iP49XCBuCdBmzKyy2nTAbyyLxuLiE4OPtA1rKUYK1id/P1000888.jpg.scaled.500.jpg" />
      </media:content>
    </item>
    <item>
      <pubDate>Wed, 11 Jan 2012 11:50:06 -0800</pubDate>
      <title>Cancer Free Once More!</title>
      <link>http://brentpabst.com/cancer-free-once-more</link>
      <guid>http://brentpabst.com/cancer-free-once-more</guid>
      <description>
        <![CDATA[<p>
	<div style="font-family: Calibri,sans-serif; font-size: 11pt;">Just picked mom up from Duke and all scans were clear of Lymphoma.&nbsp; 6 Months again!<br /></div>
	
</p>

<p><a href="http://brentpabst.com/cancer-free-once-more">Permalink</a> 

	| <a href="http://brentpabst.com/cancer-free-once-more#comment">Leave a comment&nbsp;&nbsp;&raquo;</a>

</p>]]>
      </description>
      <posterous:author>
        <posterous:userImage>http://posterous.com/images/profile/missing-user-75.png</posterous:userImage>
        <posterous:profileUrl>http://posterous.com/users/hd24ZvSQHwT46</posterous:profileUrl>
        <posterous:firstName>Brent</posterous:firstName>
        <posterous:lastName>Pabst</posterous:lastName>
        <posterous:nickName>Brent</posterous:nickName>
        <posterous:displayName>Brent Pabst</posterous:displayName>
      </posterous:author>
    </item>
    <item>
      <pubDate>Thu, 05 Jan 2012 11:09:04 -0800</pubDate>
      <title>Send Files via Skype using Windows Context Menu</title>
      <link>http://brentpabst.com/send-files-via-skype-using-windows-context-me</link>
      <guid>http://brentpabst.com/send-files-via-skype-using-windows-context-me</guid>
      <description>
        <![CDATA[<p>
	<p>So I was going to use the normal route of sending a file to a colleague today.&nbsp; Normally I either attach a file to an Outlook E-Mail or use the Windows context menu (Right-Click) to send the file as an e-mail attachment.&nbsp; I went with the context menu route today and found a feature I am not used to seeing&#8230; Skype!</p><p></p><p><div class='p_embed p_image_embed'>
<a href="http://getfile5.posterous.com/getfile/files.posterous.com/brentpabst/SGrQedCWMZQ9XlrJZHCiTWZOKABmBgR4zzYTLiNinYusFa34sSkrpQ9FRZvq/image001.png"><img alt="Image001" height="433" src="http://getfile4.posterous.com/getfile/files.posterous.com/brentpabst/SGrQedCWMZQ9XlrJZHCiTWZOKABmBgR4zzYTLiNinYusFa34sSkrpQ9FRZvq/image001.png.scaled570.png" width="570" /></a>
</div>
</p><p></p><p>Needless to say my colleague was also on Skype.&nbsp; Once I clicked on the Skype option it opened the normal Skype window where I could select the contact to send the file to.</p><p></p><p><div class='p_embed p_image_embed'>
<a href="http://getfile1.posterous.com/getfile/files.posterous.com/brentpabst/IkM7ECTK1sQWuBuo50DCSjknyrgFD7N1buaVy71X8S8ZmdfeX6D1werIqUee/image002.png"><img alt="Image002" height="432" src="http://getfile4.posterous.com/getfile/files.posterous.com/brentpabst/IkM7ECTK1sQWuBuo50DCSjknyrgFD7N1buaVy71X8S8ZmdfeX6D1werIqUee/image002.png.scaled570.png" width="570" /></a>
</div>
</p><p></p><p>Once I selected the contact it sent a normal File Transfer Request via Skype to my contact.</p><p></p><p>Pretty easy, and cool!</p><p></p><p>-Brent</p>
	
</p>

<p><a href="http://brentpabst.com/send-files-via-skype-using-windows-context-me">Permalink</a> 

	| <a href="http://brentpabst.com/send-files-via-skype-using-windows-context-me#comment">Leave a comment&nbsp;&nbsp;&raquo;</a>

</p>]]>
      </description>
      <posterous:author>
        <posterous:userImage>http://posterous.com/images/profile/missing-user-75.png</posterous:userImage>
        <posterous:profileUrl>http://posterous.com/users/hd24ZvSQHwT46</posterous:profileUrl>
        <posterous:firstName>Brent</posterous:firstName>
        <posterous:lastName>Pabst</posterous:lastName>
        <posterous:nickName>Brent</posterous:nickName>
        <posterous:displayName>Brent Pabst</posterous:displayName>
      </posterous:author>
      <media:content type="image/png" height="589" width="776" url="http://getfile5.posterous.com/getfile/files.posterous.com/brentpabst/SGrQedCWMZQ9XlrJZHCiTWZOKABmBgR4zzYTLiNinYusFa34sSkrpQ9FRZvq/image001.png">
        <media:thumbnail height="380" width="500" url="http://getfile6.posterous.com/getfile/files.posterous.com/brentpabst/tNMw5iilgQ3SYpAYphojQMmXXC2QC42TCTbhdPRzp57TcSFLPQOmXrCBZ3ng/image001.png.scaled.500.jpg" />
      </media:content>
      <media:content type="image/png" height="490" width="646" url="http://getfile1.posterous.com/getfile/files.posterous.com/brentpabst/IkM7ECTK1sQWuBuo50DCSjknyrgFD7N1buaVy71X8S8ZmdfeX6D1werIqUee/image002.png">
        <media:thumbnail height="379" width="500" url="http://getfile2.posterous.com/getfile/files.posterous.com/brentpabst/XLSExCAuXyCR4wp4mjwby6C77v7PFW5R4GUI03eXSZg2s6w83BpEfk8KxEkN/image002.png.scaled.500.jpg" />
      </media:content>
    </item>
    <item>
      <pubDate>Mon, 02 Jan 2012 10:48:00 -0800</pubDate>
      <title>Using DateTime2 with Entity Framework</title>
      <link>http://brentpabst.com/using-datetime2-with-entity-framework</link>
      <guid>http://brentpabst.com/using-datetime2-with-entity-framework</guid>
      <description>
        <![CDATA[<p>
	<p>A common problem posted all over the web is in regards to DateTime2 errors thrown by Entity Framework.&nbsp; Those problems are typically associated with the system generating invalid column and data types that are not supported by the older versions of MSSQL.&nbsp; Fixing those problems is typically pretty easy and requires an update to the EDMX XML to specify the right database version to target.</p>
<p>My issue however is that I actually want to use DateTime2 as the column data type.&nbsp; There are many reasons why you may want to do this and the benefits outweigh any risks associated with it.&nbsp; The problem is however that there is no DateTime2 data type in .NET, only DateTime so when the T-SQL code is generated for the database (in model first mode) it will utilize the default DateTime column type and not DateTime2.</p>
<p>The solution below will change all DateTime data types in your model to utilize DateTime2 SQL storage types.&nbsp; You cannot pick and choose easily which tables should use DateTime2 versus the default DateTime.&nbsp; The entire solution is based around modifying the default T4 template for your project.</p>
<ol>
<li>Browse to: <em>%ProgramFiles(x86)%\Microsoft Visual Studio 10.0\Common7\IDE\Extensions\Microsoft\Entity Framework Tools\DBGen</em></li>
<li>Copy the <em>SSDLToSQL10.tt</em> file to your project directory</li>
<li>Browse to <em>%ProgramFiles(x86)%\Microsoft Visual Studio 10.0\Common7\IDE\Extensions\Microsoft\Entity Framework Tools\Templates\Includes</em></li>
<li>Copy the <em>GenerateTSQL.Utility.ttinclude</em> file to your project directory.</li>
</ol>
<p><strong>Note:</strong> I like to keep my template files in a different folder from my models and a sub-directory in the templates folder to store the include files.</p>
<ol>
<li>
<div>Edit the SSDLToSQL10.tt file</div>
</li>
<li>
<div>Update the T4 file with the following code: <a href="http://codepaste.net/rchy2s">http://codepaste.net/rchy2s</a></div>
</li>
<li>
<div>Change the template filename in the EDMX Designer:</div>
</li>
</ol>
<p><div class='p_embed p_image_embed'>
<img alt="1-2-2012_2-07-17_pm" height="94" src="http://getfile5.posterous.com/getfile/files.posterous.com/temp-2012-01-02/kiHvruAthhhdefwsnnljheAnEafptIAChIvumAHljfjeHmhBvDjIoeAEcFBy/1-2-2012_2-07-17_PM.png.scaled570.png" width="474" />
</div>
</p>
<p>Now all you have to do is re-generate the model and the DateTime2 type should be used.</p>
<p>-Brent</p>
	
</p>

<p><a href="http://brentpabst.com/using-datetime2-with-entity-framework">Permalink</a> 

	| <a href="http://brentpabst.com/using-datetime2-with-entity-framework#comment">Leave a comment&nbsp;&nbsp;&raquo;</a>

</p>]]>
      </description>
      <posterous:author>
        <posterous:userImage>http://posterous.com/images/profile/missing-user-75.png</posterous:userImage>
        <posterous:profileUrl>http://posterous.com/users/hd24ZvSQHwT46</posterous:profileUrl>
        <posterous:firstName>Brent</posterous:firstName>
        <posterous:lastName>Pabst</posterous:lastName>
        <posterous:nickName>Brent</posterous:nickName>
        <posterous:displayName>Brent Pabst</posterous:displayName>
      </posterous:author>
      <media:content type="image/png" height="94" width="474" url="http://getfile3.posterous.com/getfile/files.posterous.com/temp-2012-01-02/kiHvruAthhhdefwsnnljheAnEafptIAChIvumAHljfjeHmhBvDjIoeAEcFBy/1-2-2012_2-07-17_PM.png">
        <media:thumbnail height="94" width="474" url="http://getfile5.posterous.com/getfile/files.posterous.com/temp-2012-01-02/kiHvruAthhhdefwsnnljheAnEafptIAChIvumAHljfjeHmhBvDjIoeAEcFBy/1-2-2012_2-07-17_PM.png.scaled500.png" />
      </media:content>
    </item>
    <item>
      <pubDate>Thu, 22 Dec 2011 11:07:15 -0800</pubDate>
      <title>Using a Higher Screen Resolution Effectively</title>
      <link>http://brentpabst.com/using-a-higher-screen-resolution-effectively</link>
      <guid>http://brentpabst.com/using-a-higher-screen-resolution-effectively</guid>
      <description>
        <![CDATA[<p>
	<p>As computers and specifically video cards and displays get better there is one common complaint amongst users.&nbsp; It&#8217;s the standard &#8220;It&#8217;s too small! I can&#8217;t read the screen!&#8221;&nbsp; I personally run two 1920x1200 Acer displays and my laptop has a built-in display running the same resolution.&nbsp; On the 24&#8221; Acer monitors that resolution isn&#8217;t bad at all, however on a smaller portable 17&#8221; Laptop screen things get a bit interesting.</p><p></p><p>What most folks do is simply decrease their screen resolution to make things bigger.&nbsp; However, the drawback here is that the video card and displays themselves don&#8217;t always support smaller formats well or at all so things tend to look disproportionate or out of focus, creating even more complaints.&nbsp; Here is a simple solution, built in to Windows, that helps with this problem while still using the higher, crisper, and cleaner resolutions:</p><p></p><p class="MsoListParagraph" style=""><span style="">1.<span style="font: 7.0pt Times New Roman;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span>Open the screen resolution window (Right-Click on the Desktop for the context menu)</p><p class="MsoListParagraph"><div class='p_embed p_image_embed'>
<img alt="Image001" height="184" src="http://getfile4.posterous.com/getfile/files.posterous.com/brentpabst/SVudLtHkT9ToJFgr1J0YireHnHGF7xZTzEt5FRPbFn1rn89eqfQ1glIl7i03/image001.png.scaled570.png" width="302" />
</div>
</p><p class="MsoListParagraph" style=""><span style="">2.<span style="font: 7.0pt Times New Roman;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span>Select the option at the bottom called &#8220;Make text and other items larger or smaller&#8221;</p><p class="MsoListParagraph"><div class='p_embed p_image_embed'>
<a href="http://getfile9.posterous.com/getfile/files.posterous.com/brentpabst/Fq72DER5maa1ai1nN6ZoETxYNvOFBVRxIFWkk5FbBK6PiOanIHiIfkADfxFX/image005.png"><img alt="Image005" height="475" src="http://getfile1.posterous.com/getfile/files.posterous.com/brentpabst/Fq72DER5maa1ai1nN6ZoETxYNvOFBVRxIFWkk5FbBK6PiOanIHiIfkADfxFX/image005.png.scaled570.png" width="570" /></a>
</div>
</p><p class="MsoListParagraph" style=""><span style="">3.<span style="font: 7.0pt Times New Roman;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span>From here you can now change the default sizing of the screen.&nbsp; Essentially this increases how text, buttons and Windows objects appear on the screen.</p><p class="MsoListParagraph"><div class='p_embed p_image_embed'>
<img alt="Image004" height="423" src="http://getfile3.posterous.com/getfile/files.posterous.com/brentpabst/4SJfAh976UofJhztmykq1h388BFEw82dotMCCcmRvz0PtePCZDbiHVlIrNHy/image004.png.scaled570.png" width="529" />
</div>
</p><p>I really like this solution, specifically because it does make certain buttons a bit larger.&nbsp; Having the larger minimize, maximize and close buttons is helpful.&nbsp; This is also a great procedure to use if you are dealing with a tablet or touchscreen interface running Windows as some of the built-in buttons are a bit small, especially for those of us with larger fingers!</p><p></p><p>Hope this helps someone!</p><p></p><p>-Brent</p>
	
</p>

<p><a href="http://brentpabst.com/using-a-higher-screen-resolution-effectively">Permalink</a> 

	| <a href="http://brentpabst.com/using-a-higher-screen-resolution-effectively#comment">Leave a comment&nbsp;&nbsp;&raquo;</a>

</p>]]>
      </description>
      <posterous:author>
        <posterous:userImage>http://posterous.com/images/profile/missing-user-75.png</posterous:userImage>
        <posterous:profileUrl>http://posterous.com/users/hd24ZvSQHwT46</posterous:profileUrl>
        <posterous:firstName>Brent</posterous:firstName>
        <posterous:lastName>Pabst</posterous:lastName>
        <posterous:nickName>Brent</posterous:nickName>
        <posterous:displayName>Brent Pabst</posterous:displayName>
      </posterous:author>
      <media:content type="image/png" height="184" width="302" url="http://getfile8.posterous.com/getfile/files.posterous.com/brentpabst/SVudLtHkT9ToJFgr1J0YireHnHGF7xZTzEt5FRPbFn1rn89eqfQ1glIl7i03/image001.png">
        <media:thumbnail height="184" width="302" url="http://getfile8.posterous.com/getfile/files.posterous.com/brentpabst/SVudLtHkT9ToJFgr1J0YireHnHGF7xZTzEt5FRPbFn1rn89eqfQ1glIl7i03/image001.png" />
      </media:content>
      <media:content type="image/png" height="423" width="529" url="http://getfile3.posterous.com/getfile/files.posterous.com/brentpabst/4SJfAh976UofJhztmykq1h388BFEw82dotMCCcmRvz0PtePCZDbiHVlIrNHy/image004.png">
        <media:thumbnail height="400" width="500" url="http://getfile4.posterous.com/getfile/files.posterous.com/brentpabst/xxOG4ivBXJxiWOSDofVS4GeM7UidTKLgcsvRprw8vl2rP6nCXTilylcFo9yy/image004.png.scaled.500.jpg" />
      </media:content>
      <media:content type="image/png" height="830" width="996" url="http://getfile9.posterous.com/getfile/files.posterous.com/brentpabst/Fq72DER5maa1ai1nN6ZoETxYNvOFBVRxIFWkk5FbBK6PiOanIHiIfkADfxFX/image005.png">
        <media:thumbnail height="417" width="500" url="http://getfile0.posterous.com/getfile/files.posterous.com/brentpabst/evK9779jsAZgdRYlXZuS69LL9ONMFbq930aKcNvTDqKXJPvMblxutSFKk34i/image005.png.scaled.500.jpg" />
      </media:content>
    </item>
    <item>
      <pubDate>Tue, 20 Dec 2011 18:29:58 -0800</pubDate>
      <title>Festival of Lights for Christmas</title>
      <link>http://brentpabst.com/festival-of-lights-for-christmas</link>
      <guid>http://brentpabst.com/festival-of-lights-for-christmas</guid>
      <description>
        <![CDATA[<p>
	<div class='p_embed p_video_embed'>
<a href="http://brentpabst.com/festival-of-lights-for-christmas"><img alt="" src="http://getfile2.posterous.com/getfile/video.posterous.com/brentpabst/HnqaT75W3zACKTK07toum6MgHXclU7ZG6gg2rtnp9jsDpTwquLuSFGa3ssT2/frame_0000.png" /></a>
<div class='p_embed_description'>
<strong>ad.mp4</strong>
<a href="http://brentpabst.com/festival-of-lights-for-christmas">Watch on Posterous</a>
</div>
</div>
<p></p><div><div style="font-family: Calibri,sans-serif; font-size: 11pt;">Visited Forsythe County with the family to see 4 miles of Christmas Lights... Pretty awesome!<p />Brent<br /></div></div>
	
</p>

<p><a href="http://brentpabst.com/festival-of-lights-for-christmas">Permalink</a> 

	| <a href="http://brentpabst.com/festival-of-lights-for-christmas#comment">Leave a comment&nbsp;&nbsp;&raquo;</a>

</p>]]>
      </description>
      <posterous:author>
        <posterous:userImage>http://posterous.com/images/profile/missing-user-75.png</posterous:userImage>
        <posterous:profileUrl>http://posterous.com/users/hd24ZvSQHwT46</posterous:profileUrl>
        <posterous:firstName>Brent</posterous:firstName>
        <posterous:lastName>Pabst</posterous:lastName>
        <posterous:nickName>Brent</posterous:nickName>
        <posterous:displayName>Brent Pabst</posterous:displayName>
      </posterous:author>
      <media:content type="video/vnd.objectvideo" fileSize="4760" url="http://getfile7.posterous.com/getfile/files.posterous.com/brentpabst/HnqaT75W3zACKTK07toum6MgHXclU7ZG6gg2rtnp9jsDpTwquLuSFGa3ssT2/ad.mp4" />
    </item>
    <item>
      <pubDate>Mon, 19 Dec 2011 10:34:00 -0800</pubDate>
      <title>Merry Christmas and Happy New Year!</title>
      <link>http://brentpabst.com/merry-christmas-and-happy-new-year</link>
      <guid>http://brentpabst.com/merry-christmas-and-happy-new-year</guid>
      <description>
        <![CDATA[<p>
	<p>Well it's funny that 2011 is almost over.&nbsp; It's been a long year and a lot has happenned.&nbsp; Here's looking forward to 2012 and all of the "crazyness" it might bring.</p>
<p><div class='p_embed p_image_embed'>
<a href="http://getfile1.posterous.com/getfile/files.posterous.com/temp-2011-12-19/siGJxDndkxozymACbuJfxlHzpcnDxIyekCEnbbycCFHnraEkrEpcADmFqrqH/P1000886.JPG.scaled1000.jpg"><img alt="P1000886" height="760" src="http://getfile3.posterous.com/getfile/files.posterous.com/temp-2011-12-19/siGJxDndkxozymACbuJfxlHzpcnDxIyekCEnbbycCFHnraEkrEpcADmFqrqH/P1000886.JPG.scaled570.jpg" width="570" /></a>
</div>
</p>
<p>-Brent</p>
	
</p>

<p><a href="http://brentpabst.com/merry-christmas-and-happy-new-year">Permalink</a> 

	| <a href="http://brentpabst.com/merry-christmas-and-happy-new-year#comment">Leave a comment&nbsp;&nbsp;&raquo;</a>

</p>]]>
      </description>
      <posterous:author>
        <posterous:userImage>http://posterous.com/images/profile/missing-user-75.png</posterous:userImage>
        <posterous:profileUrl>http://posterous.com/users/hd24ZvSQHwT46</posterous:profileUrl>
        <posterous:firstName>Brent</posterous:firstName>
        <posterous:lastName>Pabst</posterous:lastName>
        <posterous:nickName>Brent</posterous:nickName>
        <posterous:displayName>Brent Pabst</posterous:displayName>
      </posterous:author>
      <media:content type="image/jpeg" height="3648" width="2736" url="http://getfile9.posterous.com/getfile/files.posterous.com/temp-2011-12-19/siGJxDndkxozymACbuJfxlHzpcnDxIyekCEnbbycCFHnraEkrEpcADmFqrqH/P1000886.JPG">
        <media:thumbnail height="667" width="500" url="http://getfile7.posterous.com/getfile/files.posterous.com/temp-2011-12-19/siGJxDndkxozymACbuJfxlHzpcnDxIyekCEnbbycCFHnraEkrEpcADmFqrqH/P1000886.JPG.scaled500.jpg" />
      </media:content>
    </item>
    <item>
      <pubDate>Mon, 12 Dec 2011 19:21:00 -0800</pubDate>
      <title>Three Down... One to Go.</title>
      <link>http://brentpabst.com/three-down-one-to-go</link>
      <guid>http://brentpabst.com/three-down-one-to-go</guid>
      <description>
        <![CDATA[<p>
	<p>I just submitted and completed my final assignment towards my Masters degree in Information Systems.&nbsp; I'm on a bit of a break now until next year when I continue on a three year journey towards my Doctoral degree.</p>
<p>Wish me luck!</p>
<p>Brent</p>
	
</p>

<p><a href="http://brentpabst.com/three-down-one-to-go">Permalink</a> 

	| <a href="http://brentpabst.com/three-down-one-to-go#comment">Leave a comment&nbsp;&nbsp;&raquo;</a>

</p>]]>
      </description>
      <posterous:author>
        <posterous:userImage>http://posterous.com/images/profile/missing-user-75.png</posterous:userImage>
        <posterous:profileUrl>http://posterous.com/users/hd24ZvSQHwT46</posterous:profileUrl>
        <posterous:firstName>Brent</posterous:firstName>
        <posterous:lastName>Pabst</posterous:lastName>
        <posterous:nickName>Brent</posterous:nickName>
        <posterous:displayName>Brent Pabst</posterous:displayName>
      </posterous:author>
    </item>
    <item>
      <pubDate>Fri, 09 Dec 2011 11:00:00 -0800</pubDate>
      <title>Frannie and Oliver with Howling Gus</title>
      <link>http://brentpabst.com/frannie-and-oliver-with-howling-gus</link>
      <guid>http://brentpabst.com/frannie-and-oliver-with-howling-gus</guid>
      <description>
        <![CDATA[<p>
	<p>It's almost a complete chorus....<div class='p_embed p_audio_embed'>
<a href="http://brentpabst.com/frannie-and-oliver-with-howling-gus"><img alt="" src="http://posterous.com/images/filetypes/unknown.png" /></a>
<div class='p_embed_description'>
<span class='p_id3'>Gus_Howling.wma</span>
<a href="http://brentpabst.com/frannie-and-oliver-with-howling-gus">Listen on Posterous</a>
</div>
</div>
</p>
	
</p>

<p><a href="http://brentpabst.com/frannie-and-oliver-with-howling-gus">Permalink</a> 

	| <a href="http://brentpabst.com/frannie-and-oliver-with-howling-gus#comment">Leave a comment&nbsp;&nbsp;&raquo;</a>

</p>]]>
      </description>
      <posterous:author>
        <posterous:userImage>http://posterous.com/images/profile/missing-user-75.png</posterous:userImage>
        <posterous:profileUrl>http://posterous.com/users/hd24ZvSQHwT46</posterous:profileUrl>
        <posterous:firstName>Brent</posterous:firstName>
        <posterous:lastName>Pabst</posterous:lastName>
        <posterous:nickName>Brent</posterous:nickName>
        <posterous:displayName>Brent Pabst</posterous:displayName>
      </posterous:author>
      <enclosure type="audio/mpeg" length="737000" url="http://getfile0.posterous.com/getfile/video.posterous.com/temp-2011-12-09/fgsktwxheFceyGfDCupkvwClewBqwyDBnseiAkFhkCxmIeGvmeyrHdeDaIrH/Gus_Howling.mp3" />
      <media:content type="audio/mpeg" fileSize="737" url="http://getfile0.posterous.com/getfile/video.posterous.com/temp-2011-12-09/fgsktwxheFceyGfDCupkvwClewBqwyDBnseiAkFhkCxmIeGvmeyrHdeDaIrH/Gus_Howling.mp3">
        <media:title type="plain">
 -         </media:title>
      </media:content>
    </item>
    <item>
      <pubDate>Fri, 11 Nov 2011 04:32:54 -0800</pubDate>
      <title>It's Veteran's Day!</title>
      <link>http://brentpabst.com/its-veterans-day</link>
      <guid>http://brentpabst.com/its-veterans-day</guid>
      <description>
        <![CDATA[<p>
	<div style="font-family: Calibri,sans-serif; font-size: 11pt;">I'm not sure one day is enough to be thankful for all those that have served, especially those who have fallen.<p />A big thank you to all my family and friends who still serve today, be safe!<p />Brent<br /></div>
	
</p>

<p><a href="http://brentpabst.com/its-veterans-day">Permalink</a> 

	| <a href="http://brentpabst.com/its-veterans-day#comment">Leave a comment&nbsp;&nbsp;&raquo;</a>

</p>]]>
      </description>
      <posterous:author>
        <posterous:userImage>http://posterous.com/images/profile/missing-user-75.png</posterous:userImage>
        <posterous:profileUrl>http://posterous.com/users/hd24ZvSQHwT46</posterous:profileUrl>
        <posterous:firstName>Brent</posterous:firstName>
        <posterous:lastName>Pabst</posterous:lastName>
        <posterous:nickName>Brent</posterous:nickName>
        <posterous:displayName>Brent Pabst</posterous:displayName>
      </posterous:author>
    </item>
    <item>
      <pubDate>Sat, 05 Nov 2011 09:54:05 -0700</pubDate>
      <title>Remember, Remember the 5th of November, the gunpowder treason and plot. I know of no reason why it should ev'er be forgot!</title>
      <link>http://brentpabst.com/remember-remember-the-5th-of-november-the-gun</link>
      <guid>http://brentpabst.com/remember-remember-the-5th-of-november-the-gun</guid>
      <description>
        <![CDATA[<p>
	
	
</p>

<p><a href="http://brentpabst.com/remember-remember-the-5th-of-november-the-gun">Permalink</a> 

	| <a href="http://brentpabst.com/remember-remember-the-5th-of-november-the-gun#comment">Leave a comment&nbsp;&nbsp;&raquo;</a>

</p>]]>
      </description>
      <posterous:author>
        <posterous:userImage>http://posterous.com/images/profile/missing-user-75.png</posterous:userImage>
        <posterous:profileUrl>http://posterous.com/users/hd24ZvSQHwT46</posterous:profileUrl>
        <posterous:firstName>Brent</posterous:firstName>
        <posterous:lastName>Pabst</posterous:lastName>
        <posterous:nickName>Brent</posterous:nickName>
        <posterous:displayName>Brent Pabst</posterous:displayName>
      </posterous:author>
    </item>
    <item>
      <pubDate>Fri, 21 Oct 2011 11:59:32 -0700</pubDate>
      <title>Pabst Productions is no more</title>
      <link>http://brentpabst.com/pabst-productions-is-no-more</link>
      <guid>http://brentpabst.com/pabst-productions-is-no-more</guid>
      <description>
        <![CDATA[<p>
	<p>Well the official notice came in yesterday from the Secretary of State&#8217;s office.&nbsp; Pabst Productions, Inc. has officially been dissolved as a North Carolina Corporation.</p><p></p><p>Thanks to everyone who participated, helped with, worked for and overall knew about the company.&nbsp; Don&#8217;t worry there are other ideas and plans on the horizon.</p><p></p><p>Thanks,</p><p>Brent</p>
	
</p>

<p><a href="http://brentpabst.com/pabst-productions-is-no-more">Permalink</a> 

	| <a href="http://brentpabst.com/pabst-productions-is-no-more#comment">Leave a comment&nbsp;&nbsp;&raquo;</a>

</p>]]>
      </description>
      <posterous:author>
        <posterous:userImage>http://posterous.com/images/profile/missing-user-75.png</posterous:userImage>
        <posterous:profileUrl>http://posterous.com/users/hd24ZvSQHwT46</posterous:profileUrl>
        <posterous:firstName>Brent</posterous:firstName>
        <posterous:lastName>Pabst</posterous:lastName>
        <posterous:nickName>Brent</posterous:nickName>
        <posterous:displayName>Brent Pabst</posterous:displayName>
      </posterous:author>
    </item>
    <item>
      <pubDate>Wed, 19 Oct 2011 14:41:23 -0700</pubDate>
      <title>Using your Work Outlook Calendar for Personal Events</title>
      <link>http://brentpabst.com/using-your-work-outlook-calendar-for-personal</link>
      <guid>http://brentpabst.com/using-your-work-outlook-calendar-for-personal</guid>
      <description>
        <![CDATA[<p>
	<p>So my boss made a comment that he thought the entire IT department could read his e-mail one day.&nbsp; We recently switched to Office 365 and as many mail administrators know it is possible to grant yourself access to other user&#8217;s mailboxes and poke around in most e-mail systems, Exchange included.&nbsp; There are valid reasons for this like when a person has an assistant or multiple people using a shared mailbox.</p><p></p><p>Regardless the question came up, what if I DO NOT want anyone else to see an event on my personal calendar, especially if I provide access to my mailbox to other users.&nbsp; Luckily in Outlook and Exchange Web App this is fairly easy to do.&nbsp; After all you probably don&#8217;t want to let you assistant know you are going for a colonoscopy but you still want other employees to simply know you are out of the office!</p><p></p><p>When you compose a new message in Outlook simply mark the button that says &#8220;Private&#8221; on the ribbon.&nbsp; This will hide the details in your Free/Busy information and will by default hide it from anyone who has read permissions to your calendar.&nbsp; Please note however that anyone with at least read permissions could get access to the details if they were technically inclined.</p><p></p><p>You can get more information about this topic from Microsoft here: <a href="http://office.microsoft.com/en-us/outlook-help/make-an-appointment-or-meeting-private-HP001230355.aspx">http://office.microsoft.com/en-us/outlook-help/make-an-appointment-or-meeting-private-HP001230355.aspx</a></p><p></p><p>Thanks,</p><p>Brent</p>
	
</p>

<p><a href="http://brentpabst.com/using-your-work-outlook-calendar-for-personal">Permalink</a> 

	| <a href="http://brentpabst.com/using-your-work-outlook-calendar-for-personal#comment">Leave a comment&nbsp;&nbsp;&raquo;</a>

</p>]]>
      </description>
      <posterous:author>
        <posterous:userImage>http://posterous.com/images/profile/missing-user-75.png</posterous:userImage>
        <posterous:profileUrl>http://posterous.com/users/hd24ZvSQHwT46</posterous:profileUrl>
        <posterous:firstName>Brent</posterous:firstName>
        <posterous:lastName>Pabst</posterous:lastName>
        <posterous:nickName>Brent</posterous:nickName>
        <posterous:displayName>Brent Pabst</posterous:displayName>
      </posterous:author>
    </item>
  </channel>
</rss>

