<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:copyright="http://blogs.law.harvard.edu/tech/rss" xmlns:image="http://purl.org/rss/1.0/modules/image/">
    <channel>
        <title>Programing</title>
        <link>http://www.unmitigatedrisk.com/category/10.aspx</link>
        <description>Programing</description>
        <language>en-US</language>
        <copyright>Ryan M. Hurst</copyright>
        <managingEditor>rmh@unmitigatedrisk.com</managingEditor>
        <generator>Subtext Version 1.9.3.51</generator>
        <item>
            <title>How to tell if a volume is Bitlocker protected with TPM and PIN</title>
            <link>http://unmitigatedrisk.com/archive/2008/11/12/208.aspx</link>
            <description>&lt;p&gt;Today I was presented with a question, how can I tell if the OS volume is protected with Bitlocker a TPM and a PIN.&lt;/p&gt;
&lt;p&gt;Since I could not sleep (its 2:30AM right now) I figured I would throw together a quick and dirty script that checks for that, it was pretty easy to do.&lt;/p&gt;
&lt;p&gt;I started with the documentation for &lt;a href="http://msdn.microsoft.com/en-us/library/aa376483(VS.85).aspx"&gt;Win32_EncryptableVolume&lt;/a&gt; which I recall seeing previously in a unrelated mail at some point, from there I discovered the &lt;a href="http://msdn.microsoft.com/en-us/library/aa376441(VS.85).aspx"&gt;GetKeyProtectors&lt;/a&gt; method, I then did a search on &lt;a href="http://search.live.com/results.aspx?q=site%3Amicrosoft.com+GetKeyProtectors+VBSCRIPT&amp;amp;form=QBLH"&gt;Live&lt;/a&gt; for GetKeyProtectors and VBSCRIPT that was scoped to Microsoft.com domains.&lt;/p&gt;
&lt;p&gt;This got me a handful of samples, I took one hacked it up and came up with this:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;' -------------------------------------------------------------------------------- &lt;br /&gt;
' Get configuration we will need &lt;br /&gt;
' -------------------------------------------------------------------------------- &lt;br /&gt;
' Get the OS System Drive &lt;br /&gt;
set shell = WScript.CreateObject( "WScript.Shell" ) &lt;br /&gt;
strDriveLetter = shell.ExpandEnvironmentStrings("%SystemDrive%") &lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;' Target computer name &lt;br /&gt;
' Use "." to connect to the local computer &lt;br /&gt;
strComputerName = "." &lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;' -------------------------------------------------------------------------------- &lt;br /&gt;
' Connect to the BitLocker WMI provider class &lt;br /&gt;
' -------------------------------------------------------------------------------- &lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;strConnectionStr = "winmgmts:" _ &lt;br /&gt;
                 &amp;amp; "{impersonationLevel=impersonate,authenticationLevel=pktPrivacy}!\\" _ &lt;br /&gt;
                 &amp;amp; strComputerName _ &lt;br /&gt;
                 &amp;amp; "\root\cimv2\Security\MicrosoftVolumeEncryption" &lt;br /&gt;
On Error Resume Next 'handle permission errors &lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;Set objWMIService = GetObject(strConnectionStr) &lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;If Err.Number &amp;lt;&amp;gt; 0 Then &lt;br /&gt;
     WScript.Echo "Failed to connect to the BitLocker interface (Error 0x" &amp;amp; Hex(Err.Number) &amp;amp; ")." &lt;br /&gt;
     Wscript.Echo "Ensure that you are running with administrative privileges." &lt;br /&gt;
     WScript.Quit -1 &lt;br /&gt;
End If &lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;On Error GoTo 0 &lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;' -------------------------------------------------------------------------------- &lt;br /&gt;
' Get a list of volumes that could be bitlocker protected. &lt;br /&gt;
' -------------------------------------------------------------------------------- &lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;strQuery = "Select * from Win32_EncryptableVolume where DriveLetter='" &amp;amp; strDriveLetter &amp;amp; "'" &lt;br /&gt;
Set colTargetVolumes = objWMIService.ExecQuery(strQuery) &lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;If colTargetVolumes.Count = 0 Then &lt;br /&gt;
    WScript.Echo "FAILURE: Unable to find BitLocker-capable drive " &amp;amp;  strDriveLetter &amp;amp; " on computer " &amp;amp; strComputerName &amp;amp; "." &lt;br /&gt;
    WScript.Quit -1 &lt;br /&gt;
End If &lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;' there should only be one volume found &lt;br /&gt;
For Each objFoundVolume in colTargetVolumes &lt;br /&gt;
    set objVolume = objFoundVolume &lt;br /&gt;
Next &lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;' -------------------------------------------------------------------------------- &lt;br /&gt;
' Now check if it was protected with a TPM and a PIN &lt;br /&gt;
' -------------------------------------------------------------------------------- &lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;nKeyProtectorTypeIn = 4 ' type associated with "TPM and Pin" protector &lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;nRC = objVolume.GetKeyProtectors(nKeyProtectorTypeIn, aKeyProtectorIDs) &lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;If nRC &amp;lt;&amp;gt; 0 Then &lt;br /&gt;
WScript.Echo "FAILURE: GetKeyProtectors failed with return code 0x" &amp;amp; Hex(nRC) &lt;br /&gt;
WScript.Quit -1 &lt;br /&gt;
End If &lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;' there should only be one volume found &lt;br /&gt;
For Each objFoundVolume in colTargetVolumes &lt;br /&gt;
    set objVolume = objFoundVolume &lt;br /&gt;
Next &lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;' -------------------------------------------------------------------------------- &lt;br /&gt;
' Now return what we found. &lt;br /&gt;
' -------------------------------------------------------------------------------- &lt;br /&gt;
On Error Resume Next 'handle unitialized array &lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;If IsNull(aKeyProtectorIDs(0)) Then &lt;br /&gt;
    WScript.Echo "This volume is NOT TPM and PIN protected." &lt;br /&gt;
Else &lt;br /&gt;
    WScript.Echo "This volume IS TPM and PIN protected." &lt;br /&gt;
