<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
    <title>Powershell.CA</title>
    <link rel="alternate" type="text/html" href="http://www.energizedtech.com/" />
    <link rel="self" type="application/atom+xml" href="http://www.energizedtech.com/atom.xml" />
    <id>tag:www.energizedtech.com,2008-07-26://1</id>
    <updated>2012-01-26T05:42:28Z</updated>
    <subtitle>A site dedicated to enabling Network Admins and Techs to enabling themselves to easily manage systems with Powershell</subtitle>
    <generator uri="http://www.sixapart.com/movabletype/">Movable Type Personal 4.12</generator>

<entry>
    <title>List all of the Parameters for a Cmdlet in Windows Powershell</title>
    <link rel="alternate" type="text/html" href="http://www.energizedtech.com/2012/01/list-all-of-the-parameters-for.html" />
    <id>tag:www.energizedtech.com,2012://1.534</id>

    <published>2012-01-26T05:42:28Z</published>
    <updated>2012-01-26T05:42:28Z</updated>

    <summary>Ok… I was playing. I’ll admit it. When you do GET-HELP on some cmdlets, especially ones with a LARGE abundance of available parameters, they might appear a little daunting. I used to do a little trick by copying the output...</summary>
    <author>
        <name>Sean Kearney</name>
        <uri>http://ye110beard.spaces.live.com</uri>
    </author>
    
    
    <content type="html" xml:lang="en" xml:base="http://www.energizedtech.com/">
        <![CDATA[<p>Ok… I was playing. I’ll admit it.</p>  <p>When you do GET-HELP on some cmdlets, especially ones with a LARGE abundance of available parameters, they might appear a little daunting.</p>  <p>I used to do a little trick by copying the output under “SYNTAX” on the GET-HELP. I would then paste it into my favorite Word processor (Microsoft Word 2010 naturally) and do two quick Search/Replace operations to pull the lines together and then split based upon the display of the brackets “[]” in the display. </p>  <p>That little trick would give me a nice viewable and easy to understand list of the parameters available.</p>  <p>I am now more comfortable with sticking my fingers under the hood (and not getting burned or snipped by spinning Radiator fans) with Powershell and decided there HAD to (I mean with a big giant Heaping CAPITAL H) HAD TO be a Powershell way.</p>  <p>I played with the properties exposed from GET-HELP. I made the incorrect presumption the output was string. Then I forgot Rule 1 in Powershell.</p>  <p>“All output is an Object”</p>  <p>Turned out the Object in question had some interesting properties available, namely one called “SYNTAX”. On a whim, I wondered if the Syntax NoteProperty was the “How to use Powershell Syntax” from GET-HELP. So I popped it open</p>  <p><strong><em></em></strong></p>  <p><strong><em>(GET-HELP GET-QADUSER).Syntax</em></strong></p>    <p><a href="http://www.energizedtech.com/Windows-Live-Writer/9e95ffe54e14_9A8/image_thumb1_2.png"><img title="image_thumb1" style="border-top: 0px; border-right: 0px; background-image: none; border-bottom: 0px; padding-top: 0px; padding-left: 0px; margin: 0px; border-left: 0px; display: inline; padding-right: 0px" border="0" alt="image_thumb1" src="http://www.energizedtech.com/Windows-Live-Writer/9e95ffe54e14_9A8/image_thumb1_thumb.png" width="591" height="535" /></a></p>  <p>“Jumpin’ June Bugs!” I screamed out. It was! So again another “GET-MEMBER” to see what this might yield.</p>  <p><strong><em></em></strong></p>  <p><strong><em>(GET-HELP GET-QADUSER).Syntax | GET-MEMBER</em></strong></p>    <p><a href="http://www.energizedtech.com/Windows-Live-Writer/9e95ffe54e14_9A8/image_thumb3_2.png"><img title="image_thumb3" style="border-top: 0px; border-right: 0px; background-image: none; border-bottom: 0px; padding-top: 0px; padding-left: 0px; margin: 0px; border-left: 0px; display: inline; padding-right: 0px" border="0" alt="image_thumb3" src="http://www.energizedtech.com/Windows-Live-Writer/9e95ffe54e14_9A8/image_thumb3_thumb.png" width="590" height="155" /></a></p>  <p>“SyntaxItem” now…. but it was a NoteProperty. I wanted to see just what it would expose. So a quick “SELECT-OBJECT” out of my sleeve later</p>  <p><strong><em></em></strong></p>  <p><strong><em>(GET-HELP GET-QADUSER).Syntax | SELECT-OBJECT –ExpandProperty SyntaxItem</em></strong></p>    <p><a href="http://www.energizedtech.com/Windows-Live-Writer/9e95ffe54e14_9A8/image_thumb5_2.png"><img title="image_thumb5" style="border-top: 0px; border-right: 0px; background-image: none; border-bottom: 0px; padding-top: 0px; padding-left: 0px; margin: 0px; border-left: 0px; display: inline; padding-right: 0px" border="0" alt="image_thumb5" src="http://www.energizedtech.com/Windows-Live-Writer/9e95ffe54e14_9A8/image_thumb5_thumb.png" width="514" height="61" /></a></p>  <p>“AHA! There’s the tricky fellow hiding inside!” So another piece to open up with SELECT-OBJECT…</p>  <p><strong><em></em></strong></p>  <p><strong><em>(GET-HELP GET-QADUSER).Syntax | SELECT-OBJECT –ExpandProperty SyntaxItem | SELECT-OBJECT –ExpandProperty parameter</em></strong></p>    <p><a href="http://www.energizedtech.com/Windows-Live-Writer/9e95ffe54e14_9A8/image_thumb7_2.png"><img title="image_thumb7" style="border-top: 0px; border-right: 0px; background-image: none; border-bottom: 0px; padding-top: 0px; padding-left: 0px; margin: 0px; border-left: 0px; display: inline; padding-right: 0px" border="0" alt="image_thumb7" src="http://www.energizedtech.com/Windows-Live-Writer/9e95ffe54e14_9A8/image_thumb7_thumb.png" width="571" height="531" /></a></p>  <p>WHOOOOOOSH!!! The screen filled with the familiar “Detailed” data from help. But again, I learned … run a GET-MEMBER to see what the object is exposing….</p>  <p><strong><em></em></strong></p>  <p><strong><em>(GET-HELP GET-QADUSER).Syntax | SELECT-OBJECT –ExpandProperty SyntaxItem | SELECT-OBJECT –ExpandProperty parameter | GET-MEMBER</em></strong></p>    <p><a href="http://www.energizedtech.com/Windows-Live-Writer/9e95ffe54e14_9A8/image_thumb9_2.png"><img title="image_thumb9" style="border-top: 0px; border-right: 0px; background-image: none; border-bottom: 0px; padding-top: 0px; padding-left: 0px; margin: 0px; border-left: 0px; display: inline; padding-right: 0px" border="0" alt="image_thumb9" src="http://www.energizedtech.com/Windows-Live-Writer/9e95ffe54e14_9A8/image_thumb9_thumb.png" width="577" height="286" /></a></p>  <p>I took a shot that “Name” might be the parameter name, so yet one more SELECT-OBJECT and the fingers crossed…</p>  <p><strong><em></em></strong></p>  <p><strong><em>(GET-HELP GET-QADUSER).Syntax | SELECT-OBJECT –ExpandProperty SyntaxItem | SELECT-OBJECT –ExpandProperty parameter | SELECT-OBJECT name</em></strong></p>    <p><a href="http://www.energizedtech.com/Windows-Live-Writer/9e95ffe54e14_9A8/image_thumb12_2.png"><img title="image_thumb12" style="border-top: 0px; border-right: 0px; background-image: none; border-bottom: 0px; padding-top: 0px; padding-left: 0px; border-left: 0px; display: inline; padding-right: 0px" border="0" alt="image_thumb12" src="http://www.energizedtech.com/Windows-Live-Writer/9e95ffe54e14_9A8/image_thumb12_thumb.png" width="516" height="480" /></a></p>  <p>JACKPOT! I had it! An easier way to view the names! Now to make this into something useful! A regular script to pull the data out. The only parameter I was really supplying would be the results of a GET-HELP on any Cmdlet I had.</p>  <p>-------- Begin Script --------</p>  <p><strong><em>param($HelpData)</em></strong></p>  <p><strong><em>($HelpData).Syntax | SELECT-OBJECT –ExpandProperty SyntaxItem | SELECT-OBJECT –ExpandProperty parameter | SELECT-OBJECT name</em></strong></p>  <p>------- EndScript -------</p>  <p>So most of the time I’m ok reading with a GET-HELP, but now for those cmdlets with more parameters than I can imagine, I can at least get them out in a nice clean list to see what I can work with. Now to find out all I have to do is run my script like so</p>  <p>./LISTPARAMETERS.PS1 –HelpData (GET-HELP GET-CHILDITEM)</p>  <p>To get all the parameters in a nice list from GET-CHILDITEM. I’m thinking this should make working with the WPF stuff a little easier. Now those, THOSE have some parameters <img class="wlEmoticon wlEmoticon-smile" style="border-top-style: none; border-bottom-style: none; border-right-style: none; border-left-style: none" alt="Smile" src="http://www.energizedtech.com/Windows-Live-Writer/9e95ffe54e14_9A8/wlEmoticon-smile_2.png" /></p>  <p>Remember, the Power of Shell is in YOU</p>  <p>Sean    <br />The Energized Tech</p>]]>
        
    </content>
</entry>