End If&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;From the time I decided to write the script, to the time I wrote it and tested it was about 15 to 20 minutes; the samples were great, the MSDN documentation was pretty decent too; all this without ever doing anything with Bitlocker before, WMI is great stuff.&lt;/p&gt;
&lt;p&gt;I may never use this but if nothing else it was quick and fun to throw together, maybe it will help you.&lt;/p&gt;&lt;img src="http://unmitigatedrisk.com/aggbug/208.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Ryan M. Hurst</dc:creator>
            <guid>http://unmitigatedrisk.com/archive/2008/11/12/208.aspx</guid>
            <pubDate>Wed, 12 Nov 2008 10:47:57 GMT</pubDate>
            <wfw:comment>http://unmitigatedrisk.com/comments/208.aspx</wfw:comment>
            <comments>http://unmitigatedrisk.com/archive/2008/11/12/208.aspx#feedback</comments>
            <slash:comments>1</slash:comments>
            <wfw:commentRss>http://unmitigatedrisk.com/comments/commentRss/208.aspx</wfw:commentRss>
            <trackback:ping>http://unmitigatedrisk.com/services/trackbacks/208.aspx</trackback:ping>
        </item>
        <item>
            <title>How to do away with the Delete/Resume/Restart Page...</title>
            <link>http://unmitigatedrisk.com/archive/2008/07/06/205.aspx</link>
            <description>&lt;p spellchecked="true"&gt;I don't know about you but I just hate the Delete/Resume/Start page in Media Center; I would prefer that when the video is done that it just take you back to the page that invoked the play operation in the first place.&lt;/p&gt;
&lt;p spellchecked="true"&gt;This isn't so hard to do, all you need to do is wait for &lt;font class="misspellet" face="fmisspellt" spellchecked="true"&gt;&lt;a href="http://msdn.microsoft.com/en-us/library/bb189375.aspx"&gt;MediaTransport.PropertyChanged&lt;/a&gt;&lt;/font&gt; to file and when &lt;font class="misspellet" face="fmisspellt" spellchecked="true"&gt;&lt;a href="http://msdn.microsoft.com/en-us/library/ms816500.aspx "&gt;PlayState&lt;/a&gt;&lt;/font&gt; goes into the "Stopped" &lt;a href="http://msdn.microsoft.com/en-us/library/aa468446.aspx"&gt;state&lt;/a&gt; navigate back to whatever page you feel is appropriate.&lt;/p&gt;
&lt;p spellchecked="true"&gt;A generic way to get this page out of Media Center would be to call &lt;font class="misspellet" face="fmisspellt" spellchecked="true"&gt;&lt;a href="http://msdn.microsoft.com/en-us/library/bb189151.aspx"&gt;HistoryOrientedPageSession.BackPage&lt;/a&gt;&lt;/font&gt; every time the playback goes from Playing to Stopped.&lt;/p&gt;
&lt;p&gt;While I have not tried this myself, this &lt;font class="" face="fmisspellt" spellchecked="true"&gt;appears&lt;/font&gt; fairly straight forward and is probably safe to do at any time (given the nature of this state transition).&lt;/p&gt;&lt;img src="http://unmitigatedrisk.com/aggbug/205.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Ryan M. Hurst</dc:creator>
            <guid>http://unmitigatedrisk.com/archive/2008/07/06/205.aspx</guid>
            <pubDate>Mon, 07 Jul 2008 00:57:13 GMT</pubDate>
            <wfw:comment>http://unmitigatedrisk.com/comments/205.aspx</wfw:comment>
            <comments>http://unmitigatedrisk.com/archive/2008/07/06/205.aspx#feedback</comments>
            <wfw:commentRss>http://unmitigatedrisk.com/comments/commentRss/205.aspx</wfw:commentRss>
            <trackback:ping>http://unmitigatedrisk.com/services/trackbacks/205.aspx</trackback:ping>
        </item>
        <item>
            <title>How to determine what content a MCE Extender supports...</title>
            <link>http://unmitigatedrisk.com/archive/2008/07/06/204.aspx</link>
            <description>&lt;p spellchecked="true"&gt;So your a Media Center add-in and &lt;font class="" face="fmisspellt" spellchecked="true"&gt;you want to determine if a file is a supported format for the playback device that is being used at any given time, here is what you do:&lt;/font&gt;&lt;/p&gt;
&lt;p spellchecked="true"&gt;First things first you should detect if your on a Extender or not you should make sure the &lt;font class="misspellet" face="fmisspellt" spellchecked="true"&gt;&lt;a href="http://msdn.microsoft.com/en-us/library/aa468315.aspx"&gt;Capabilities.IsConsole&lt;/a&gt;&lt;/font&gt; is false.&lt;/p&gt;
&lt;p spellchecked="true"&gt;At this point you know your on a extender, the next thing need to do is check to see that the file you are about to play is supported by the the Extender, to do that you can use &lt;font class="misspellet" face="fmisspellt" spellchecked="true"&gt;&lt;a href="http://msdn.microsoft.com/en-us/library/aa468340.aspx"&gt;DeviceInfo.ProtocolInfo&lt;/a&gt;&lt;/font&gt; (), this will either return null which means you can assume a base set of capabilities (documented on &lt;a href="http://msdn.microsoft.com/en-us/library/aa468340.aspx"&gt;here&lt;/a&gt;) or return a string which can be parsed to find out what "Content Types" the Extender supports.&lt;/p&gt;
&lt;p spellchecked="true"&gt;What is a "Content Type" you ask? its a string that gives you a basic idea of what sort of content your looking at (obvious eh?) for a mpeg file it will be "video/mpeg".&lt;/p&gt;
&lt;p spellchecked="true"&gt;You can determine the "Content Type" for a given file extension by looking in the registry under "&lt;font class="misspellet" face="fmisspellt" spellchecked="true"&gt;HKEY_CLASSES_ROOT&lt;/font&gt;\.{&lt;font class="misspellet" face="fmisspellt" spellchecked="true"&gt;FileExtension&lt;/font&gt;}" where {&lt;font class="misspellet" face="fmisspellt" spellchecked="true"&gt;FileExtension&lt;/font&gt;} is the extension of the file in question, the value of "Content Type" will have what you need.&lt;/p&gt;
&lt;p spellchecked="true"&gt;Another &lt;font class="" face="fmisspellt" spellchecked="true"&gt;useful thing to know is the "&lt;font class="misspellet" face="fmisspellt" spellchecked="true"&gt;PercievedType&lt;/font&gt;" for a given file, its very similar to "Content Type" in purpose but the king thing to understand is that the Videos Library in &lt;font class="misspellet" face="fmisspellt" spellchecked="true"&gt;MCE&lt;/font&gt; uses this to determine if a given file is a "Video" or not, as such if you were to build a Video library of sorts what you would likely want to do is:&lt;/font&gt;&lt;/p&gt;
&lt;ol spellchecked="true"&gt;
    &lt;li spellchecked="true"&gt;
    &lt;div spellchecked="true"&gt;Find all content that has a &lt;font class="misspellet" face="fmisspellt" spellchecked="true"&gt;PercievedType&lt;/font&gt; of Video&lt;/div&gt;
    &lt;/li&gt;
    &lt;li spellchecked="true"&gt;
    &lt;div spellchecked="true"&gt;Identity which of those files are supported &lt;font class="" face="fmisspellt" spellchecked="true"&gt;by the device being used at the time by checking the &lt;font class="misspellet" face="fmisspellt" spellchecked="true"&gt;ProtocolInfo&lt;/font&gt; method.&lt;/font&gt;&lt;/div&gt;
    &lt;/li&gt;
    &lt;li spellchecked="true"&gt;
    &lt;div spellchecked="true"&gt;Either filter out or disable content that is not supported by the current playback device.&lt;/div&gt;
    &lt;/li&gt;
&lt;/ol&gt;
&lt;p spellchecked="true"&gt;As I said this approach &lt;font class="" face="fmisspellt" spellchecked="true"&gt;isn't&lt;/font&gt; &lt;font class="" face="fmisspellt" spellchecked="true"&gt;perfect&lt;/font&gt;, it has a couple short &lt;font class="" face="fmisspellt" spellchecked="true"&gt;comings&lt;/font&gt;:&lt;/p&gt;
&lt;ol spellchecked="true"&gt;
    &lt;li spellchecked="true"&gt;
    &lt;div spellchecked="true"&gt;You are not &lt;font class="" face="fmisspellt" spellchecked="true"&gt;guaranteed&lt;/font&gt; that a device will return you a &lt;font class="misspellet" face="fmisspellt" spellchecked="true"&gt;ProtocolInfo&lt;/font&gt; string so you have to special case that with the default content types called out in the &lt;font class="misspellet" face="fmisspellt" spellchecked="true"&gt;ProtocolInfo&lt;/font&gt; documentation.&lt;/div&gt;
    &lt;/li&gt;
    &lt;li spellchecked="true"&gt;
    &lt;div spellchecked="true"&gt;Content Type, while &lt;font class="" face="fmisspellt" spellchecked="true"&gt;useful &lt;font class="" face="fmisspellt" spellchecked="true"&gt;isn't&lt;/font&gt; enough to tell you for sure the content will play, for example bit rate and other encoding options can make content not playable.&lt;/font&gt;&lt;/div&gt;
    &lt;/li&gt;
&lt;/ol&gt;
&lt;p spellchecked="true"&gt;With that being said this is a fairly reliably means for you to filter out the &lt;font class="misspellet" face="fmisspellt" spellchecked="true"&gt;cruft&lt;/font&gt; that will cause users of your add-ins problems, and you should consider implementing it if you create a library view in your application.&lt;/p&gt;&lt;img src="http://unmitigatedrisk.com/aggbug/204.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Ryan M. Hurst</dc:creator>
            <guid>http://unmitigatedrisk.com/archive/2008/07/06/204.aspx</guid>
            <pubDate>Sun, 06 Jul 2008 22:12:20 GMT</pubDate>
            <wfw:comment>http://unmitigatedrisk.com/comments/204.aspx</wfw:comment>
            <comments>http://unmitigatedrisk.com/archive/2008/07/06/204.aspx#feedback</comments>
            <wfw:commentRss>http://unmitigatedrisk.com/comments/commentRss/204.aspx</wfw:commentRss>
            <trackback:ping>http://unmitigatedrisk.com/services/trackbacks/204.aspx</trackback:ping>
        </item>
        <item>
            <title>Automate the mundane for sanity sake (part 4) </title>
            <link>http://unmitigatedrisk.com/archive/2008/06/22/197.aspx</link>
            <description>&lt;p&gt;&lt;span style="FONT-SIZE: 9pt; FONT-FAMILY: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;"&gt;A recent change in My Movies results in users having to have the rips be conformant with the DVD standards, specifically it now requires that the VOB, IFO, and BUP files are in a VIDEO_TS folder.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="FONT-SIZE: 9pt; FONT-FAMILY: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;"&gt;I threw together a very basic script that can take folders that are in the form of sourcedir\moviename\dvdfiles to sourcedir\moviename\video_ts\dvdfiles.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="FONT-SIZE: 9pt; FONT-FAMILY: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;"&gt;As always use this script at your own risk, I have only done limited testing, but it worked on the two folders I tried &lt;img alt="" src="/Providers/BlogEntryEditor/FCKeditor/editor/images/smiley/msn/tounge_smile.gif" /&gt;&lt;span style="mso-no-proof: yes"&gt;&lt;v:shapetype id="_x0000_t75" coordsize="21600,21600" o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f" stroked="f"&gt;&lt;v:stroke joinstyle="miter"&gt;&lt;/v:stroke&gt;&lt;v:formulas&gt;&lt;v:f eqn="if lineDrawn pixelLineWidth 0"&gt;&lt;/v:f&gt;&lt;v:f eqn="sum @0 1 0"&gt;&lt;/v:f&gt;&lt;v:f eqn="sum 0 0 @1"&gt;&lt;/v:f&gt;&lt;v:f eqn="prod @2 1 2"&gt;&lt;/v:f&gt;&lt;v:f eqn="prod @3 21600 pixelWidth"&gt;&lt;/v:f&gt;&lt;v:f eqn="prod @3 21600 pixelHeight"&gt;&lt;/v:f&gt;&lt;v:f eqn="sum @0 0 1"&gt;&lt;/v:f&gt;&lt;v:f eqn="prod @6 1 2"&gt;&lt;/v:f&gt;&lt;v:f eqn="prod @7 21600 pixelWidth"&gt;&lt;/v:f&gt;&lt;v:f eqn="sum @8 21600 0"&gt;&lt;/v:f&gt;&lt;v:f eqn="prod @7 21600 pixelHeight"&gt;&lt;/v:f&gt;&lt;v:f eqn="sum @10 21600 0"&gt;&lt;/v:f&gt;&lt;/v:formulas&gt;&lt;v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"&gt;&lt;/v:path&gt;&lt;o:lock v:ext="edit" aspectratio="t"&gt;&lt;/o:lock&gt;&lt;/v:shapetype&gt;&lt;v:shape id="Picture_x0020_1" style="VISIBILITY: visible; WIDTH: 14.25pt; HEIGHT: 14.25pt; mso-wrap-style: square" o:spid="_x0000_i1025" type="#_x0000_t75" alt="http://unmitigatedrisk.com/Providers/BlogEntryEditor/FCKeditor/editor/images/smiley/msn/tounge_smile.gif"&gt;&lt;v:imagedata src="file:///C:\Users\rmh\AppData\Local\Temp\msohtmlclip1\01\clip_image001.gif" o:title="tounge_smile"&gt;&lt;/v:imagedata&gt;&lt;/v:shape&gt;&lt;/span&gt;.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="FONT-SIZE: 9pt; FONT-FAMILY: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;"&gt;To use this copy the following script to foo.vbs, put it in the root of your movies folder, open a command prompt in that directory and type "cscript foo.vbs" and you should be good to go.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="FONT-SIZE: 9pt; FONT-FAMILY: &amp;quot;Arial&amp;quot;,&amp;quot;sans-serif&amp;quot;"&gt;I recommend trying it on a small folder set before you run it on your whole collection to make sure you would be happy with the results.&lt;/span&gt;&lt;/p&gt;