<entry>
    <title>WRITE-HOST (GET-DATE-year 2011-uformat &quot;%Y&quot;)&quot;A Time to Reflect&quot;</title>
    <link rel="alternate" type="text/html" href="http://www.energizedtech.com/2011/12/writehost-getdateyear-2011ufor.html" />
    <id>tag:www.energizedtech.com,2011://1.533</id>

    <published>2012-01-01T02:14:21Z</published>
    <updated>2012-01-01T02:15:09Z</updated>

    <summary>I think if there is ever a year that kept me busy as an IT Professional and as an MVP, it will be 2011. If there was ever a year I could say &quot;Wow, I can&apos;t believe all that just...</summary>
    <author>
        <name>Sean Kearney</name>
        <uri>http://ye110beard.spaces.live.com</uri>
    </author>
    
    <category term="kraken" label="Kraken" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://www.energizedtech.com/">
        <![CDATA[<p>I think if there is ever a year that kept me busy as an IT Professional and as an MVP, it will be 2011. If there was ever a year I could say "Wow, I can't believe all that just happened!" it will be 2011.</p>
<p>Where to start? How about how I finished 2010?</p>
<p>I was asked to pull together a little article or two for the Holidays last year for "Hey Scripting Guy". What I ended up placing online for the Holiday Season was the FIRST EVER Holiday Special done by a computer company. Simply titled 'A Powershell Carol' it was a 7 day long series (Complete with Podcasted episodes) about a mythical Character called "Ebenezer Script" complete with a Holiday theme song. It ended appropriately on December 25th 2010.</p>
<p>From that, well things just started getting crazy. I had several events I had to present for the Springboard Technical Experts Program. During all of this I scrambled to sort out my paperwork so I could finally make my first International flight in late February to (*gasp*) Redmond Washington to the MVP Conference.</p>
<p>Setting a goal and pursuing your dreams, if anybody asks you it is highly worth it. I actually found myself on my Birthday standing in the entryway to Microsoft with a good friend and fellow MVP Ragnar Harper. Ragnar is now with Microsoft but at the time, Crayon a cool Norweigan company that redid "Highway to Powershell" in the Heroes Happen Here launch in 2008. </p>
<p>Ragnar (like many people I have met online and recently) is a good friend I am glad I've met up with. </p>
<p>He took my picture in front of the Microsoft Logo where I nearly broke down in tears for the joy of it.</p>
<p>As many of you who know me well, I decided long ago to try and pursue Microsoft as a career. I have not given up, but the pursuit of that dream has led me towards engaging the community in my own unique way. It has also seen my career grow as left the world of Small Business into stepping into a small Division in a Fortune 15 corporation. Helping encourage others to pursue their own and helping others out in Powershell and learning far more about the larger world. </p>
<p>Many years ago I just pictured Microsoft as "some mythical place I would never see". It was so far away at the time, I couldn't even afford the flight. I turned down my dreams of working there since I didn't have the money make the flight. I actually believed at one point I couldn't do it and would never stand in that doorway.</p>
<p>Then I saw myself in that hallway, heard the voices, saw the magic floating in the air. I broke down realizing that Redmond was EXACTLY the wonderful place I always thought it was. I so happy, even not working there, to stand in such a beautiful place which co-existed happily with nature itself. All the words and the descriptions from everybody on the team at Microsoft Jobs Blog, it paled to the actual site that was the head Office for Microsoft.</p>
<p>While there, I met many of the Powershell MVP's and the team themselves, saw Steve Ballmer on stage, Proudly Chanted with the rest of the Canadian contingent and sang "O Canada" as loud as I could. Also while on campus I was interviewed by Dmitry Sotnikov of Quest software. My voice was barely recovering after the cheering and screaming from earlier that morning. I even met a friend I taken to recently, Shane Hoey one of the newest MVP's in Windows Powershell. Even Ed "Hey Scripting Guy" and Theresa made it to the conference!</p>
<p>Of course my good friend Adam (AdamBomb00) Carter passed along a little token of his esteem for my Birthday. <img class="wlEmoticon wlEmoticon-smile" style="BORDER-TOP-STYLE: none; BORDER-BOTTOM-STYLE: none; BORDER-RIGHT-STYLE: none; BORDER-LEFT-STYLE: none" alt="Smile" src="file:///C:/Users/administrator/AppData/Local/Temp/WindowsLiveWriter1286139640/supfiles187A201D/wlEmoticon-smile2.png" /></p>
<p>And as pictures will show, I did not want to leave. I'm not making it up. Just search this blog for my "Long Road to Redmond" posts in March and you will see my genuine reaction to Redmond! It's not just "Geeky" cool. It is an amazing place beyond just intelligence; it is one of THE most collaborative and multicultural places I have ever encountered or imagined!</p>
<p>A short bit after the conference I went and did something I always wanted to do, for my own interest, for charity, because it was there. I climbed the CN Tower. Finished it in just under 30 minutes too. (Which isn't bad for a fat overweight 190 pound IT Pro that doesn't exercise!) By the way, I encourage anyone out there who is interested, give it a shot. It's tall, tiring and the most exhilarating feeling you'll get when you finish!</p>
<p>From there I went on to preparing and presenting a presentation at the first ever Powershell Deep Dive in Las Vegas Nevada. I had some interesting events occur. The flight goofed and had to move me on a different plane which was (cough cough cough) unfortunately FIRST CLASS ! But of course the Yin comes with the Yang (namely my reservation being cancelled at the Red Rock Casino that MORNING while I was on the plane, SHAME ON YOU Red Rock!) but to my rescue came a person I believe should be an MVP right now, Steven Murawski. "Hey, I have an extra bed here, wanna crash?" was his Tweet in a split second.</p>
<p>I was floored. A person who I'd only know online coming to my aid. Not knowing or caring at the moment if I smelled like a fried bag of Big Macs, he just took a chance to help somebody out.</p>
<p>I'd like to publicly tip my hat to Steve, If you're ever in Canada, you just call ! If I ever had to be locked in a hotel in Vegas judging thousands of Scripts for the 2011 Scripting Games, glad it was you man. </p>
<p>During the Deep Dive I did something I've done a few times (and contrary to popular belief it IS rare). It was a "Release of the Kraken" to the audience, exuberance, joy, passion before tearing into my Deep Dive on Powershell with the Legacy. I got the audience to wish my good buddy Hal Rottenberg (with the help of his co-host Jon Walz of the Powerscripting Podcast) a Happy Birthday. We of course naturally had it posted to Youtube.</p>
<p>Oh and did I mention just WHO I opened for? None other than THE (pant pant faint faint) BRUCE PAYETTE! If Jeffrey Snover is the father of Powershell, Bruce is certainly it's Mothe....er Grandfather? ... Or maybe Godfather is a cooler term. Yeah, I opened for the GODFATHER of POWERSHELL! "I feel SHELL!, yeah y'know you can Tell! I feel SHELL!"</p>
<p>As well I posted so much on "Hey Scripting Guy" between my series on "Working with the Legacy in Powershell" as well as "BATCHman" and Cmdlet" I became one of the first ever "Honorary Scripting Guys" on Technet!</p>
<p>I got the opportunity to present my Powershell sessions on working with Legacy systems at the first ever Powershell pre Conference via Live Meeting at Teched Australia (Thanks Shane Hoey and Chris Brownie) with great Presenters such as Richard Siddaway and Ed "Hey Scripting Guy where's my Tilley Hat" Wilson. </p>
<p>Of course the year didn't finish there. Techdays Toronto 2011 happened with MORE POWERSHELL as well as presenting some more Live Meeting sessions online. Oh I LOVE DOING this stuff!</p>
<p>I feel like I'm skipping on so much, and it's possible as so much happened in the year. I've seen friends pursuing their dreams achieve them, other friends grow in ways their never perceived and watched the world about myself change.</p>
<p>Near the end of the year were two more complete series on "Hey Scripting Guy" on MDT (Which actually got read by the Architect of MDT, Michael Niehaus!) and the Second ever Holiday Special "How Mr. Finch Learned Scripting". On top of that there was a complete nine days (possibly the beginning of more) on Canadian IT Professionals called "Powershell on the Way to Work", a series targeted at the 100% beginner.</p>
<p>Oh did I mention the icing? The COOLEST Part of all? The Part I am still slapping myself in the face saying "W000t! W000t! W0000t!"</p>
<p>I mean OTHER than getting to spend the DAY with friends like Ed and Theresa Wilson (Scripting Guy and Scripting Wife) and Mitch Garvis (probably the Best presenter out there and more skilled on Virtualization than most people). Oh no, this is MARGINALLY better than that even!</p>
<p>This is just a weeeeeeee bit better. I am writing my first ever book. I'm keeping my lips tight on the details but I can and will say "It's Powershell related" and DAMN will I be busy!</p>
<p>*KLUNK*</p>
<p>All this because I started believing in myself and went for my dreams. This year was too much to believe.</p>
<p>I have pass along thanks to so many that were my encouragement and inspiration over the years; Rodney, Rick, Damir, Mitch, Ruth, Adam, (Oh HELL! EVERY FREAKING Microsoft DPE worldwide and their managers especially John Oxley of Microsoft Canada), the Powershell team, Jeffrey Snover, all the MVP's everybody in the community including all of you egging me on in Twitter. Oh yes, Cory, Steve and Cameron you too <img class="wlEmoticon wlEmoticon-winkingsmile" style="BORDER-TOP-STYLE: none; BORDER-BOTTOM-STYLE: none; BORDER-RIGHT-STYLE: none; BORDER-LEFT-STYLE: none" alt="Winking smile" src="file:///C:/Users/administrator/AppData/Local/Temp/WindowsLiveWriter1286139640/supfiles187A201D/wlEmoticon-winkingsmile2.png" /></p>
<p>....and most importantly my family. None of this would or could have happened without their help.</p>
<p>Of course, the only thing that could top 2011 if my dreams were to be realized in 2012. (*hint hint poke the beast poke the beast*)</p>
<p>Maybe someday get to work with as a "Hey Scripting Guy" or Evangelize Microsoft Technology for the rest of my life for Microsoft, or possibly become a presenter as good as my buddy Mitch (*sigh, you're allowed to dream y'know <img class="wlEmoticon wlEmoticon-smile" style="BORDER-TOP-STYLE: none; BORDER-BOTTOM-STYLE: none; BORDER-RIGHT-STYLE: none; BORDER-LEFT-STYLE: none" alt="Smile" src="file:///C:/Users/administrator/AppData/Local/Temp/WindowsLiveWriter1286139640/supfiles187A201D/wlEmoticon-smile2.png" /> *)</p>
<p>All I can say for 2012 is this. You'd better prepare yourself, get the chains ready, bolt down the furniture and hide the expensive cookies. There's an MVP conference in barely two months. I have tasted what Redmond is, I'm not about to step away anymore. </p>
<p>Because the KRAKEN of Passion will be Released and there is NO holding me back now. You can note this for 2012.</p>
<p>It WILL be "The Year of the Kraken" - LOOK OUT MICROSOFT!</p>
<p>"W000000000000000000000000000000000000000000000000000tttttttttttttttttttttttttttttttttttt!!!!!!!!!!!!!!!!!!!!!!!!"</p>
<p>Sean <br />The Energized Tech</p>]]>
        
    </content>
</entry>

<entry>
    <title>Holy Cmdlets BATCHman-FREE Software for the Holidays</title>
    <link rel="alternate" type="text/html" href="http://www.energizedtech.com/2011/12/holy-cmdlets-batchmanfree-soft.html" />
    <id>tag:www.energizedtech.com,2011://1.532</id>

    <published>2011-12-20T23:27:36Z</published>
    <updated>2011-12-20T23:28:04Z</updated>

    <summary>No this is not spam. There is no catch. Powershell Inside, the company that SELLS NetCmdlets is presently offering their NetCmdlets for free until December 25th. This is normally a $99 package. In addition the Server based version is on...</summary>
    <author>
        <name>Sean Kearney</name>
        <uri>http://ye110beard.spaces.live.com</uri>
    </author>
    
    
    <content type="html" xml:lang="en" xml:base="http://www.energizedtech.com/">
        <![CDATA[<p>No this is not spam. </p>
<p>There is no catch.</p>
<p>Powershell Inside, the company that SELLS NetCmdlets is presently offering their NetCmdlets for free until December 25th. This is normally a $99 package. In addition the Server based version is on for $199 (Normally $399)</p>
<p>If you're interested the LAST DAY is Christmas Day, December 25th 2011. All you need to do is click on the link below and fill out the form. You will receive your license via email later.</p>
<p><a href="http://www.powershellinside.com/promo/xmas/?utm_source=PowerShellInside&amp;utm_campaign=d243a54cf2-PowerShell_NetCmdlets&amp;utm_medium=email" target="_blank"><font size="6"><strong><em>Free NETCmdlets from Powershell Inside for the Holidays</em></strong></font></a> 
<p>What have you got to lose? Even if you don't know deep levels of Powershell, take advantage of their generosity during this Holiday Season! 
<p>A $99 package for free? 
<p>What a GREAT Holiday Present!</p>]]>
        
    </content>
</entry>