&lt;blockquote dir="ltr" style="MARGIN-RIGHT: 0px"&gt;
&lt;p&gt;&lt;font face="Arial"&gt;Dim FileSystem, szMovieFolder&lt;br /&gt;
szMovieFolder = "C:\test"&lt;br /&gt;
Set FileSystem = CreateObject("Scripting.FileSystemObject")&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face="Arial"&gt;Dim Folder, File, Files, oMovieFolder, szFolderName, iEndOfShortFileName, szDestPath&lt;br /&gt;
Set oMovieFolder = FileSystem.GetFolder(szMovieFolder)&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face="Arial"&gt;Set Folders = oMovieFolder.SubFolders&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face="Arial"&gt;For Each Folder in Folders&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face="Arial"&gt; szFolderName = szMovieFolder  &amp;amp; "\" &amp;amp; Folder.Name  &lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face="Arial"&gt; If (FileSystem.FileExists(szFolderName &amp;amp; "\" &amp;amp; "VIDEO_TS.ifo")) = True Then&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face="Arial"&gt;  ' Looks like we have a movie name folder that directly contains a VIDEO_TS.IFO&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face="Arial"&gt;  szDestPath = szFolderName &amp;amp; "\" &amp;amp; "VIDEO_TS"&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face="Arial"&gt;  If (FileSystem.FolderExists(szDestPath)) = False Then&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face="Arial"&gt;   ' Looks like it also does not yet have a VIDEO_TS folder&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face="Arial"&gt;   FileSystem.CreateFolder(szDestPath)&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face="Arial"&gt;   ' Now it does!&lt;/font&gt;&lt;/p&gt;
&lt;font face="Arial"&gt;
&lt;p&gt;&lt;br /&gt;
   Set Files = Folder.Files&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;
   For Each File In Files&lt;br /&gt;
    bMove = False&lt;/p&gt;
&lt;p&gt;    ' If its a VOB, BUP, or IFO move it.&lt;br /&gt;
    If InStr(1, LCase(File.Name), ".vob") &amp;lt;&amp;gt; 0 Then bMove = True&lt;br /&gt;
    If InStr(1, LCase(File.Name), ".ifo") &amp;lt;&amp;gt; 0 Then bMove = True&lt;br /&gt;
    If InStr(1, LCase(File.Name), ".bup") &amp;lt;&amp;gt; 0 Then bMove = True&lt;/p&gt;