<entry>
    <title>Using Powershell to create a Rich Text Format document-Part 1</title>
    <link rel="alternate" type="text/html" href="http://www.energizedtech.com/2011/12/using-powershell-to-create-a-r.html" />
    <id>tag:www.energizedtech.com,2011://1.531</id>

    <published>2011-12-12T04:32:31Z</published>
    <updated>2011-12-12T04:33:24Z</updated>

    <summary>Here&apos;s an interesting idea I have been playing with. Creating an RTF document within Powershell. Why RTF? RTF is &quot;Rich Text Format&quot;. If you haven&apos;t ever looked at the format of one, the file content is actually 100% ASCII. Even...</summary>
    <author>
        <name>Sean Kearney</name>
        <uri>http://ye110beard.spaces.live.com</uri>
    </author>
    
    
    <content type="html" xml:lang="en" xml:base="http://www.energizedtech.com/">
        <![CDATA[<p>Here's an interesting idea I have been playing with. Creating an RTF document within Powershell.</p>
<p>Why RTF? RTF is "Rich Text Format". If you haven't ever looked at the format of one, the file content is actually 100% ASCII. Even though an RTF when presented through Word holds fonts and formatting it is actually a pure ASCII file.</p>
<p>Nice! So it would be possible to generate files with nice fonts and formatting. Sure we could do it with Dcom and Microsoft Word but the advantage to an RTF is it could be generated as a report on a server with NO additional software, no changes to the system</p>
<p>So here's a sample RTF file using a Consolas 11 point font with a simple one line of 'Test'</p>
<p><font face="Consolas">Test Test Test <br /><font face="Consolas">Test Test Test <br /><font face="Consolas">Test Test Test</font></font></font></p>
<p>Viewing the document in the natural RTF code it appears like this</p>
<p><em>{\rtf1\ansi\ansicpg1252\deff0\nouicompat\deflang1033{\fonttbl{\f0\fnil\fcharset0 Consolas;}} <br />{\*\generator Riched20 6.2.8102}\viewkind4\uc1 <br />\pard\sa200\sl276\slmult1\f0\fs22\lang9 Test\tab Test \tab Test\par <br />Test\tab Test \tab Test\par <br />Test\tab Test \tab Test\par <br />}</em></p>
<p>Online Microsoft has a large document called <a href="http://www.microsoft.com/download/en/details.aspx?displaylang=en&amp;id=10725" target="_blank">"Word 2007: Rich Text Format (RTF) Specification, version 1.9.1"</a> which details all the nuances of this language. Believe me, it IS a language.</p>
<p>Really for a very basis RTF file we need a header, some content and the termination at the end. Looking in the document we can find out there are three key types of data within the document without getting too far into the mud. Control words, Control Symbols and Groups.</p>
<p>If you REALLY want to have some deep reading, dig into the document. But for today we'll show you all you need to make a Basic RTF Document.</p>
<p>Looking at this particular document we can see the words <strong>Test</strong> separated by <strong>\tab</strong> and ending with a <strong>\par </strong>for each line. Really this isn't much of a guess to figure out that <strong>\par </strong>is the ending of a paragraph and <strong>\tab </strong>are fields separated by Tabs.</p>
<p>So let's think, if this is pure text, all we need to do to create a Basic RTF is to grab everything BEFORE our content and looking at the bottom terminate it with a Parentheses <strong>}</strong></p>
<p><strong><em>$RTFHeader='{\rtf1\ansi\ansicpg1252\deff0\nouicompat\deflang1033{\fonttbl{\f0\fnil\fcharset0 Consolas;}}{\*\generator Riched20 6.2.8102}\viewkind4\uc1 \pard\sa200\sl276\slmult1\f0\fs22\lang9 '</em></strong></p>
<p><strong><em>$RTFFooter='}'</em></strong></p>
<p>So a basic RTF document could be created using a very simple ADD-CONTENT like this</p>
<p><strong><em>ADD-CONTENT C:\Powershell\Filename.rtf -value $RTFHeader -force</em></strong></p>
<p><strong><em>ADD-CONTENT C:\Powershell\Filename.rtf -value $RTFFooter </em></strong></p>
<p>There that's pretty simple. Now that means all we need is place text in the middle and end each line with a <strong>'\par '</strong> for a basic line.</p>
<p><strong><em>ADD-CONTENT C:\Powershell\Filename.rtf -value $RTFHeader -force</em></strong></p>
<p><strong><em>ADD-CONTENT C:\Powershell\Filename.rtf -value "This is a line in the RTF document\par" <br />ADD-CONTENT C:\Powershell\Filename.rtf -value "This is another line\tab separated by a tab\par " <br />ADD-CONTENT C:\Powershell\Filename.rtf -value "And one more\par"</em></strong></p>
<p><strong><em>ADD-CONTENT C:\Powershell\Filename.rtf -value $RTFFooter</em></strong></p>
<p>Nice! A Simple RTF file. Of course we can do more, and we'll play a bit tomorrow <img class="wlEmoticon wlEmoticon-smile" style="BORDER-TOP-STYLE: none; BORDER-BOTTOM-STYLE: none; BORDER-RIGHT-STYLE: none; BORDER-LEFT-STYLE: none" alt="Smile" src="file:///C:/Users/administrator/AppData/Local/Temp/WindowsLiveWriter1286139640/supfiles7BF1E9F/wlEmoticon-smile2.png" /></p>
<p>Sean <br />The Energized Tech</p>]]>
        
    </content>
</entry>