&lt;p&gt;    if bMove = True then&lt;br /&gt;
     ' ok lets move file&lt;br /&gt;
     wscript.echo "Moving '" &amp;amp; File.Name &amp;amp; "' to '" &amp;amp; szDestPath &amp;amp; "'"&lt;br /&gt;
     File.Move(szDestPath &amp;amp; "\" &amp;amp; File.Name)&lt;/p&gt;
&lt;p&gt;    end if&lt;br /&gt;
   Next &lt;/p&gt;
&lt;p&gt;  End If&lt;br /&gt;
 End If&lt;br /&gt;
Next&lt;/p&gt;
&lt;/font&gt;&lt;/blockquote&gt;
&lt;p dir="ltr"&gt;Good luck.&lt;/p&gt;&lt;img src="http://unmitigatedrisk.com/aggbug/197.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Ryan M. Hurst</dc:creator>
            <guid>http://unmitigatedrisk.com/archive/2008/06/22/197.aspx</guid>
            <pubDate>Sun, 22 Jun 2008 23:23:26 GMT</pubDate>
            <wfw:comment>http://unmitigatedrisk.com/comments/197.aspx</wfw:comment>
            <comments>http://unmitigatedrisk.com/archive/2008/06/22/197.aspx#feedback</comments>
            <wfw:commentRss>http://unmitigatedrisk.com/comments/commentRss/197.aspx</wfw:commentRss>
            <trackback:ping>http://unmitigatedrisk.com/services/trackbacks/197.aspx</trackback:ping>
        </item>
        <item>
            <title>OK, I admit it, I am twisted...</title>
            <link>http://unmitigatedrisk.com/archive/2008/03/22/184.aspx</link>
            <description>&lt;p&gt;&lt;font face="Arial"&gt;I was catching up on reading blogs and such and ran across this post from Bruce Schneier over at Wired titled "&lt;a href="http://www.wired.com/politics/security/commentary/securitymatters/2008/03/securitymatters_0320"&gt;Inside the Twisted Mind of the Security Professional&lt;/a&gt;".&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face="Arial"&gt;The premise of this so aptly titled post is that security professional's just think differently, and that this difference is a trait that might just be innate in certain individuals; I have to agree.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face="Arial"&gt;I got into electronics (including computers) as a child as a means to figure out how they worked, it started by taking them apart and putting them back together; though in many cases I ended up with extra parts most of the time they went back together just fine &lt;img alt="" src="/Providers/BlogEntryEditor/FCKeditor/editor/images/smiley/msn/tounge_smile.gif" /&gt;.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face="Arial"&gt;I quickly learned that this was mostly a mechanical exercise, and that no amount of assembly and re-assembly would really tech me how these things worked; so I started looking at the software.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face="Arial"&gt;The interest in software was really again trying to understand how these magnificent boxes worked, I recall looking at the files that made up programs trying to understand their role and ultimately realizing for me to really understand how things worked I had to be able to re-produce approximations of them and so I taught my-self to program (Basic, Pascal, C, and c64 and x86 assembly).&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face="Arial"&gt;Once I mastered the basics I came back to looking at these programs, trying to understand them and utilizing the basic understanding of computer architecture and programming I had amassed, from there I started trying to see how I could bypass the copy protections on games; it's really this that got me into computer security.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face="Arial"&gt;Here there was this commercial software developed by a mass of professionals designed to prevent me, a punk kid from doing something and I was able to by-pass it; I recall how proud I was of myself at first but this quickly lapsed as I realized problems like this were impassable, I was 10.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face="Arial"&gt;My friend Josh and I started fumbling around on bulletin boards across the nation, It remember going into a chat room with Josh and some guy offered us a step-by-step guide of sorts to log in and control phone switches as a means to make free international calls; he had written this guide based on a manual he stolen out of the back of a telephone operators truck, the inside cover of the manual included the default password for this switch.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face="Arial"&gt;I remember this guy telling us how he went about it, and how amazed he was when he found that most of the switches out there were based on this same system and no one changed the default password; this guy was not much older than us, maybe 15 or 16 but again clearly pleased with how he was able to figure this all out.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face="Arial"&gt;For me this was the beginning of understanding social and computer networking, and the beginning of me seeing myself as a "hacker".&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face="Arial"&gt;As a "hacker", I prided my myself in my common sense and the lack of common sense in others; every where I went I was looking for flaws, things that other people missed.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face="Arial"&gt;I remember when we moved to our new house, my mom called the power and phone companies to have our service transferred, I listened to her side of the phone call and she never had to give them any private information; I was amazed. Several months later some kid picked on me at school so I called the phone and power company to have their service disconnected, it worked.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face="Arial"&gt;This view on life has continued to this day, I have of course grown up and no longer use my insights for evil (at least intentionally) but I thank my lucky stars I see the world the way I do.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face="Arial"&gt;As for this view of life being innate in some, as I said. I believe it is; however I also believe it can be learned though I don't know if it can be taught. As a "hacker" when I watch movies I look for the mistakes, the things that were of such a small detail that they were missed by the production staff, when I got married I started to share these findings with my wife who was always surprised I noticed such things.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face="Arial"&gt;However at one point in our marriage she started finding these flaws before I did and when we discuss strategy on issues she also now finds angles I may have missed; she tells me that this is something she has learned from me, all I can say is I certainly didn't mean to teach it as now she can use it against me &lt;img alt="" src="/Providers/BlogEntryEditor/FCKeditor/editor/images/smiley/msn/regular_smile.gif" /&gt;&lt;/font&gt;&lt;/p&gt;&lt;img src="http://unmitigatedrisk.com/aggbug/184.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Ryan M. Hurst</dc:creator>
            <guid>http://unmitigatedrisk.com/archive/2008/03/22/184.aspx</guid>
            <pubDate>Sun, 23 Mar 2008 01:22:27 GMT</pubDate>
            <wfw:comment>http://unmitigatedrisk.com/comments/184.aspx</wfw:comment>
            <comments>http://unmitigatedrisk.com/archive/2008/03/22/184.aspx#feedback</comments>
            <wfw:commentRss>http://unmitigatedrisk.com/comments/commentRss/184.aspx</wfw:commentRss>
            <trackback:ping>http://unmitigatedrisk.com/services/trackbacks/184.aspx</trackback:ping>
        </item>
        <item>
            <title>RFC 5216 is published!</title>
            <link>http://unmitigatedrisk.com/archive/2008/03/22/183.aspx</link>
            <description>&lt;p&gt;&lt;font face="Arial"&gt;Previously I &lt;a href="http://www.unmitigatedrisk.com/archive/2007/06/28/87.aspx"&gt;mentioned&lt;/a&gt; I was working on an update to &lt;a href="http://www.ietf.org/rfc/rfc2716.txt"&gt;RFC 2716&lt;/a&gt; that process is now complete, the RFC number for this new work is &lt;a href="http://tools.ietf.org/rfc/rfc5216.txt"&gt;5216&lt;/a&gt;.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face="Arial"&gt;This update was really about adding clarifying text address common implementation issues, better aligning the specification with its dependent RFCs (like &lt;a href="http://tools.ietf.org/rfc/rfc4346.txt"&gt;RFC 4346&lt;/a&gt;, &lt;a href="http://tools.ietf.org/rfc/rfc3280.txt"&gt;RFC 3280&lt;/a&gt;, etc), updating to specification to represent actual implementation practices to aid in interoperability and of course improving security guidance for implementers.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face="Arial"&gt;To be clear, no new capabilities were added to this RFC; despite that the document increased 35.9934% in size (from 50.2 KB  to 71.7 KB); larger doesn't always mean better but in this case I think it does.&lt;/font&gt;&lt;/p&gt;&lt;img src="http://unmitigatedrisk.com/aggbug/183.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Ryan M. Hurst</dc:creator>
            <guid>http://unmitigatedrisk.com/archive/2008/03/22/183.aspx</guid>
            <pubDate>Sat, 22 Mar 2008 19:33:05 GMT</pubDate>
            <wfw:comment>http://unmitigatedrisk.com/comments/183.aspx</wfw:comment>
            <comments>http://unmitigatedrisk.com/archive/2008/03/22/183.aspx#feedback</comments>
            <wfw:commentRss>http://unmitigatedrisk.com/comments/commentRss/183.aspx</wfw:commentRss>
            <trackback:ping>http://unmitigatedrisk.com/services/trackbacks/183.aspx</trackback:ping>
        </item>
        <item>
            <title>My Netflix is dead, long live My Netflix.</title>
            <link>http://unmitigatedrisk.com/archive/2008/02/10/174.aspx</link>
            <description>&lt;p&gt;Back in 2004 ended up getting a cold or flu of some sort that kept me from going into work for a day or so and I used that time to throw together a Media Center add-in called My Netflix; I have done a few minor updates over the years (&lt;a href="http://unmitigatedrisk.com/archive/2007/08/25/119.aspx"&gt;http://unmitigatedrisk.com/archive/2007/08/25/119.aspx&lt;/a&gt;) but my work has become increasingly demanding and finding  the time to give the project the TLC it deserves has been difficult at best.&lt;/p&gt;
&lt;p&gt;As a result I am now officially announcing the death of My Netflix, I will no longer fix anything no mater how minor; if you have issues I released it under the MSFT permissive license and the source is still available (&lt;a href="http://www.unmitigatedrisk.com/mce/mynetflixsource.zip"&gt;http://www.unmitigatedrisk.com/mce/mynetflixsource.zip&lt;/a&gt;) so you can go to town if you like.&lt;/p&gt;
&lt;p&gt;With that being said, My Netflix has also been re-born (&lt;a href="http://www.anpark.com/index.php/2008/02/10/new-vista-media-center-plugin-mynetflix-beta/"&gt;http://www.anpark.com/index.php/2008/02/10/new-vista-media-center-plugin-mynetflix-beta/&lt;/a&gt;); a kind soul (Anthony Park) has done a bunch of what I wanted to see done and re-wrote the add-in as a MCML application giving it experience more consistent with MCE plus he added support for Watch It now.&lt;/p&gt;
&lt;p&gt;I have not been a Netflix subscriber for some time (they started rate limiting me, I think this is a dishonest practice) so I switched to Blockbuster (which has its own issues but that's another post) but from the screen shots Anthony has done a great job; in fact I think I will sign up for Netflix on one of the trials and play with it.&lt;/p&gt;
&lt;p&gt;I can't say how excited I am to see this happen :)&lt;/p&gt;
&lt;p&gt;Thanks Anthony!&lt;/p&gt;&lt;img src="http://unmitigatedrisk.com/aggbug/174.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Ryan M. Hurst</dc:creator>
            <guid>http://unmitigatedrisk.com/archive/2008/02/10/174.aspx</guid>
            <pubDate>Sun, 10 Feb 2008 22:50:24 GMT</pubDate>
            <wfw:comment>http://unmitigatedrisk.com/comments/174.aspx</wfw:comment>
            <comments>http://unmitigatedrisk.com/archive/2008/02/10/174.aspx#feedback</comments>
            <slash:comments>4</slash:comments>
            <wfw:commentRss>http://unmitigatedrisk.com/comments/commentRss/174.aspx</wfw:commentRss>
            <trackback:ping>http://unmitigatedrisk.com/services/trackbacks/174.aspx</trackback:ping>
        </item>
        <item>
            <title>Thank goodness, finally a security silver bullet...</title>
            <link>http://unmitigatedrisk.com/archive/2008/01/10/169.aspx</link>
            <description>&lt;p spellchecked="true"&gt;Mike Howard just did a &lt;a spellchecked="true" href="http://blogs.msdn.com/michael_howard/archive/2008/01/10/open-source-projects-certified-as-secure-huh.aspx"&gt;&lt;u spellchecked="true"&gt;&lt;font color="#800080" spellchecked="true"&gt;post&lt;/font&gt;&lt;/u&gt;&lt;/a&gt; about a company offering a certificication that "prooves" your secure.&lt;/p&gt;
&lt;p&gt;Why didn't I think of that? Hehe...&lt;/p&gt;&lt;img src="http://unmitigatedrisk.com/aggbug/169.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Ryan M. Hurst</dc:creator>
            <guid>http://unmitigatedrisk.com/archive/2008/01/10/169.aspx</guid>
            <pubDate>Fri, 11 Jan 2008 03:04:18 GMT</pubDate>
            <wfw:comment>http://unmitigatedrisk.com/comments/169.aspx</wfw:comment>
            <comments>http://unmitigatedrisk.com/archive/2008/01/10/169.aspx#feedback</comments>
            <wfw:commentRss>http://unmitigatedrisk.com/comments/commentRss/169.aspx</wfw:commentRss>
            <trackback:ping>http://unmitigatedrisk.com/services/trackbacks/169.aspx</trackback:ping>
        </item>
        <item>
            <title>Computer controllable energy monitors…</title>
            <link>http://unmitigatedrisk.com/archive/2008/01/03/166.aspx</link>
            <description>&lt;div style="MARGIN: 0in 0in 0pt"&gt;For a while I have been considering doing a Windows Media Center add-in to monitor and graph home energy consumption (check out &lt;a href="http://bwired.nl"&gt;http://bwired.nl&lt;/a&gt; for my inspiration); the problem is that I have been unable to find energy monitors that are computer controllable, that is until just recently. &lt;/div&gt;
&lt;ul dir="ltr" style="MARGIN-RIGHT: 0px"&gt;
    &lt;li&gt;
    &lt;div style="MARGIN: 0in 0in 0pt"&gt;&lt;a href="http://brultech.com/HomeEnergy/HomeEnergy.html"&gt;Brultech ECM-1220-H-PL-X&lt;/a&gt; &lt;/div&gt;
    &lt;/li&gt;
    &lt;li&gt;
    &lt;div style="MARGIN: 0in 0in 0pt"&gt;&lt;a href="http://www.theenergydetective.com/store/teds/ted-1001.html"&gt;TED 1001&lt;/a&gt;  &lt;/div&gt;
    &lt;/li&gt;
&lt;/ul&gt;
&lt;div style="MARGIN: 0in 0in 0pt"&gt;The Brueltech unit runs $399, while the TED runs &lt;strike&gt;$144&lt;/strike&gt; &lt;strong&gt;&lt;em&gt;$188&lt;/em&gt;&lt;/strong&gt;; this isn’t really a apples to apples comparison though as the Brueltech unit supports &lt;a href="http://www.zigbee.org/en/index.asp"&gt;Zigbee&lt;/a&gt;. For those not in “the know” &lt;a href="http://www.zigbee.org/en/index.asp"&gt;Zigbee&lt;/a&gt; is a wireless mesh networking protocol (much like &lt;a href="http://www.z-wavealliance.org/modules/start/)"&gt;Z-Wave&lt;/a&gt;).&lt;/div&gt;
&lt;div style="MARGIN: 0in 0in 0pt"&gt; &lt;/div&gt;
&lt;div style="MARGIN: 0in 0in 0pt"&gt;What this means is that instead of having to rely on a direct USB connection to the PC one can use a USB to &lt;a href="http://www.zigbee.org/en/index.asp"&gt;Zigbee&lt;/a&gt; adapter to talk to the Brueltech unit to get the measurement updates wirelessly, very cool IMHO.&lt;/div&gt;
&lt;div style="MARGIN: 0in 0in 0pt"&gt; &lt;/div&gt;
&lt;div style="MARGIN: 0in 0in 0pt"&gt;&lt;strike&gt;&lt;font style="BACKGROUND-COLOR: #ffff99"&gt;Another potential difference is quality of the components Brultech does some level of commercial monitoring and claims that (as an example) their induction measurement sensors of a higher grade/quality than most; but hey I work in software what do I know of such things &lt;img alt="" src="/Providers/BlogEntryEditor/FCKeditor/editor/images/smiley/msn/tounge_smile.gif" /&gt;.&lt;/font&gt;&lt;/strike&gt;&lt;/div&gt;
&lt;div style="MARGIN: 0in 0in 0pt"&gt; &lt;/div&gt;
&lt;div style="MARGIN: 0in 0in 0pt"&gt;When I tell people about my desire to do this project they normally ask me “why in the he-double-hockey-sticks would you want to do that?”; the answer to that question to some degree is because I can. After all every once in a while one must re-prove their uber geekiness; but there is more to it, studies have shown that having knowledge of electrical consumption and the associated costs alone can contribute to a reduction in electrical usage.&lt;/div&gt;
&lt;div style="MARGIN: 0in 0in 0pt"&gt; &lt;/div&gt;
&lt;div style="MARGIN: 0in 0in 0pt"&gt;Then if one combines such a system with a automated home (via say &lt;a href="http://www.z-wavealliance.org/modules/start/)"&gt;Z-Wave&lt;/a&gt; devices) one can monitor usage in relationship to device power state to infer power consumption, with that data a intelligent system could make recommendations on changes in usage or automatically make adjustments in usage to reduce electrical use.&lt;/div&gt;
&lt;div style="MARGIN: 0in 0in 0pt"&gt; &lt;/div&gt;
&lt;div style="MARGIN: 0in 0in 0pt"&gt;My plan (however half baked) started as a plan to develop a class library of sorts for home automation, a set of abstract base classes in .NET for interacting with devices independent of their protocols (X10, Z-Wave, Insteon, ZigBee, etc) the problem was that control without insight was not by itself compelling enough for me to undergo this project, the insights that these devices offer could change that equation enough to get me off my duff and do this.&lt;/div&gt;
&lt;div style="MARGIN: 0in 0in 0pt"&gt; &lt;/div&gt;
&lt;div style="MARGIN: 0in 0in 0pt"&gt;Only time will tell, at $399 I will have to probably put the project on hold for a few months; maybe Brultech and/or TED will get me evaluation unit for cheap to play with.&lt;font size="1"&gt;&lt;/font&gt; &lt;/div&gt;
&lt;pre style="MARGIN: 0in 0in 0pt"&gt;&lt;font face="Arial"&gt; &lt;/font&gt;&lt;/pre&gt;
&lt;p style="MARGIN: 0in 0in 0pt"&gt;&lt;font size="1"&gt;&lt;strong&gt;[Update 1/11/08 2:16PM]&lt;/strong&gt; I have had some great email exchanges with the folks at Brultech and they have been great; in this exchange I have learned more about the differences between the TED and the Brultech offering, some of which include:&lt;/font&gt;&lt;/p&gt;
&lt;ol&gt;
    &lt;li&gt;
    &lt;p style="MARGIN: 0in 0in 0pt"&gt;&lt;span style="FONT-SIZE: 9pt"&gt;&lt;font size="1"&gt;The $144 price for the TED does not include software., the software is an additional $44. &lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
    &lt;p style="MARGIN: 0in 0in 0pt"&gt;&lt;span style="FONT-SIZE: 9pt"&gt;&lt;/span&gt;&lt;span style="FONT-SIZE: 9pt"&gt;&lt;font style="BACKGROUND-COLOR: #ffff99" size="1"&gt;&lt;strike&gt;The TED does not have the ability to download data from non-volatile memory (data logger).&lt;/strike&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
    &lt;p style="MARGIN: 0in 0in 0pt"&gt;&lt;span style="FONT-SIZE: 9pt"&gt;&lt;font size="1"&gt;The ECM-1220 processes the energy consumption for each panel phase individually; this is greatly convenient when it comes to analyzing which loads are operated. For instance, if the power of both phases increase simultaneously, it is safe to say that the load is a 240V load, narrowing down which load this may represent. The same applies for 120V loads. If a load cycles on phase A this eliminates the possibility of any 240V load or any phase B loads. Software can be developed to analyze the load signature of various appliances and generate an energy audit report. This would be useful in assessing various load efficiencies (appliance requiring maintenance or replacement).&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
    &lt;/li&gt;
    &lt;li&gt;
    &lt;p style="MARGIN: 0in 0in 0pt"&gt;&lt;span style="FONT-SIZE: 9pt"&gt;&lt;font size="1"&gt;The TED uses PLC (power line carrier) method of communication. This limits picking up the signal on 50% of the receptacles (on the same phase the MTU unit is wired to) &lt;em&gt;&lt;strong&gt;without the adition of a inexpensive phase coupler&lt;/strong&gt;&lt;/em&gt;. Even with this, some people have said that the signal from their TEDs will drop out occasionally.&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
    &lt;/li&gt;
&lt;/ol&gt;
&lt;span style="FONT-SIZE: 9pt"&gt;
&lt;p style="MARGIN: 0in 0in 0pt"&gt;&lt;span style="FONT-SIZE: 9pt"&gt;&lt;font style="BACKGROUND-COLOR: #ffff99" size="1"&gt;&lt;strike&gt;Since in my application I plan on having a always on PC monitoring the device I am not sure there is a big value for the #2, that being said that is dependent on the reliability of the device advertising the energy usage (see #4 for a potential concern here).&lt;/strike&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style="MARGIN: 0in 0in 0pt"&gt;&lt;font size="1"&gt; &lt;/font&gt;&lt;/p&gt;
&lt;p style="MARGIN: 0in 0in 0pt"&gt;&lt;font style="BACKGROUND-COLOR: #ffff99" size="1"&gt;&lt;strike&gt;#3 in particular sounds like a very important reason to consider the Brultech offering, the primary value of a project like this is analysis and not having discrete data per phase would certainly limit that ability.&lt;/strike&gt;&lt;/font&gt;&lt;/p&gt;
&lt;p style="MARGIN: 0in 0in 0pt"&gt;&lt;font size="1"&gt; &lt;/font&gt;&lt;/p&gt;
&lt;p style="MARGIN: 0in 0in 0pt"&gt;&lt;font size="1"&gt;More updates as I have them &lt;img alt="" src="/Providers/BlogEntryEditor/FCKeditor/editor/images/smiley/msn/wink_smile.gif" /&gt;&lt;/font&gt;&lt;/p&gt;
&lt;p style="MARGIN: 0in 0in 0pt"&gt;&lt;font size="1"&gt; &lt;/font&gt;&lt;/p&gt;
&lt;p style="MARGIN: 0in 0in 0pt"&gt;&lt;font size="1"&gt;&lt;strong&gt;[Update 2/12/08 2:16PM]&lt;/strong&gt; &lt;font size="1"&gt;I have finally heard back from the folks over at The Energy Detective, the manufacturers of the TED; they have finished their API but unfortunately the terms of the API prevent me from including support for their device in the project I have envisioned.&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;
&lt;p style="MARGIN: 0in 0in 0pt"&gt; &lt;/p&gt;
&lt;p style="MARGIN: 0in 0in 0pt"&gt;&lt;font size="1"&gt;This is really unfortunate because it looks like a good device, and when designing an abstraction one really does need to validate that design with several implementations;  oh-well.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font size="1"&gt;With that being said they also corrected me on two points in the blog, I have &lt;font style="BACKGROUND-COLOR: #ffff99"&gt;&lt;strike&gt;marked&lt;/strike&gt;&lt;/font&gt; these above; I apologize for spreading miss-information, that’s the wonderful thing about the web though, so much information you start to think you know it all &lt;img alt="" src="/Providers/BlogEntryEditor/FCKeditor/editor/images/smiley/msn/embaressed_smile.gif" /&gt;.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font size="1"&gt;In addition the above corrections they raised alternate perspectives on the values of the two different design properties offered by the Brultech product and their own:&lt;/font&gt;&lt;/p&gt;
&lt;ol&gt;
    &lt;li&gt;&lt;font size="1"&gt;Dual phase load monitoring - Knowing the load for any given circuit can be useful, but for the average user per-phase measurements is of little value.&lt;/font&gt; &lt;/li&gt;
    &lt;li&gt;&lt;font size="1"&gt;PLC vs. ZIGBEE – PLC can be made to work across both phases through installing a very inexpensive impassive phase coupler more over in their experience the RF nature of ZigBee introduces as much or more problems than PLC.&lt;/font&gt; &lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&lt;font size="1"&gt;The net of this is that I guess I will now have to start looking around for another device that I can design these classes around, again I will update you when I know more.&lt;/font&gt;&lt;/p&gt;
&lt;/span&gt;&lt;img src="http://unmitigatedrisk.com/aggbug/166.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Ryan M. Hurst</dc:creator>
            <guid>http://unmitigatedrisk.com/archive/2008/01/03/166.aspx</guid>
            <pubDate>Thu, 03 Jan 2008 21:28:28 GMT</pubDate>
            <wfw:comment>http://unmitigatedrisk.com/comments/166.aspx</wfw:comment>
            <comments>http://unmitigatedrisk.com/archive/2008/01/03/166.aspx#feedback</comments>
            <slash:comments>1</slash:comments>
            <wfw:commentRss>http://unmitigatedrisk.com/comments/commentRss/166.aspx</wfw:commentRss>
            <trackback:ping>http://unmitigatedrisk.com/services/trackbacks/166.aspx</trackback:ping>
        </item>
        <item>
            <title>Were getting closer to a Internet Based DVR...</title>
            <link>http://unmitigatedrisk.com/archive/2007/10/09/146.aspx</link>
            <description>&lt;p spellchecked="true"&gt;A few weeks ago I blogged about Internet based &lt;font class="misspellet" face="fmisspellt" spellchecked="true"&gt;DVRs&lt;/font&gt; (&lt;font class="" face="fmisspellt" spellchecked="true"&gt;see: &lt;/font&gt;&lt;a id="CategoryEntryList_ascx_EntryStoryList_Entries_ctl07_TitleUrl" title="Click To View Entry." spellchecked="true" href="http://unmitigatedrisk.com/archive/2007/09/17/132.aspx"&gt;&lt;u spellchecked="true"&gt;&lt;font face="" color="#800080" spellchecked="true"&gt;&lt;font class="" face="fmisspellt" spellchecked="true"&gt;Internet&lt;/font&gt; based &lt;font class="misspellet" face="fmisspellt" spellchecked="true"&gt;DVRs&lt;/font&gt;, are they the future? I think so.&lt;/font&gt;&lt;/u&gt;&lt;/a&gt;), well were getting pretty close to just that; take a look at the &lt;a spellchecked="true" href="http://mytv.senseitweb.com/blogs/mytv/archive/2007/10/09/public-preview-release-of-myTV-now-available.aspx"&gt;My TV Archive plug-in&lt;/a&gt;, if you combine that with &lt;font class="" face="fmisspellt" spellchecked="true"&gt;&lt;a spellchecked="true" href="http://azureus.sourceforge.net/"&gt;&lt;u spellchecked="true"&gt;&lt;font class="misspellet" face="" color="#0066cc" spellchecked="true"&gt;Azureus&lt;/font&gt;&lt;/u&gt;&lt;/a&gt; &lt;/font&gt;and "&lt;font class="misspellet" face="fmisspellt" spellchecked="true"&gt;&lt;a spellchecked="true" href="http://www.engadget.com/2004/11/23/how-to-broadcatching-using-rss-bittorrent-to-automatically/"&gt;broadcatching&lt;/a&gt;&lt;/font&gt;" your pretty darn close.&lt;/p&gt;
&lt;p spellchecked="true"&gt; What else would you need? Well off the top of my head:&lt;/p&gt;
&lt;ul spellchecked="true"&gt;
    &lt;li spellchecked="true"&gt;A service to detect new &lt;font class="misspellet" face="fmisspellt" spellchecked="true"&gt;DVR&lt;/font&gt;-MS content and convert it to some format, preferably .&lt;font class="" face="fmisspellt" spellchecked="true"&gt;&lt;font class="" face="fmisspellt" spellchecked="true"&gt;&lt;font class="misspellet" face="fmisspellt" spellchecked="true"&gt;MP4&lt;/font&gt; (&lt;font class="misspellet" face="fmisspellt" spellchecked="true"&gt;vs&lt;/font&gt; &lt;font class="misspellet" face="fmisspellt" spellchecked="true"&gt;DiVX&lt;/font&gt;).&lt;/font&gt;&lt;/font&gt;&lt;/li&gt;
    &lt;li spellchecked="true"&gt;A 10' User Experience to schedule recordings (could simply configure &lt;font class="misspellet" face="fmisspellt" spellchecked="true"&gt;BitTorrent&lt;/font&gt; or preferably have its own scheduler, &lt;font class="" face="fmisspellt" spellchecked="true"&gt;possibly&lt;/font&gt; based on &lt;font class="misspellet" face="fmisspellt" spellchecked="true"&gt;&lt;a spellchecked="true" href="http://www.mono-project.com/Bitsharp"&gt;BitSharp&lt;/a&gt;&lt;/font&gt;).&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Someone is going to do this and make a mint, maybe its time to leave MSFT for me to do something on my own &lt;img alt="" src="/Providers/BlogEntryEditor/FCKeditor/editor/images/smiley/msn/wink_smile.gif" /&gt;&lt;/p&gt;&lt;img src="http://unmitigatedrisk.com/aggbug/146.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Ryan M. Hurst</dc:creator>
            <guid>http://unmitigatedrisk.com/archive/2007/10/09/146.aspx</guid>
            <pubDate>Wed, 10 Oct 2007 01:08:18 GMT</pubDate>
            <wfw:comment>http://unmitigatedrisk.com/comments/146.aspx</wfw:comment>
            <comments>http://unmitigatedrisk.com/archive/2007/10/09/146.aspx#feedback</comments>
            <slash:comments>1</slash:comments>
            <wfw:commentRss>http://unmitigatedrisk.com/comments/commentRss/146.aspx</wfw:commentRss>
            <trackback:ping>http://unmitigatedrisk.com/services/trackbacks/146.aspx</trackback:ping>
        </item>
    </channel>
</rss>