<entry>
    <title>Hello everybody! Happy Holidays and a little update and new Holiday Special on Scripting Guys</title>
    <link rel="alternate" type="text/html" href="http://www.energizedtech.com/2011/12/hello-everybody-happy-holidays.html" />
    <id>tag:www.energizedtech.com,2011://1.530</id>

    <published>2011-12-11T02:54:58Z</published>
    <updated>2011-12-11T02:54:58Z</updated>

    <summary>HELLO POWERSHELL PEOPLE! Yes the blog has been quiet but not for bad reasons.&#160; I’ll keep you updated on some things in my life. Work has been…. for lack of any other word…. BUSY! But what job isn’t?&#160; It Professionals...</summary>
    <author>
        <name>Sean Kearney</name>
        <uri>http://ye110beard.spaces.live.com</uri>
    </author>
    
    
    <content type="html" xml:lang="en" xml:base="http://www.energizedtech.com/">
        <![CDATA[<p>HELLO POWERSHELL PEOPLE!</p>  <p>Yes the blog has been quiet but not for bad reasons.&#160; I’ll keep you updated on some things in my life.</p>  <p>Work has been…. for lack of any other word…. BUSY! </p>  <p>But what job isn’t?&#160; It Professionals know that we have slow times and busy times.&#160; Our consolation we can always keep in mind is that “If I was bad at the job I’d have better and shorter hours, so we must be doing something right”</p>  <p>So I’m in a busy point right now along with writing some new material for “Hey Scripting Guy” for the Holiday season along with a new series for December for <a href="http://blogs.technet.com/canitpro" target="_blank">Canadian IT Professionals</a> called “Powershell on the Way to Work”.&#160; It’s intended for the IT Professional that is only comfortable with the GUI and needs to know the REAL basics on Powershell.</p>  <p>The series on <a href="http://www.scriptingguys.com">www.scriptingguys.com</a> is from December 19th to December 23rd called “How Mr. Finch Learned Scripting”.&#160;&#160; The Series on CanITPro is from Dec 12th to Dec 22nd.</p>  <p>There’s also this fun little sing-a-long whipped together for <a href="http://www.scriptingguys.com">www.scriptingguys.com</a> series called “The Scripting Song”</p>  <div id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:e6ed2bf2-3a1d-4de6-9cb5-06bf9582dd14" class="wlWriterEditableSmartContent" style="float: none; padding-bottom: 0px; padding-top: 0px; padding-left: 0px; margin: 0px; display: inline; padding-right: 0px"><div id="5d230e5f-eade-4547-bd16-03552f20b493" style="margin: 0px; padding: 0px; display: inline;"><div><a href="http://www.youtube.com/watch?v=YCDu9exhHdI&amp;feature=youtube_gdata_player" target="_new"><img src="http://www.energizedtech.com/Windows-Live-Writer/Hello-everybody--Happy-Holidays-and-a-li_128D3/video98453d60e671.jpg" style="border-style: none" galleryimg="no" onload="var downlevelDiv = document.getElementById('5d230e5f-eade-4547-bd16-03552f20b493'); downlevelDiv.innerHTML = &quot;&lt;div&gt;&lt;object width=\&quot;448\&quot; height=\&quot;252\&quot;&gt;&lt;param name=\&quot;movie\&quot; value=\&quot;http://www.youtube.com/v/YCDu9exhHdI?hl=en&amp;hd=1\&quot;&gt;&lt;\/param&gt;&lt;embed src=\&quot;http://www.youtube.com/v/YCDu9exhHdI?hl=en&amp;hd=1\&quot; type=\&quot;application/x-shockwave-flash\&quot; width=\&quot;448\&quot; height=\&quot;252\&quot;&gt;&lt;\/embed&gt;&lt;\/object&gt;&lt;\/div&gt;&quot;;" alt=""></a></div></div><div style="width:448px;clear:both;font-size:.8em">December 19th to December 23rd–www.scriptingguys.com</div></div>  <p>Plus something else popped along.&#160;&#160; A book.</p>  <p>I can’t reveal any of the details other than it IS Powershell related and that I am writing it.&#160;&#160;&#160; It will take time and effort, but nothing worth doing ever took a short time to do.&#160; <img class="wlEmoticon wlEmoticon-smile" style="border-top-style: none; border-bottom-style: none; border-right-style: none; border-left-style: none" alt="Smile" src="http://www.energizedtech.com/Windows-Live-Writer/Hello-everybody--Happy-Holidays-and-a-li_128D3/wlEmoticon-smile_2.png" /></p>  <p>I have this one song stuck in my head because of it.&#160;&#160; Karl Prosser keeps saying I should re-write it as “I’m writing a script, I’m writing a script” but for me I keep thinking “I’m writing a book, I’m writing a book”</p>  <div id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:7dc2a8e6-0beb-430f-aab7-7c899d1c2698" class="wlWriterEditableSmartContent" style="float: none; padding-bottom: 0px; padding-top: 0px; padding-left: 0px; margin: 0px; display: inline; padding-right: 0px"><div id="16ac3e1b-99dc-4f12-a04d-d86132096f18" style="margin: 0px; padding: 0px; display: inline;"><div><a href="http://www.youtube.com/watch?v=BuRuwR2JSXI&amp;ob=av3e" target="_new"><img src="http://www.energizedtech.com/Windows-Live-Writer/Hello-everybody--Happy-Holidays-and-a-li_128D3/video70f4745d8bd5.jpg" style="border-style: none" galleryimg="no" onload="var downlevelDiv = document.getElementById('16ac3e1b-99dc-4f12-a04d-d86132096f18'); downlevelDiv.innerHTML = &quot;&lt;div&gt;&lt;object width=\&quot;448\&quot; height=\&quot;252\&quot;&gt;&lt;param name=\&quot;movie\&quot; value=\&quot;http://www.youtube.com/v/BuRuwR2JSXI?hl=en&amp;hd=1\&quot;&gt;&lt;\/param&gt;&lt;embed src=\&quot;http://www.youtube.com/v/BuRuwR2JSXI?hl=en&amp;hd=1\&quot; type=\&quot;application/x-shockwave-flash\&quot; width=\&quot;448\&quot; height=\&quot;252\&quot;&gt;&lt;\/embed&gt;&lt;\/object&gt;&lt;\/div&gt;&quot;;" alt=""></a></div></div></div>  <p>Well I’ll be putting together more in the new year, asking Santa Claus if Mr. Ballmer could bring me in and generally diving into more Powershell.&#160; You DID all hear that CTP2 (Community Technology Preview) of the Windows Management Framework 3.0 is available right?&#160; If you haven’t it’s the coolest Christmas present ever <img class="wlEmoticon wlEmoticon-smile" style="border-top-style: none; border-bottom-style: none; border-right-style: none; border-left-style: none" alt="Smile" src="http://www.energizedtech.com/Windows-Live-Writer/Hello-everybody--Happy-Holidays-and-a-li_128D3/wlEmoticon-smile_2.png" /></p>  <p>I’ll see you all in 2012!&#160; I can sense somehow this will be an amazing year for all of us <img class="wlEmoticon wlEmoticon-smile" style="border-top-style: none; border-bottom-style: none; border-right-style: none; border-left-style: none" alt="Smile" src="http://www.energizedtech.com/Windows-Live-Writer/Hello-everybody--Happy-Holidays-and-a-li_128D3/wlEmoticon-smile_2.png" /></p>  <p>Sean    <br />The Energized Tech</p>]]>
        
    </content>
</entry>

<entry>
    <title>Put the Money in your Brains, and so much to see TECHDAYS_CA is Right here for me!</title>
    <link rel="alternate" type="text/html" href="http://www.energizedtech.com/2011/10/put-the-money-in-your-brains-a.html" />
    <id>tag:www.energizedtech.com,2011://1.529</id>

    <published>2011-10-06T00:00:25Z</published>
    <updated>2011-10-06T00:04:44Z</updated>

    <summary><![CDATA[Did you hear that?&nbsp; The rumbling, the pounding of the feet, like a wild Moose running free.&nbsp; The Greatest event in Canada has Returned! Here is YOUR opportunity to save approximately 50% on the Registration! Just go online and ......]]></summary>
    <author>
        <name>Sean Kearney</name>
        <uri>http://ye110beard.spaces.live.com</uri>
    </author>
    
    
    <content type="html" xml:lang="en" xml:base="http://www.energizedtech.com/">
        <![CDATA[<p>Did you hear that?&nbsp; The rumbling, the pounding of the feet, like a wild Moose running free.&nbsp; The Greatest event in Canada has Returned!</p>
<p>Here is YOUR opportunity to save approximately 50% on the Registration!</p>
<p><a href="http://www.microsoft.com/canada/techdays/2011/register-now.aspx" target="_blank" data-mce-href="http://www.microsoft.com/canada/techdays/2011/register-now.aspx"><img style="BACKGROUND-IMAGE: none; BORDER-RIGHT-WIDTH: 0px; PADDING-LEFT: 0px; PADDING-RIGHT: 0px; DISPLAY: inline; BORDER-TOP-WIDTH: 0px; BORDER-BOTTOM-WIDTH: 0px; BORDER-LEFT-WIDTH: 0px; PADDING-TOP: 0px" title="540x200_early_bird_GENERIC_v2" border="0" alt="540x200_early_bird_GENERIC_v2" src="http://ye110wbeard.files.wordpress.com/2011/10/540x200_early_bird_generic_v2.jpg" width="586" height="220" data-mce-src="http://ye110wbeard.files.wordpress.com/2011/10/540x200_early_bird_generic_v2.jpg" data-mce-style="background-image: none; padding-top: 0; padding-left: 0; display: inline; padding-right: 0; border-width: 0;" /></a></p>
<p><em>Just go online and ... SHHHHHHHHHH...... It's a SECRET</em></p>
<p><em>Go to </em><a href="http://www.techdays.ca/" data-mce-href="http://www.techdays.ca"><em>www.techdays.ca</em></a></p>
<p><span style="FONT-SIZE: x-large" data-mce-style="font-size: x-large;" size="6">"Did you say </span><a href="http://www.techdays.ca/" data-mce-href="http://www.TECHDAYS.CA"><span style="FONT-SIZE: x-large" data-mce-style="font-size: x-large;" size="6">WWW.TECHDAYS.CA</span></a><span style="FONT-SIZE: x-large" data-mce-style="font-size: x-large;" size="6"> ?!"</span></p>
<p><em>Yes and Shhh... don't tell anyone... and type in the secret word</em></p>
<p><span style="FONT-SIZE: xx-large" data-mce-style="font-size: xx-large;" size="7">"WHAT SECRET WORD?"</span></p>
<p><em>I wasn't finished saying... the secret Promo code which is <strong>TD2011MVP...</strong></em></p>
<p><span style="FONT-SIZE: x-large" data-mce-style="font-size: x-large;" size="6"><strong><em><a href="http://ye110wbeard.files.wordpress.com/2011/10/blue-man-learn.jpg" data-mce-href="http://ye110wbeard.files.wordpress.com/2011/10/blue-man-learn.jpg"><img style="BACKGROUND-IMAGE: none; BORDER-RIGHT-WIDTH: 0px; MARGIN: 0px 20px 0px 0px; PADDING-LEFT: 0px; PADDING-RIGHT: 0px; DISPLAY: inline; FLOAT: left; BORDER-TOP-WIDTH: 0px; BORDER-BOTTOM-WIDTH: 0px; BORDER-LEFT-WIDTH: 0px; PADDING-TOP: 0px" title="Blue Man-learn" border="0" alt="Blue Man-learn" align="left" src="http://ye110wbeard.files.wordpress.com/2011/10/blue-man-learn_thumb.jpg" width="244" height="233" data-mce-src="http://ye110wbeard.files.wordpress.com/2011/10/blue-man-learn_thumb.jpg" data-mce-style="background-image: none; float: left; padding-top: 0; padding-left: 0; display: inline; padding-right: 0; border-width: 0; margin: 0 20px 0 0;" /></a></em></strong></span></p>
<p><span style="FONT-SIZE: x-large" data-mce-style="font-size: x-large;" size="6"><strong><em>"</em></strong>Did you SAY the SECRET PROMO CODE was TD2011MVP ??!!"</span></p>
<p><em>Yes ... yes I did.... shhhhh don't be so loud, otherwise everybody will know they can get into </em><a href="http://www.techdays.ca/" data-mce-href="http://www.Techdays.ca"><em>www.Techdays.ca</em></a><em> for only $399.99.</em></p>
<p><span style="FONT-SIZE: x-large" data-mce-style="font-size: x-large;" size="6">"WHAT? ONLY $399.99 and all I have to do is go to </span><a href="http://www.techdays.ca/" data-mce-href="http://www.techdays.ca"><span style="FONT-SIZE: x-large" data-mce-style="font-size: x-large;" size="6">www.techdays.ca</span></a><span style="FONT-SIZE: x-large" data-mce-style="font-size: x-large;" size="6"> with the Promo Code of TD2011MVP?&nbsp; I can get in for only $399.99? W0000000t!!"</span></p>
<p><a href="http://www.microsoft.com/canada/techdays/2011/register-now.aspx" target="_blank" data-mce-href="http://www.microsoft.com/canada/techdays/2011/register-now.aspx"><img style="BACKGROUND-IMAGE: none; BORDER-RIGHT-WIDTH: 0px; MARGIN: 0px 16px 0px 0px; PADDING-LEFT: 0px; PADDING-RIGHT: 0px; DISPLAY: inline; FLOAT: left; BORDER-TOP-WIDTH: 0px; BORDER-BOTTOM-WIDTH: 0px; BORDER-LEFT-WIDTH: 0px; PADDING-TOP: 0px" title="205x115_early_bird_value_prop" border="0" alt="205x115_early_bird_value_prop" align="left" src="http://ye110wbeard.files.wordpress.com/2011/10/205x115_early_bird_value_prop.jpg" width="309" height="175" data-mce-src="http://ye110wbeard.files.wordpress.com/2011/10/205x115_early_bird_value_prop.jpg" data-mce-style="background-image: none; float: left; padding-top: 0; padding-left: 0; display: inline; padding-right: 0; border-width: 0; margin: 0 16px 0 0;" /></a><em></em></p>
<p><em>Well I guess everybody knows now.&nbsp;&nbsp; So if you happen here my loud friend here, you could take advantage of the Promo code too.&nbsp; Register anytime up til and including the date of attending for only $399.99.</em></p>
<p><em>That right's folks! Techdays have returned to bring us to the next level!</em></p>
<p><em>Techdays. Because there's always more to learn... <img style="BORDER-BOTTOM-STYLE: none; BORDER-RIGHT-STYLE: none; BORDER-TOP-STYLE: none; BORDER-LEFT-STYLE: none" class="wlEmoticon wlEmoticon-smile" alt="Smile" src="http://ye110wbeard.files.wordpress.com/2011/10/wlemoticon-smile.png" data-mce-src="http://ye110wbeard.files.wordpress.com/2011/10/wlemoticon-smile.png" data-mce-style="border-style: none;" /></em></p>
<p><br /></p>
<p><a href="http://www.microsoft.com/canada/techdays/2011/register-now.aspx" target="_blank" data-mce-href="http://www.microsoft.com/canada/techdays/2011/register-now.aspx"><img style="BACKGROUND-IMAGE: none; BORDER-RIGHT-WIDTH: 0px; PADDING-LEFT: 0px; PADDING-RIGHT: 0px; DISPLAY: inline; BORDER-TOP-WIDTH: 0px; BORDER-BOTTOM-WIDTH: 0px; BORDER-LEFT-WIDTH: 0px; PADDING-TOP: 0px" title="TECH DAYS 2011 CANADA" border="0" alt="TECH DAYS 2011 CANADA" src="http://ye110wbeard.files.wordpress.com/2011/10/tech-days-2011-canada.jpg" width="465" height="173" data-mce-src="http://ye110wbeard.files.wordpress.com/2011/10/tech-days-2011-canada.jpg" data-mce-style="background-image: none; padding-top: 0; padding-left: 0; display: inline; padding-right: 0; border-width: 0;" /></a></p>]]>
        
    </content>
</entry>

<entry>
    <title><![CDATA[Free and Resources from Microsoft&ndash;How can you Lose?]]></title>
    <link rel="alternate" type="text/html" href="http://www.energizedtech.com/2011/10/free-and-resources-from-micros-1.html" />
    <id>tag:www.energizedtech.com,2011://1.528</id>

    <published>2011-10-05T00:05:30Z</published>
    <updated>2011-10-05T00:05:30Z</updated>

    <summary>Often Microsoft is taken as a large corporation.&#160;&#160; Many don’t realize just how much it offers to the community at large for free.&#160;&#160; Take this list of resources and print it off or place it on a local page on...</summary>
    <author>
        <name>Sean Kearney</name>
        <uri>http://ye110beard.spaces.live.com</uri>
    </author>
    
    
    <content type="html" xml:lang="en" xml:base="http://www.energizedtech.com/">
        <![CDATA[<p><b>Often Microsoft is taken as a large corporation.&#160;&#160; Many don’t realize just how much it offers to the community at large for free.&#160;&#160; Take this list of resources and print it off or place it on a local page on your IT Intranet.</b></p>  <p><strong>Free resources from Microsoft for Help and Support, Antivirus and a way to answer all those questions that roam across your mind.</strong></p>  <p><strong>How can you lose? It’s Free!</strong></p>  <p>&#160;</p>  <p><b>1) </b><b>Help and Support from Microsoft </b></p>  <p>Have you ever wondered where to go to get help with your common, everyday IT challenges?&#160; </p>  <p>Based on feedback and constructive criticism, Microsoft Canada identifies key areas where they can improve and help you by providing better resources to answer your questions, solve your real world problems and help you achieve your business goals.&#160; Maybe it’s just ensuring you know you have a voice – or just making your life a little easier at the end of the day – whatever it takes, Microsoft is listening.</p>  <p>One of the areas Microsoft has received feedback on is Help and Support. Let's face it, you may not have a direct contact person from Microsoft that you can call up when you have a problem and with the pace of technology today, you just can't wait for things to sort themselves out. So you either commit you or your teams' time and energy to fixing that issue, or you hire someone to come in and fix it. But what if I told you there were some great Microsoft Resources available for support that you could use? I've put together a list below. This is by no means exhaustive, but it should give you a great start when you need to tackle your next IT challenge.</p>  <p><b>Help and Resources</b>    <table cellspacing="11" cellpadding="0" border="0"><tbody>       <tr>         <td width="728">           <table cellspacing="0" cellpadding="0" border="0"><tbody>               <tr>                 <td valign="top" width="726">                   <p>· <a href="http://support.microsoft.com/select/?target=hub&amp;WT.mc_id=aff-c-ca-loc--MVP"><b>Microsoft Product Solution Center</b></a> – Get product support information for the majority of Microsoft products. </p>                    <p>· <a href="http://answers.microsoft.com/en-us?WT.mc_id=aff-c-ca-loc--MVP"><b>Microsoft Answers</b></a> – Ask questions and get answers from real people, or search for answers others have received. </p>                    <p>· <a href="http://support.microsoft.com/fixit/?WT.mc_id=aff-c-ca-loc--MVP"><b>Microsoft Fix it Solution Center</b></a> – Find automated solutions for your issues. </p>                    <p>· <a href="http://twitter.com/#!/@MicrosoftHelps?WT.mc_id=aff-c-ca-loc--MVP"><b>@MicrosoftHelps</b></a> – Follow Microsoft Customer Service and Support on Twitter. Experienced customer service agents respond to your questions in real-time tweets.</p>                    <p>· <a href="http://www.microsoft.com/enterprise/default.aspx?WT.mc_id=aff-c-ca-loc--MVP"><b>Enterprise Business Center</b></a> – Access resources for enterprise customers. </p>                    <p>· <a href="http://www.microsoft.com/business/smb/en-ca/default.aspx?WT.mc_id=aff-c-ca-loc--MVP"><b>Microsoft Small Business Center</b></a> – Find resources for small and medium-sized businesses.</p>                 </td>               </tr>             </tbody></table>         </td>       </tr>     </tbody></table> </p>  <p><b>Other Resources You May Find Useful</b></p>  <p><b></b></p>  <ul>   <li><b><a href="http://www.microsoftvirtualacademy.com/Home.aspx?WT.mc_id=aff-c-ca-jtc--MVP">Microsoft Virtual Academy </a></b> - For Free Training To Help Improve Your IT Skill Set. </li>    <li><b><a href="http://technet.microsoft.com/en-ca/evalcenter/default.aspx?WT.mc_id=aff-c-ca-jtc--MVP">TechNet Evaluation Center </a></b> - Try some of the latest Microsoft products like Office 365, Windows Intune or System Center Virtual Machine Manager 2012 for free, before you buy.</li>    <li><b><a href="https://profile.microsoft.com/RegSysProfileCenter/subscriptionwizard.aspx?wizid=d15b1789-216b-4763-adfe-7196aaf3b021&amp;lcid=4105&amp;WT.mc_id=aff-c-ca-loc--MVP">TechNet Newsletter</a> </b>- Sign Up To Receive The Latest IT News and Developments, Product Releases, Expert Insights and Support Services with Microsoft's complimentary biweekly newsletter for industry professionals.</li> </ul>  <p><b>2) </b><b>Security – How to Help Keep Your PC Protected</b></p>  <p>Have you ever wondered how you can help keep your PC protected?&#160; </p>  <p>Based on feedback and constructive criticism, Microsoft Canada identifies key areas where they can improve and help you by providing better resources to answer your questions, solve your real world problems and help you achieve your business goals.&#160; Maybe it’s just ensuring you know you have a voice – or just making your life a little easier at the end of the day – whatever it takes, Microsoft is listening.</p>  <p>One of the areas Microsoft has received feedback on is Security, specifically how to help keep your PC protected. Whether it's at work or at home, I've been told that it can be hard to make sense of what's important, which updates should be installed and how best to protect your PC. Microsoft has a resource center for their Monthly updates listed below – it's something you should check out every second Tuesday of the month. If you prefer to listen to a podcast – they've created one that's easy to listen to and not too technical called Security Bulletins for the Regular IT Guy.   <br />Recently there have been a growing number of Phone Scams from individuals claiming to be from Microsoft asking you about the security of your PC. You should be suspicious of unsolicited calls about security of your systems. Don't give out financial details, visit websites, allow anyone to remote control your system or install software from unsolicited callers. If you feel your system has been compromised or has a computer virus – you can call Microsoft's Security and Virus FREE support line at <strong>1-866-727-2338</strong>. </p>  <p><b>Security Resources</b></p>  <p>· <a href="http://www.microsoft.com/en-ca/security_essentials/default.aspx?WT.mc_id=aff-c-ca-loc--MVP"><b>Microsoft Security Essentials</b></a> – Free Anti-Malware software from Microsoft, great for Small Businesses and Home PCs alike. </p>  <p>· <a href="http://feeds.feedburner.com/sbfritg?WT.mc_id=aff-c-ca-loc--MVP"><b>Security Bulletins by the Regular IT Guy</b></a> – A monthly podcast to help simplify details about the monthly Security patch releases. </p>  <p>· <a href="http://technet.microsoft.com/en-ca/security/default.aspx?WT.mc_id=aff-c-ca-loc--MVP"><b>Security TechCenter</b></a> – Find top tasks, get the latest news, find a wiki article or download a featured tool. </p>  <p>· <a href="http://technet.microsoft.com/en-us/windowsserver/bb332157.aspx?WT.mc_id=aff-c-ca-loc--MVP"><b>Windows Update Services</b></a> – Businesses of all sizes can help manage and control the rollout of updates in their organizations.</p>  <p><b></b></p>  <p><b>Other Resources You May Find Useful</b></p>  <p>· <b><a href="http://technet.microsoft.com/en-CA/gg426312.aspx?WT.mc_id=aff-c-ca-loc--MVP">Springboard Series </a></b>- Your destination for technical resources, free tools and expert guidance to ease the deployment and management of your Windows-based client infrastructure. </p>  <p>· <b><a href="http://www.align-it.ca/contentlibrary/blogs/alignit-manager-tech-talk-series.aspx?WT.mc_id=aff-c-ca-loc--MVP">AlignIT Manager Tech Talk Series </a></b> - A monthly streamed video series with a range of topics for both infrastructure and development managers. Ask questions and participate real-time or watch the on-demand recording.</p>  <p>· <b><a href="http://www.microsoftvirtualacademy.com/Home.aspx?WT.mc_id=aff-c-ca-jtc--MVP">Microsoft Virtual Academy </a></b> - For Free Training To Help Improve Your IT Skill Set. </p>  <p>· <b><a href="http://technet.microsoft.com/en-ca/evalcenter/default.aspx?WT.mc_id=aff-c-ca-jtc--MVP">TechNet Evaluation Center </a></b> - Try some of the latest Microsoft products like Office 365, Windows Intune or System Center Virtual Machine Manager 2012 for free, before you buy.</p>  <p><b>3) </b><b>Licensing Simplified – at Home and at Work</b></p>  <p><b></b></p>  <p>Have you ever wondered if there’s an easier way to understand licensing, for both home and business use? </p>  <p>Based on feedback and constructive criticism, Microsoft Canada identifies key areas where they can improve and help you by providing better resources to answer your questions, solve your real world problems and help you achieve your business goals.&#160; Maybe it’s just ensuring you know you have a voice – or just making your life a little easier at the end of the day – whatever it takes, Microsoft is listening.</p>  <p>One of the areas Microsoft has received feedback on is Licensing.&#160; Whether you need to buy one license from a traditional retail store or explore options for a more flexible volume licensing program, it can be confusing and sometimes downright intimidating to figure out what you need.&#160; After doing a little digging - I’ve highlighted some resources you can use to help figure out exactly what you need when you talk with your software reseller.</p>  <p>Speaking of licensing – I often get asked if I can back up our claims at a more cost effective Virtualization solution for your server rooms.&#160; <a href="http://blogs.technet.com/b/virtualization/archive/2011/08/15/beware-the-vmware-memory-tax-part-2.aspx?WT.mc_id=aff-c-ca-jtc--">I dug up a great – no nonsense breakdown</a> on recent licensing changes in the industry and how our offering stacks up. </p>  <p><b>Licensing Resources</b><b></b></p>  <p>· <b><a href="http://www.microsoft.com/licensing/about-licensing/product-licensing-faq.aspx?WT.mc_id=aff-c-ca-loc--MVP">Licensing FAQs</a>: </b>Frequently Asked Questions About Product Licensing</p>  <p>· <b><a href="http://www.microsoft.com/business/smb/en-ca/smb/how-to-buy/get-advice.aspx?WT.mc_id=aff-c-ca-loc--MVP">The SMB How to Buy Portal</a>:&#160; </b>receive clear purchasing and licensing information that is easy to understand in order to help facilitate quick decision making. </p>  <p>· <b><a href="http://www.microsoft.com/licensing/mla/?language=English&amp;country=CA&amp;WT.mc_id=aff-c-ca-loc--MVP">Microsoft License Advisor (MLA)</a>: </b>Use MLA to research Microsoft Volume Licensing products, programs and pricing.&#160;&#160; </p>  <p>· <b><a href="https://www.microsoft.com/licensing/servicecenter/default.aspx?WT.mc_id=aff-c-ca-loc--MVP">Volume Licensing Service Center</a> (VLSC) – </b>Already have a volume License?<b> </b>Use the VLSC to get you easy access to all your licensing information in one location.</p>  <p>· <a href="http://windows.microsoft.com/en-CA/Windows7/products/compare?WT.mc_id=aff-c-ca-loc--MVP">Windows 7 Comparison</a>: Compare versions of Windows and find out which one is right for you</p>  <p>· <a href="http://office.microsoft.com/en-ca/buy/office-2010-which-suite-is-right-for-you-FX101812900.aspx?WT.mc_id=aff-c-ca-loc--MVP">Office 2010 Comparison</a>: Find out which Office suite is right for you.</p>  <p><b>Other Resources You May Find Useful</b></p>  <p>· <b><u><a href="http://technet.microsoft.com/en-ca/cloud/default.aspx?WT.mc_id=aff-c-ca-loc--MVP">TechNet Cloud Hub</a></u></b> - Get the latest news and find great resources to help you jump into the Cloud.</p>  <p>· <b><a href="http://technet.microsoft.com/en-ca/evalcenter/default.aspx?WT.mc_id=aff-c-ca-jtc--MVP">TechNet Evaluation Center</a> </b>- Try some of the latest Microsoft products like Office 365, Windows Intune or System Center Virtual Machine Manager 2012 for free, before you buy.</p>  <p>· <b><a href="http://www.microsoftvirtualacademy.com/Home.aspx?WT.mc_id=aff-c-ca-jtc--MVP">Microsoft Virtual Academy </a> - </b>For free training to help improve your IT skill set.</p>  <p><b>4) </b><b>Free Online Training and Resources from Microsoft</b></p>  <p>Have you ever wondered how you can help build your IT skill set? </p>  <p>Based on feedback and constructive criticism, Microsoft Canada identifies key areas where they can improve and help you by providing better resources to answer your questions, solve your real world problems and help you achieve your business goals.&#160; Maybe it’s just ensuring you know you have a voice – or just making your life a little easier at the end of the day – whatever it takes, Microsoft is listening.</p>  <p>Microsoft has a number of great resources to help you in areas of professional development and access to software.&#160; <a href="http://www.microsoftvirtualacademy.com/Home.aspx?WT.mc_id=aff-c-ca-loc--MVP"><b>The Microsoft Virtual Academy</b></a> contains some fantastic FREE online training on hot topics for IT Professionals.&#160; Once you’ve stopped by and tried out a course or two — head on over to the <a href="http://technet.microsoft.com/en-ca/evalcenter/default.aspx?WT.mc_id=aff-c-ca-jtc--MVP"><b>Microsoft Eval Center</b></a> to download copies of their server products to try out in your lab environment.&#160; And while you’re at it, check out this free <a href="http://blogs.msdn.com/b/microsoft_press/archive/2011/08/17/free-ebook-microsoft-office-365-connect-and-collaborate-virtually-anywhere-anytime.aspx?WT.mc_id=aff-c-ca-loc--MVP">Microsoft Office 365 ebook</a> by Katherine Murray, it shows you how you can use cloud computing to help get more done and help improve ease of collaboration. </p>]]>
        
    </content>
</entry>

<entry>
    <title><![CDATA[I love WDS and MDT&ndash;Install Server 2008R2 onto Legacy x64 Hardware!]]></title>
    <link rel="alternate" type="text/html" href="http://www.energizedtech.com/2011/09/i-love-wds-and-mdtinstall-serv.html" />
    <id>tag:www.energizedtech.com,2011://1.526</id>

    <published>2011-09-09T15:41:55Z</published>
    <updated>2011-09-09T15:41:55Z</updated>

    <summary>Here was fun.&#160; I’ve gotten my hands on some decent server hardware that had some caveats. No DVD or ability to BOOT from DVD No USB Booting ability but CPU was x64 capable So in this scenario, normally you would...</summary>
    <author>
        <name>Sean Kearney</name>
        <uri>http://ye110beard.spaces.live.com</uri>
    </author>
    
    
    <content type="html" xml:lang="en" xml:base="http://www.energizedtech.com/">
        <![CDATA[<p>Here was fun.&#160; I’ve gotten my hands on some decent server hardware that had some caveats.</p>  <p><strong><em>No DVD or ability to BOOT from DVD</em></strong></p>  <p><strong><em>No USB Booting ability</em></strong></p>  <p>but</p>  <p><strong><em>CPU was x64 capable</em></strong></p>  <p>So in this scenario, normally you would scrap using Server 2008R2 or Server 2008 x64 because the media only exists on DVD format.&#160; The alternate is to boot from USB but since the server can’t do that, forget it.</p>  <p>&#160;</p>  <p>But if you have Windows Deployment Server at your finger tips and MDT 2010 none of this is a problem. Just create that image and awaaaaay you go.</p>  <p><em>“But Sean, what happens if it breaks?&#160; I’m stuck right?”</em></p>  <p>Funny thing is … NO.</p>  <p>I was playing this weekend and if you learn how to build a standalone WinRE x64 or have access the DART and can build THAT image, the both fit on a Standard CDrom, with room to spare (which many older x64 servers DO in fact have, Cdroms)</p>  <p>I know this because my test environment was running off an older Dell server which (as my coworker would say) “Hacked up a hairball”, I lost my Domain (Yes, I was building new and hadn’t added my secondary and tertiary DC’s)</p>  <p>So to resolve this, I created a WinRE Cdrom from my x64 Windows 7 and repaired the environment from that.</p>  <p>Ok…. for production maybe NOT a GOOD idea (or maybe it is?&#160; Trying to extend the budget on some older equipment?&#160; Repurpose it as an RODC?)</p>  <p>Just food for thought.&#160;&#160; But all of this was possible thanks for MDT (Free) and WDS (Just a free role in the Server 2008R2)</p>  <p>&#160;</p>  <p>This blog post brought to you by the letter “M”</p>  <p>Sean    <br />The Energized Tech</p>]]>
        
    </content>
</entry>

<entry>
    <title>Remotely Enable Remote Desktop Manually</title>
    <link rel="alternate" type="text/html" href="http://www.energizedtech.com/2011/09/remotely-enable-remote-desktop.html" />
    <id>tag:www.energizedtech.com,2011://1.525</id>

    <published>2011-09-07T22:15:48Z</published>
    <updated>2011-09-07T22:15:48Z</updated>

    <summary>You’re stuck in a jam.&#160; The remote workstation is on, the user isn’t there and you have a mandate. “Install this software before you leave.” Of course the software just happens to be the one application you CAN’T just push.&#160;...</summary>
    <author>
        <name>Sean Kearney</name>
        <uri>http://ye110beard.spaces.live.com</uri>
    </author>
    
    
    <content type="html" xml:lang="en" xml:base="http://www.energizedtech.com/">
        <![CDATA[<p>You’re stuck in a jam.&#160; The remote workstation is on, the user isn’t there and you have a mandate.</p>  <p>“Install this software before you leave.” Of course the software just happens to be the one application you CAN’T just push.&#160; It needs a local install.&#160; “UGH!” your brain says to the world.</p>  <p>No problem.&#160; As long as the computer is on your network, you can enable Remote Desktop access.</p>  <p>First you need to have local Administrative rights on the computer in question.</p>  <p>Launch REGEDIT and Choose <strong>File/Connect Network Registry</strong></p>  <p><a href="http://www.energizedtech.com/Windows-Live-Writer/50be6cb67d8d_F80A/image_12.png"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.energizedtech.com/Windows-Live-Writer/50be6cb67d8d_F80A/image_thumb_5.png" width="392" height="289" /></a></p>  <p>In the provided box, enter in the name of the computer</p>  <p><a href="http://www.energizedtech.com/Windows-Live-Writer/50be6cb67d8d_F80A/image_14.png"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.energizedtech.com/Windows-Live-Writer/50be6cb67d8d_F80A/image_thumb_6.png" width="470" height="258" /></a></p>  <p>Once connected you’ll have a new option near the bottom.</p>  <p><a href="http://www.energizedtech.com/Windows-Live-Writer/50be6cb67d8d_F80A/image_16.png"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.energizedtech.com/Windows-Live-Writer/50be6cb67d8d_F80A/image_thumb_7.png" width="410" height="366" /></a></p>  <p>Under the “2nd” HKEY_LOCAL_MACHINE (which is that nasty remote computer) Navigate to </p>  <p><strong><em>HKEY_LOCAL_MACHINE\System\Current Control Set\Control\TerminalServer</em></strong></p>  <p>Edit the value called <em>fDenyTSConnections </em>and change from 1 to 0</p>  <p>change from 1 to 0</p>  <p><a href="http://www.energizedtech.com/Windows-Live-Writer/50be6cb67d8d_F80A/image_8.png"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.energizedtech.com/Windows-Live-Writer/50be6cb67d8d_F80A/image_thumb_3.png" width="388" height="233" /></a></p>  <p>Now if you’re running Windows XP, you’re probably done and can happily remote in.&#160; </p>  <p>With Windows 7 and Windows Vista there’s an extra step, you need to enable two rules on the Firewall</p>  <p>Navigate to the following registry key</p>  <p><em><strong>HKEY_LOCAL_MACHINE\System\Current Control Set\services\SharedAccess\Parameters\FirewallPolicy\FirewallRules</strong></em></p>  <p>You’ll see a pile of values.&#160; Find the one named “RemoteDesktop-In-TCP”</p>  <p><a href="http://www.energizedtech.com/Windows-Live-Writer/50be6cb67d8d_F80A/image_2.png"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.energizedtech.com/Windows-Live-Writer/50be6cb67d8d_F80A/image_thumb.png" width="794" height="73" /></a></p>  <p>You’ll see a LOOOOOOOONNNNNG string of data in there.&#160; Near the very beginning it will read something along the lines of what you see below</p>  <p><a href="http://www.energizedtech.com/Windows-Live-Writer/50be6cb67d8d_F80A/image_4.png"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.energizedtech.com/Windows-Live-Writer/50be6cb67d8d_F80A/image_thumb_1.png" width="504" height="227" /></a></p>  <p>Edit the Active=FALSE to ACTIVE=TRUE so it reads as in the box below.&#160; Click OK</p>  <p><a href="http://www.energizedtech.com/Windows-Live-Writer/50be6cb67d8d_F80A/image_6.png"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.energizedtech.com/Windows-Live-Writer/50be6cb67d8d_F80A/image_thumb_2.png" width="505" height="227" /></a></p>  <p>Then execute the following command in a command prompt. </p>  <p><em><strong>SHUTDOWN –f –r –t 0 –m \\COMPUTERNAME</strong></em></p>  <p>Where “<strong>COMPUTERNAME</strong>” is the NETBIOS name of the PC</p>  <p>or</p>  <p><strong><em>SHUTDOWN –f –r –t 0 –m x.x.x.x</em></strong></p>  <p>Where <strong>x.x.x.x</strong> is the IP address of the computer</p>  <p>Now you COULD probably trigger this via GPO and Preferences too.&#160; But on the Enterprise why would you? Baaaaaad!</p>  <p>But in Small Business environments I have seen the need for this, so it COULD be set in those instances.&#160;&#160; Of course you’ll have to remember add anybody who SHOULD be remoting to the local computer group “<strong>Remote Desktop Users</strong>”</p>  <p>A handy thing to know how to do, especially if you are effectively “Locked away” from physical access to a managed machine.</p>  <p>Sean    <br />The Energized Tech</p>]]>
        
    </content>
</entry>

<entry>
    <title><![CDATA[SQL Saturday 93&ndash;Toronto Ontario !]]></title>
    <link rel="alternate" type="text/html" href="http://www.energizedtech.com/2011/09/sql-saturday-93toronto-ontario.html" />
    <id>tag:www.energizedtech.com,2011://1.524</id>

    <published>2011-09-06T23:28:07Z</published>
    <updated>2011-09-06T23:28:07Z</updated>

    <summary>Next Saturday !&#160; September 17, 2011 is SQL Saturday #93 The Event is free, Lunch is $15 if you’d like a Tasty lunch.&#160; A chance to meet greet other Professionals.&#160; A day of solid training for Data Professionals. And…. a...</summary>
    <author>
        <name>Sean Kearney</name>
        <uri>http://ye110beard.spaces.live.com</uri>
    </author>
    
    
    <content type="html" xml:lang="en" xml:base="http://www.energizedtech.com/">
        <![CDATA[<p>Next Saturday !&#160; </p>  <p>September 17, 2011 is SQL Saturday #93</p>  <p><a title="SQL Saturday 93 in TORONTO, Ontario" href="http://www.sqlsaturday.com/93/eventhome.aspx" target="_blank"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="sqlsat93" border="0" alt="sqlsat93" src="http://www.energizedtech.com/Windows-Live-Writer/SQL-Saturday-93Toronto-Ontario-_11068/sqlsat93_3.png" width="370" height="244" /></a></p>  <p>The Event is free, Lunch is $15 if you’d like a Tasty lunch.&#160; A chance to meet greet other Professionals.&#160; A day of solid training for Data Professionals.</p>  <p>And…. a small bonus.&#160; </p>  <p>Rumor has it, the one, the only…. the BATCHman may make a special appearance at the Powershell session.</p>  <p>So register, and check it out now.&#160; Heck a Saturday doing Nerdy stuff?&#160; How can you go wrong?</p>  <p><a title="SQL Saturday 93 in TORONTO, Ontario" href="http://www.sqlsaturday.com/93/eventhome.aspx" target="_blank"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="sqlsat93" border="0" alt="sqlsat93" src="http://www.energizedtech.com/Windows-Live-Writer/SQL-Saturday-93Toronto-Ontario-_11068/sqlsat93_d84f0dd3-d221-4ea8-9240-3a81ed8c6bc9.png" width="357" height="207" /></a></p>]]>
        
    </content>
</entry>

<entry>
    <title><![CDATA[Honorary Scripting Guy&ndash;Li&rsquo;l &lsquo;ol me :)]]></title>
    <link rel="alternate" type="text/html" href="http://www.energizedtech.com/2011/09/honorary-scripting-guylil-ol-m.html" />
    <id>tag:www.energizedtech.com,2011://1.523</id>

    <published>2011-09-01T11:58:12Z</published>
    <updated>2011-09-01T11:58:12Z</updated>

    <summary>When I started bugging Microsoft and sending them posts for “Hey Scripting Guy” I figured a large army of Steve Ballmers would come day and take my keyboard away with a big warning of “Stop spamming us!&#160; We all know...</summary>
    <author>
        <name>Sean Kearney</name>
        <uri>http://ye110beard.spaces.live.com</uri>
    </author>
    
    
    <content type="html" xml:lang="en" xml:base="http://www.energizedtech.com/">
        <![CDATA[<p>When I started bugging Microsoft and sending them posts for <a href="http://blogs.technet.com/b/heyscriptingguy/" target="_blank">“Hey Scripting Guy”</a> I figured a large army of Steve Ballmers would come day and take my keyboard away with a big warning of “Stop spamming us!&#160; We all know about you and <a href="http://blogs.technet.com/b/canitpro/archive/2007/09/07/funnies-555-the-number-of-the-email-beast.aspx" target="_blank">“The Number of the Email Beast”</a> so cut it out.&#160;&#160;&#160;&#160; </p>  <p><a href="http://www.energizedtech.com/Windows-Live-Writer/Honorary-Scripting-GuyLil-ol-me-_6ACD/HonoraryScriptingGuy_2.png"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="HonoraryScriptingGuy" border="0" alt="HonoraryScriptingGuy" src="http://www.energizedtech.com/Windows-Live-Writer/Honorary-Scripting-GuyLil-ol-me-_6ACD/HonoraryScriptingGuy_thumb.png" width="227" height="244" /></a></p>  <p>Then I caught an email from none other than Ed “Hey Scripting Guy” himself announcing five people granted the title of “Honorary Scripting Guy” for our contributions to the site, the community and I think (pretty certain of this) as some kind of appeasement to stop me from spamming Microsoft for a few days <img style="border-bottom-style: none; border-left-style: none; border-top-style: none; border-right-style: none" class="wlEmoticon wlEmoticon-winkingsmile" alt="Winking smile" src="http://www.energizedtech.com/Windows-Live-Writer/Honorary-Scripting-GuyLil-ol-me-_6ACD/wlEmoticon-winkingsmile_2.png" /></p>  <p>I kid about of course.&#160; Ed’s a great guy but this announcement threw me for a loop.&#160;&#160; I had just finished my LiveMeeting presentation for TechEd 2011 Australia when Ed took the stage (or the LiveMeeting in this case) and let forth the announcement of the first ever <a href="http://blogs.technet.com/b/heyscriptingguy/archive/2011/09/01/honorary-scripting-guy-award-recipients-announced.aspx" target="_blank">“Honorary Scripting Guys</a>”.</p>  <p>I though the Title alone was cool, I was blushing when I heard too.&#160; Then I heard the other four names.&#160;&#160; <a href="http://blogs.technet.com/b/heyscriptingguy/archive/2011/09/01/honorary-scripting-guy-award-recipients-announced.aspx" target="_blank">Don Jones, Trevor Sullivan, Tome Tanasovski and James Brundage</a>.&#160;&#160;&#160; </p>  <p>I stood there looking at the page.&#160; I smiled. “Honorary Scripting Guy”.</p>  <p>This feels cool.&#160;&#160; Almost as if I actually work for Microsoft.&#160;&#160; </p>  <p>Now I can’t wait for the next time Ed announces some new ones.&#160; I can’t wait to see names of people who are my peers and heroes on this list.</p>  <p>Today I am honored to be in the first five, hopefully amongst many others.&#160; So glad I stepped out and took a chance.</p>  <p>By the way, a special thanks to everybody at Microsoft and MVP’s alike.&#160;&#160; The reason this happened was thanks to community encouragement.&#160;&#160;&#160; An especially large thanks to the DPE team and Microsoft Canada who encouraged me to step out of my shell.&#160;&#160; If they hadn’t encouraged me and allowed me to be “The Friday Funny Guy” I’m not sure I would have had the courage to do what I do today. </p>  <p>Kudos to Ed “Scripting Guy” Wilson and “Scripting Wife” </p>  <p>PS.&#160; “Sorry about the singing” <img style="border-bottom-style: none; border-left-style: none; border-top-style: none; border-right-style: none" class="wlEmoticon wlEmoticon-winkingsmile" alt="Winking smile" src="http://www.energizedtech.com/Windows-Live-Writer/Honorary-Scripting-GuyLil-ol-me-_6ACD/wlEmoticon-winkingsmile_2.png" /></p>  <p>Sean    <br /><strong>”The Energized Tech”</strong>     <br /><em>MCSE,MCTS,MVP      <br />Member of Springboard Technical Experts Program       <br />Honorary Scripting Guy on Technet</em></p>]]>
        
    </content>
</entry>

<entry>
    <title>What have I been up to?</title>
    <link rel="alternate" type="text/html" href="http://www.energizedtech.com/2011/08/what-have-i-been-up-to.html" />
    <id>tag:www.energizedtech.com,2011://1.522</id>

    <published>2011-08-09T10:45:33Z</published>
    <updated>2011-08-09T10:45:33Z</updated>

    <summary>You may well be wondering… Did Sean fall off the map? Nope.&#160; Been incredibly busy.&#160;&#160;&#160; As you may well have heard, there is a new series going online on August 26th 2011 called “Batchman and Cmdlet” about&#160; Crime fighting Duo...</summary>
    <author>
        <name>Sean Kearney</name>
        <uri>http://ye110beard.spaces.live.com</uri>
    </author>
    
    
    <content type="html" xml:lang="en" xml:base="http://www.energizedtech.com/">
        <![CDATA[<p>You may well be wondering… Did Sean fall off the map?</p>  <p>Nope.&#160; Been incredibly busy.&#160;&#160;&#160; </p>  <p>As you may well have heard, there is a new series going online on August 26th 2011 called “Batchman and Cmdlet” about&#160; Crime fighting Duo that use Windows Powershell to stop crime.&#160;&#160; It started out as a small idea that has ballooned big time.</p>  <p>Here’s the little cheezy fun teaser video we whipped up together for it.</p>  <div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:57cf546a-b944-4783-baca-0c111ad6a4a2" class="wlWriterEditableSmartContent"><div id="d09667ea-ca3a-49e2-b4a1-1b5a3fc2b140" style="margin: 0px; padding: 0px; display: inline;"><div><a href="http://www.youtube.com/watch?v=JAAhF21pmvM&amp;feature=youtube_gdata_player" target="_new"><img src="http://www.energizedtech.com/Windows-Live-Writer/What-have-I-been-up-to_5C63/videob6da09ebcb22.jpg" style="border-style: none" galleryimg="no" onload="var downlevelDiv = document.getElementById('d09667ea-ca3a-49e2-b4a1-1b5a3fc2b140'); downlevelDiv.innerHTML = &quot;&lt;div&gt;&lt;object width=\&quot;448\&quot; height=\&quot;252\&quot;&gt;&lt;param name=\&quot;movie\&quot; value=\&quot;http://www.youtube.com/v/JAAhF21pmvM?hl=en&amp;hd=1\&quot;&gt;&lt;\/param&gt;&lt;embed src=\&quot;http://www.youtube.com/v/JAAhF21pmvM?hl=en&amp;hd=1\&quot; type=\&quot;application/x-shockwave-flash\&quot; width=\&quot;448\&quot; height=\&quot;252\&quot;&gt;&lt;\/embed&gt;&lt;\/object&gt;&lt;\/div&gt;&quot;;" alt=""></a></div></div><div style="width:448px;clear:both;font-size:.8em">Batchman and Cmdlet–8/26/2011 on www.scriptingguys.com</div></div>  <p>As well on top of that there are two big events I’m preparing presentations for.&#160; SQL Saturday #93 in Toronto, Ontario in September as well as I’ve been asked to speak over Live Meeting to a Powershell Preconference at TechEd Australia!</p>  <p>Oh right, somewhere in the midst of all this too, I’m still busy at work.&#160; There seem to be alligators everywhere for some reason…</p>  <p>On top of all that ?&#160; There is Techdays where I hope to present.&#160; As such I’m trying to cook up a little something special for that as well.&#160; Hope it gets accepted <img style="border-bottom-style: none; border-left-style: none; border-top-style: none; border-right-style: none" class="wlEmoticon wlEmoticon-smile" alt="Smile" src="http://www.energizedtech.com/Windows-Live-Writer/What-have-I-been-up-to_5C63/wlEmoticon-smile_2.png" /></p>  <p>More to come later and keep your eyes on <a href="http://www.scriptingguys.com">www.scriptingguys.com</a> where I’ve been contributing more often daily.</p>  <p>And remember, put that date on your “Batch Clock” – 8/26/2011 – <a href="http://www.scriptingguys.com">www.scriptingguys.com</a> for Batchman and Cmdlet</p>  <p><a href="http://www.scriptingguys.com/"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="Batchman" border="0" alt="Batchman" src="http://www.energizedtech.com/Windows-Live-Writer/What-have-I-been-up-to_5C63/Batchman_3.jpg" width="440" height="293" /></a></p>  <p><font size="4"><em>“Whenever trouble happens in systems and people will call,        <br />and darkness rolls out causing your fall,         <br />Creatures of bits roam in the night,         <br />Shine to the sky, the bright Bluish Light,</em></font></p>  <p><font size="4"><em>and call to … the BATCHMAN ! </em></font></p>]]>
        
    </content>
</entry>

<entry>
    <title><![CDATA[Keep you eyes peeled&ndash;A Summer Special on &ldquo;Hey Scripting Guys&rdquo;]]></title>
    <link rel="alternate" type="text/html" href="http://www.energizedtech.com/2011/07/keep-you-eyes-peeleda-summer-s.html" />
    <id>tag:www.energizedtech.com,2011://1.521</id>

    <published>2011-07-18T11:49:10Z</published>
    <updated>2011-07-18T11:49:10Z</updated>

    <summary> Fear not Systems Administrators!&#160; We have a hero in our midst to save the day with Windows Powershell. Coming August 26th 2011, watch for some special Episodes from a new Hero called “The Batchman” Curious? Just remember what happens...</summary>
    <author>
        <name>Sean Kearney</name>
        <uri>http://ye110beard.spaces.live.com</uri>
    </author>
    
    
    <content type="html" xml:lang="en" xml:base="http://www.energizedtech.com/">
        <![CDATA[<p><a href="http://www.energizedtech.com/Windows-Live-Writer/Keep-you-eyes-peeledA-Summer-Special-on-_6C7C/Batchman_2.jpg"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="Batchman" border="0" alt="Batchman" src="http://www.energizedtech.com/Windows-Live-Writer/Keep-you-eyes-peeledA-Summer-Special-on-_6C7C/Batchman_thumb.jpg" width="453" height="301" /></a></p>  <p>Fear not Systems Administrators!&#160; We have a hero in our midst to save the day with Windows Powershell.</p>  <p>Coming August 26th 2011, watch for some special Episodes from a new Hero called “The Batchman”</p>  <p>Curious?</p>  <p>Just remember what happens when the “Energized Tech” get’s fueled with ideas by <a href="http://blogs.technet.com/b/heyscriptingguy/" target="_blank">“Hey Scripting Guy”</a> and the results it produces.</p>  <p>Something to tickle your funny bone as well as educate.</p>  <p>Awwwww heck, it might even have at least one person running about in a cape and mask doing “BAAATTTTCHMAAAN!!”</p>  <p>Just watch <a href="http://blogs.technet.com/b/heyscriptingguy/" target="_blank">“Hey Scripting Guy”</a> on August 26th 2011.&#160; I promise it will be worth your while <img style="border-bottom-style: none; border-left-style: none; border-top-style: none; border-right-style: none" class="wlEmoticon wlEmoticon-smile" alt="Smile" src="http://www.energizedtech.com/Windows-Live-Writer/Keep-you-eyes-peeledA-Summer-Special-on-_6C7C/wlEmoticon-smile_2.png" /></p>  <p>Sean    <br />”The Energized Tech”</p>]]>
        
    </content>
</entry>

<entry>
    <title>Recovering DPM 2010 and a Clustered Resource after a Power fail</title>
    <link rel="alternate" type="text/html" href="http://www.energizedtech.com/2011/07/recovering-dpm-2010-and-a-clus.html" />
    <id>tag:www.energizedtech.com,2011://1.520</id>

    <published>2011-07-08T00:47:23Z</published>
    <updated>2011-07-08T00:47:23Z</updated>

    <summary>Ok, the worst case scenario ACTUALLY HAPPENED. You lost power in the Data center. But you didn’t panic.&#160;&#160; You made A/D was online, you ran the cluster validation wizard and brought everything back online like Superman. Then the Offsite backup...</summary>
    <author>
        <name>Sean Kearney</name>
        <uri>http://ye110beard.spaces.live.com</uri>
    </author>
    
    
    <content type="html" xml:lang="en" xml:base="http://www.energizedtech.com/">
        <![CDATA[<p>Ok, the worst case scenario ACTUALLY HAPPENED.</p>  <p>You lost power in the Data center.</p>  <p>But you didn’t panic.&#160;&#160; You made A/D was online, you ran the cluster validation wizard and brought everything back online like Superman.</p>  <p>Then the Offsite backup kicks in on DPM and it refuses to backup certain resources.&#160;&#160; You end up scratching your Head,&#160; going mad in the Newsgroups.</p>  <p>Why you’ve even considered offering up that secret bottle of 20 year old scotch to the Computer gods if only they would solve this for you.</p>  <p>Well here’s what I found out.&#160; DPM does NOT like ANYTHING getting changed on it.&#160;&#160; Well would you?</p>  <p>Sometimes if things don’t shutdown very nicely (especially in a Cluster) the Validation wizard tries to help you and fixes them when it comes back online.&#160;&#160; It my case the nodes that used to be called</p>  <p><strong><em>SCVMM Servername Resources</em></strong></p>  <p>now came up like this</p>  <p><strong><em>SCVMM Servername</em></strong></p>  <p>Then when I poked deeper I found inside the Cluster these same Virtual Servers in Hyper-v (in the Cluster) had their name changed from</p>  <p><strong><em>SCVMM Servername</em></strong></p>  <p>to</p>  <p><strong><em>Virtual Machine Servername</em></strong></p>  <p>and now the icing on the cake</p>  <p>the Configuration part no longer said</p>  <p><strong><em>SCVMM Servername Configuration</em></strong></p>  <p>BUT</p>  <p><strong><em>Virtual Machine Configuration Servername</em></strong></p>  <p>So the REASON DPM is no longer happy with these suspect Services in the Cluster is simply because their name and signatures changed from the recovery of the Cluster.</p>  <p>So the Fix?</p>  <p>The one I figured out was easier than I imagined.&#160; Just remove the resource it’s backup configuration in DPM and re-add it.&#160;&#160; Sort of like “Rejoining a Domain” .&#160; The link broke, so the fix is to just severe it and put it back in.</p>  <p>Once I did this my issue was resolved IMMEDIATELY.&#160; Hopefully this helps somebody else out there <img style="border-bottom-style: none; border-left-style: none; border-top-style: none; border-right-style: none" class="wlEmoticon wlEmoticon-smile" alt="Smile" src="http://www.energizedtech.com/Windows-Live-Writer/Recovering-DPM-2010-and-a-faiilover-Clus_121C8/wlEmoticon-smile_2.png" /></p>  <p>Cheers and remember to take it easy out there, We’re all cheering for you.</p>  <p>Sean   <br />The Energized Tech</p>]]>
        
    </content>
</entry>

<entry>
    <title><![CDATA[Hyper-V&ndash;I need to Merge my AVHD and VHD&ndash;What to do?!]]></title>
    <link rel="alternate" type="text/html" href="http://www.energizedtech.com/2011/06/hypervi-need-to-merge-my-avhd.html" />
    <id>tag:www.energizedtech.com,2011://1.519</id>

    <published>2011-06-19T13:44:34Z</published>
    <updated>2011-06-19T13:44:34Z</updated>

    <summary>First rule.&#160; DO NOT Take a Snapshot in your Production environment.&#160; Avoid it at all costs whether it’s VMware or Hyper-V.&#160; It’s a massive risk to the data if corruption occurs. Now if you IGNORED this rule or you HAD...</summary>
    <author>
        <name>Sean Kearney</name>
        <uri>http://ye110beard.spaces.live.com</uri>
    </author>
    
    
    <content type="html" xml:lang="en" xml:base="http://www.energizedtech.com/">
        <![CDATA[<p>First rule.&#160; DO NOT Take a Snapshot in your Production environment.&#160; Avoid it at all costs whether it’s VMware or Hyper-V.&#160; It’s a massive risk to the data if corruption occurs.</p>  <p>Now if you IGNORED this rule or you HAD to do something that INSISTED on this happening, don’t sweat it.</p>  <p>The problem is sometimes we (as humans) make mistakes.&#160; The snapshot gets taken *and* get’s forgotten about.&#160; So you have to Merge it.</p>  <p>Normally in Hyper-V if you do a shutdown of the Virtual Machine, the environment WILL automatically start merging.&#160; This is the norm.&#160;&#160; </p>  <p>But factors can affect this.&#160; Space, Murphy and the Unknown are the uncontrollable factors we Professionals have to deal with.&#160; However it’s good to know there is a fallback.&#160; You can do it manually.</p>  <p>*klunk*</p>  <p>Yes, manually.&#160;&#160; Now no matter how much data you have, no matter how long it takes… BACK IT UP FIRST!!!</p>  <p>I say this because you always (no matter your skillset, no matter what you think SHOULD happen) you have to plan for the UNexpected.&#160; Power outage, corrupt files on the server, the Host dying during the process.&#160; Fortunately in my experience Hyper-V is well designed for the unexpected.</p>  <p>Let’s also think about just what an AVHD file is.&#160;&#160; It is closer to a list of transactions than a virtual hard drive.&#160;&#160; So when Hyper-V goes to merge the data, it is examining the transactions and building the drive structure to commit it.&#160; If you lose power, you still shouldn’t lose data.</p>  <p>But if you need to do a manual merge (Perhaps you would like to rebuild those files offline to avoid issues?) this is also a simple process. (Although scary the first time you try it!)</p>  <p>Rename all the “AVHD” files to VHD </p>  <p>Go to Hyper-V and choose “EDIT DISK”.&#160; Browse to the folder of the files.</p>  <p>Find the NEWEST file (That was an AVHD and is now a VHD) and select it.</p>  <p>You MAY get an option to “Reconnect to Parent”.&#160; This can be normal if you have MULTIPLE Avhd files.&#160;&#160; Take note of the ORIGINAL filename and connect to that file in your current folder (if you read the screen Hyper-V is actually prompting you).&#160; The AVHD’s refer to the original VHD (if they are the first Snapshot *or* they will refer to the PREVIOUS Avhd file.</p>  <p>If you get a Reconnect, the choose the proper file and back to EDIT and REselect the Newest file again.&#160;&#160; You will now be presented with “Compact” or “Merge” as your options.&#160; Choose “Merge”</p>  <p>Let the file Merge (Depending on the size it could take a bit, don’t worry and don’t panic)</p>  <p>Repeat the process going back a file and back a file until you only have you VHD</p>  <p>If you’re concerned about the content afterwards and don’t want to chance a boot, Remember in Server 2008R2 and Server 2008 in DiskMgmt you can attach the VHD in Readonly mode to verify the content.</p>  <p>Now in my case my Hyper-V files are well organized.&#160; You may find out yours are still in the default location like C:\ProgramData\Microsoft\Hyper-V .&#160; But one of the nice things about the AVHD files (Snapshots) is they mimic the name of the VHD file.&#160; so if your Parent VHD was called</p>  <p><strong><em>CONTOSOFPS.VHD</em></strong></p>  <p>you’ll find the AVHD files will have names like.</p>  <p><strong><em>CONTOSOFPS_032CB447-0077-4A39-8F99-5AF874F20A6D.AVHD        <br />CONTOSOFPS_526AEF34-C557-4318-B242-337EC548F7E0.AVHD</em></strong></p>  <p>If you have to go digging, you usually don’t.</p>  <p>Also some more details I found out.</p>  <p>600 gigabytes on a Strong Raid 5 controller over SAN is about 6 hours to Merge.&#160; I found similar numbers when working directly from Raid 5 Sata drives. </p>  <p>It will Merge One AVHD file at a time.&#160; this is Good to know because if you’re watching you WILL actually see the AVHD files disappear, Newest to oldest.&#160;&#160; (As the Newest is Merged INTO it’s predecessor)</p>  <p>It does NOT build a “NEW” Vhd file, so disk space (As far as I can tell) is NOT an issue unless the parent is meant to “Grow” in the process.&#160;&#160; But between the Parent and the Removed child, you should be ok…</p>  <p>So just remember.&#160;&#160; Don’t panic if you have a massive amount to Merge.&#160; It will happen.&#160; If you’re nervous, copy the files ELSEWHERE and begin doing a Manual merge of the backups in Hyper-V.&#160; The good part there is you can mount it all afterwards to verify the status.</p>  <p>…. Most of all just be cautious, but be confident.&#160; It will all work out.</p>]]>
        
    </content>
</entry>

</feed>

