<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:pingback="http://madskills.com/public/xml/rss/module/pingback/" 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:dc="http://purl.org/dc/elements/1.1/" version="2.0">
  <channel>
    <title>CommandBreak_ - Hardware</title>
    <link>http://www.commandbreak.com/</link>
    <description>sometimes Next isn't enough</description>
    <language>en-us</language>
    <copyright>Ben Parker</copyright>
    <lastBuildDate>Thu, 25 Sep 2008 13:09:05 GMT</lastBuildDate>
    <generator>newtelligence dasBlog 2.0.7226.0</generator>
    <managingEditor>bparker@commandbreak.com</managingEditor>
    <webMaster>bparker@commandbreak.com</webMaster>
    <item>
      <trackback:ping>http://www.commandbreak.com/Trackback.aspx?guid=cce2dea9-0ab8-440b-9cd0-41d57bab74f8</trackback:ping>
      <pingback:server>http://www.commandbreak.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.commandbreak.com/PermaLink,guid,cce2dea9-0ab8-440b-9cd0-41d57bab74f8.aspx</pingback:target>
      <dc:creator>Ben Parker</dc:creator>
      <wfw:comment>http://www.commandbreak.com/CommentView,guid,cce2dea9-0ab8-440b-9cd0-41d57bab74f8.aspx</wfw:comment>
      <wfw:commentRss>http://www.commandbreak.com/SyndicationService.asmx/GetEntryCommentsRss?guid=cce2dea9-0ab8-440b-9cd0-41d57bab74f8</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Something that I have been meaning to write up for some time now...
</p>
        <p>
In nearly every environment I have worked in I have always come across some
type of issue with Broadcom NICs.
</p>
        <p>
In my most recent bout, it was determined that the network wasn't always
(seemed to swap between having link negotation issues and invalid IP addresses)
100% initialised in WinPE before a task in the unattend.xml started executing.
In our particular case we were working with Microsoft Deployment Toolkit which builds
a custom WinPE image as part of deployment point synchronising.
</p>
        <p>
          <strong>Sample boot.bat</strong>
        </p>
        <p>
@echo off<br />
echo.<br />
echo INFO: Executing Sleep<br />
echo.<br />
cscript //nologo "%systemdrive%\sleep.vbs" 10<br />
echo.<br />
echo INFO: Renewing IP Address<br />
ipconfig /renew<br />
echo.<br />
echo INFO: Executing Sleep<br />
echo.<br />
cscript //nologo "%systemdrive%\sleep.vbs" 10<br />
echo.
</p>
        <p>
          <strong>Sample sleep.vbs</strong>
        </p>
        <font size="2">
          <p>
If Wscript.Arguments.Count = 0 Then<br />
   ' Print Usage then quit<br />
   Wscript.Echo "Usage: cscript sleep.vbs 
</p>
        </font>
        <font color="#0000ff" size="2">
          <font color="#0000ff" size="2">&lt;</font>
        </font>
        <font color="#a31515" size="2">
          <font color="#a31515" size="2">Number</font>
        </font>
        <font color="#0000ff" size="2">
          <font color="#0000ff" size="2">&gt;</font>
        </font>
        <font size="2">"<br />
   Wscript.Echo " </font>
        <font color="#0000ff" size="2">
          <font color="#0000ff" size="2">&lt;</font>
        </font>
        <font color="#a31515" size="2">
          <font color="#a31515" size="2">Number</font>
        </font>
        <font color="#0000ff" size="2">
          <font color="#0000ff" size="2">&gt;</font>
        </font>
        <font size="2"> -
Number of seconds to sleep."<br />
   Wscript.Quit<br />
Else<br />
   ' Print how long we are sleeping for<br />
   Wscript.Echo "INFO: Sleeping for " &amp; Wscript.Arguments.Item(0) &amp;
" seconds"<br />
   NumSeconds = Wscript.Arguments.Item(0) * 1000<br />
   'Sleep<br />
   Wscript.Sleep(NumSeconds)<br />
End If
</font>
        <p>
          <strong>Unattend.xml Extract</strong>
        </p>
        <p>
          <font color="#0000ff" size="2">
            <font color="#0000ff" size="2">&lt;</font>
          </font>
          <font color="#a31515" size="2">
            <font color="#a31515" size="2">RunSynchronous</font>
          </font>
          <font color="#0000ff" size="2">
            <font color="#0000ff" size="2">&gt;<br />
   &lt;</font>
          </font>
          <font color="#a31515" size="2">
            <font color="#a31515" size="2">RunSynchronousCommand</font>
          </font>
          <font color="#0000ff" size="2">
            <font color="#0000ff" size="2">
            </font>
          </font>
          <font color="#ff0000" size="2">
            <font color="#ff0000" size="2">wcm:action</font>
          </font>
          <font color="#0000ff" size="2">
            <font color="#0000ff" size="2">=</font>
          </font>
          <font color="#000000" size="2">"</font>
          <font color="#0000ff" size="2">
            <font color="#0000ff" size="2">add</font>
          </font>
          <font color="#000000" size="2">"</font>
          <font color="#0000ff" size="2">
            <font color="#0000ff" size="2">&gt;<br />
      &lt;</font>
          </font>
          <font color="#a31515" size="2">
            <font color="#a31515" size="2">Description</font>
          </font>
          <font color="#0000ff" size="2">
            <font color="#0000ff" size="2">&gt;</font>
          </font>
          <font color="#000000" size="2">CommandBreak
WINPE Customisations</font>
          <font color="#0000ff" size="2">
            <font color="#0000ff" size="2">&lt;/</font>
          </font>
          <font color="#a31515" size="2">
            <font color="#a31515" size="2">Description</font>
          </font>
          <font color="#0000ff" size="2">
            <font color="#0000ff" size="2">&gt;<br />
      &lt;</font>
          </font>
          <font color="#a31515" size="2">
            <font color="#a31515" size="2">Order</font>
          </font>
          <font color="#0000ff" size="2">
            <font color="#0000ff" size="2">&gt;</font>
          </font>
          <font color="#000000" size="2">1</font>
          <font color="#0000ff" size="2">
            <font color="#0000ff" size="2">&lt;/</font>
          </font>
          <font color="#a31515" size="2">
            <font color="#a31515" size="2">Order</font>
          </font>
          <font color="#0000ff" size="2">
            <font color="#0000ff" size="2">&gt;<br />
      &lt;</font>
          </font>
          <font color="#a31515" size="2">
            <font color="#a31515" size="2">Path</font>
          </font>
          <font color="#0000ff" size="2">
            <font color="#0000ff" size="2">&gt;</font>
          </font>
          <font color="#000000" size="2">X:\boot.bat</font>
          <font color="#0000ff" size="2">
            <font color="#0000ff" size="2">&lt;/</font>
          </font>
          <font color="#a31515" size="2">
            <font color="#a31515" size="2">Path</font>
          </font>
          <font color="#0000ff" size="2">
            <font color="#0000ff" size="2">&gt;<br />
   </font>
          </font>
          <font color="#0000ff" size="2">
            <font color="#0000ff" size="2">&lt;/</font>
          </font>
          <font color="#a31515" size="2">
            <font color="#a31515" size="2">RunSynchronousCommand</font>
          </font>
          <font color="#0000ff" size="2">
            <font color="#0000ff" size="2">&gt;<br />
   &lt;</font>
          </font>
          <font color="#a31515" size="2">
            <font color="#a31515" size="2">RunSynchronousCommand</font>
          </font>
          <font color="#0000ff" size="2">
            <font color="#0000ff" size="2">
            </font>
          </font>
          <font color="#ff0000" size="2">
            <font color="#ff0000" size="2">wcm:action</font>
          </font>
          <font color="#0000ff" size="2">
            <font color="#0000ff" size="2">=</font>
          </font>
          <font color="#000000" size="2">"</font>
          <font color="#0000ff" size="2">
            <font color="#0000ff" size="2">add</font>
          </font>
          <font color="#000000" size="2">"</font>
          <font color="#0000ff" size="2">
            <font color="#0000ff" size="2">&gt;<br />
      &lt;</font>
          </font>
          <font color="#a31515" size="2">
            <font color="#a31515" size="2">Description</font>
          </font>
          <font color="#0000ff" size="2">
            <font color="#0000ff" size="2">&gt;</font>
          </font>
          <font color="#000000" size="2">Lite
Touch PE</font>
          <font color="#0000ff" size="2">
            <font color="#0000ff" size="2">&lt;/</font>
          </font>
          <font color="#a31515" size="2">
            <font color="#a31515" size="2">Description</font>
          </font>
          <font color="#0000ff" size="2">
            <font color="#0000ff" size="2">&gt;<br />
      &lt;</font>
          </font>
          <font color="#a31515" size="2">
            <font color="#a31515" size="2">Order</font>
          </font>
          <font color="#0000ff" size="2">
            <font color="#0000ff" size="2">&gt;</font>
          </font>
          <font color="#000000" size="2">2</font>
          <font color="#0000ff" size="2">
            <font color="#0000ff" size="2">&lt;/</font>
          </font>
          <font color="#a31515" size="2">
            <font color="#a31515" size="2">Order</font>
          </font>
          <font color="#0000ff" size="2">
            <font color="#0000ff" size="2">&gt;<br />
      &lt;</font>
          </font>
          <font color="#a31515" size="2">
            <font color="#a31515" size="2">Path</font>
          </font>
          <font color="#0000ff" size="2">
            <font color="#0000ff" size="2">&gt;</font>
          </font>
          <font color="#000000" size="2">wscript.exe
X:\Deploy\Scripts\LiteTouch.wsf</font>
          <font color="#0000ff" size="2">
            <font color="#0000ff" size="2">&lt;/</font>
          </font>
          <font color="#a31515" size="2">
            <font color="#a31515" size="2">Path</font>
          </font>
          <font color="#0000ff" size="2">
            <font color="#0000ff" size="2">&gt;<br />
   &lt;/</font>
          </font>
          <font color="#a31515" size="2">
            <font color="#a31515" size="2">RunSynchronousCommand</font>
          </font>
          <font color="#0000ff" size="2">
            <font color="#0000ff" size="2">&gt;<br />
&lt;/</font>
          </font>
          <font color="#a31515" size="2">
            <font color="#a31515" size="2">RunSynchronous</font>
          </font>
          <font color="#0000ff" size="2">
            <font color="#0000ff" size="2">&gt;
</font>
          </font>
        </p>
        <img width="0" height="0" src="http://www.commandbreak.com/aggbug.ashx?id=cce2dea9-0ab8-440b-9cd0-41d57bab74f8" />
      </body>
      <title>Broadcom and WinPE Unattend.xml</title>
      <guid isPermaLink="false">http://www.commandbreak.com/PermaLink,guid,cce2dea9-0ab8-440b-9cd0-41d57bab74f8.aspx</guid>
      <link>http://www.commandbreak.com/2008/09/25/BroadcomAndWinPEUnattendxml.aspx</link>
      <pubDate>Thu, 25 Sep 2008 13:09:05 GMT</pubDate>
      <description>&lt;p&gt;
Something that I have been meaning to write up for some time now...
&lt;/p&gt;
&lt;p&gt;
In nearly every environment I have worked in I have&amp;nbsp;always&amp;nbsp;come across some
type of issue with Broadcom NICs.
&lt;/p&gt;
&lt;p&gt;
In my most recent bout,&amp;nbsp;it was determined that the network wasn't&amp;nbsp;always
(seemed to swap between having&amp;nbsp;link negotation issues and invalid&amp;nbsp;IP addresses)
100%&amp;nbsp;initialised in WinPE before a task in the unattend.xml started executing.
In our particular case we were working with Microsoft Deployment Toolkit which builds
a custom WinPE image as part of deployment point synchronising.
&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;Sample boot.bat&lt;/strong&gt;
&lt;/p&gt;
&lt;p&gt;
@echo off&lt;br&gt;
echo.&lt;br&gt;
echo INFO: Executing Sleep&lt;br&gt;
echo.&lt;br&gt;
cscript //nologo "%systemdrive%\sleep.vbs" 10&lt;br&gt;
echo.&lt;br&gt;
echo INFO: Renewing IP Address&lt;br&gt;
ipconfig /renew&lt;br&gt;
echo.&lt;br&gt;
echo INFO: Executing Sleep&lt;br&gt;
echo.&lt;br&gt;
cscript //nologo "%systemdrive%\sleep.vbs" 10&lt;br&gt;
echo.
&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;Sample sleep.vbs&lt;/strong&gt;
&lt;/p&gt;
&lt;font size=2&gt; 
&lt;p&gt;
If Wscript.Arguments.Count = 0 Then&lt;br&gt;
&amp;nbsp;&amp;nbsp; ' Print Usage then quit&lt;br&gt;
&amp;nbsp;&amp;nbsp; Wscript.Echo "Usage: cscript sleep.vbs 
&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;&amp;lt;&lt;/font&gt;&lt;/font&gt;&lt;font color=#a31515 size=2&gt;&lt;font color=#a31515 size=2&gt;Number&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;&amp;gt;&lt;/font&gt;&lt;/font&gt;&lt;font size=2&gt;"&lt;br&gt;
&amp;nbsp;&amp;nbsp; Wscript.Echo " &lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;&amp;lt;&lt;/font&gt;&lt;/font&gt;&lt;font color=#a31515 size=2&gt;&lt;font color=#a31515 size=2&gt;Number&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;&amp;gt;&lt;/font&gt;&lt;/font&gt;&lt;font size=2&gt; -
Number of seconds to sleep."&lt;br&gt;
&amp;nbsp;&amp;nbsp; Wscript.Quit&lt;br&gt;
Else&lt;br&gt;
&amp;nbsp;&amp;nbsp; ' Print how long we are sleeping for&lt;br&gt;
&amp;nbsp;&amp;nbsp; Wscript.Echo "INFO: Sleeping for " &amp;amp; Wscript.Arguments.Item(0) &amp;amp;
" seconds"&lt;br&gt;
&amp;nbsp;&amp;nbsp; NumSeconds = Wscript.Arguments.Item(0) * 1000&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;'Sleep&lt;br&gt;
&amp;nbsp;&amp;nbsp; Wscript.Sleep(NumSeconds)&lt;br&gt;
End If&gt;
&lt;/font&gt; 
&lt;p&gt;
&lt;strong&gt;Unattend.xml Extract&lt;/strong&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;&amp;lt;&lt;/font&gt;&lt;/font&gt;&lt;font color=#a31515 size=2&gt;&lt;font color=#a31515 size=2&gt;RunSynchronous&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp; &amp;lt;&lt;/font&gt;&lt;/font&gt;&lt;font color=#a31515 size=2&gt;&lt;font color=#a31515 size=2&gt;RunSynchronousCommand&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt; &lt;/font&gt;&lt;/font&gt;&lt;font color=#ff0000 size=2&gt;&lt;font color=#ff0000 size=2&gt;wcm:action&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;=&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;add&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;&lt;/font&gt;&lt;/font&gt;&lt;font color=#a31515 size=2&gt;&lt;font color=#a31515 size=2&gt;Description&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;&amp;gt;&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;CommandBreak
WINPE Customisations&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;&amp;lt;/&lt;/font&gt;&lt;/font&gt;&lt;font color=#a31515 size=2&gt;&lt;font color=#a31515 size=2&gt;Description&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;&lt;/font&gt;&lt;/font&gt;&lt;font color=#a31515 size=2&gt;&lt;font color=#a31515 size=2&gt;Order&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;&amp;gt;&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;1&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;&amp;lt;/&lt;/font&gt;&lt;/font&gt;&lt;font color=#a31515 size=2&gt;&lt;font color=#a31515 size=2&gt;Order&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;&lt;/font&gt;&lt;/font&gt;&lt;font color=#a31515 size=2&gt;&lt;font color=#a31515 size=2&gt;Path&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;&amp;gt;&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;X:\boot.bat&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;&amp;lt;/&lt;/font&gt;&lt;/font&gt;&lt;font color=#a31515 size=2&gt;&lt;font color=#a31515 size=2&gt;Path&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp; &lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;&amp;lt;/&lt;/font&gt;&lt;/font&gt;&lt;font color=#a31515 size=2&gt;&lt;font color=#a31515 size=2&gt;RunSynchronousCommand&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp; &amp;lt;&lt;/font&gt;&lt;/font&gt;&lt;font color=#a31515 size=2&gt;&lt;font color=#a31515 size=2&gt;RunSynchronousCommand&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt; &lt;/font&gt;&lt;/font&gt;&lt;font color=#ff0000 size=2&gt;&lt;font color=#ff0000 size=2&gt;wcm:action&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;=&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;add&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;"&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;&lt;/font&gt;&lt;/font&gt;&lt;font color=#a31515 size=2&gt;&lt;font color=#a31515 size=2&gt;Description&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;&amp;gt;&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;Lite
Touch PE&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;&amp;lt;/&lt;/font&gt;&lt;/font&gt;&lt;font color=#a31515 size=2&gt;&lt;font color=#a31515 size=2&gt;Description&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;&lt;/font&gt;&lt;/font&gt;&lt;font color=#a31515 size=2&gt;&lt;font color=#a31515 size=2&gt;Order&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;&amp;gt;&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;2&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;&amp;lt;/&lt;/font&gt;&lt;/font&gt;&lt;font color=#a31515 size=2&gt;&lt;font color=#a31515 size=2&gt;Order&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;&lt;/font&gt;&lt;/font&gt;&lt;font color=#a31515 size=2&gt;&lt;font color=#a31515 size=2&gt;Path&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;&amp;gt;&lt;/font&gt;&lt;/font&gt;&lt;font color=#000000 size=2&gt;wscript.exe
X:\Deploy\Scripts\LiteTouch.wsf&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;&amp;lt;/&lt;/font&gt;&lt;/font&gt;&lt;font color=#a31515 size=2&gt;&lt;font color=#a31515 size=2&gt;Path&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp; &amp;lt;/&lt;/font&gt;&lt;/font&gt;&lt;font color=#a31515 size=2&gt;&lt;font color=#a31515 size=2&gt;RunSynchronousCommand&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;&amp;gt;&lt;br&gt;
&amp;lt;/&lt;/font&gt;&lt;/font&gt;&lt;font color=#a31515 size=2&gt;&lt;font color=#a31515 size=2&gt;RunSynchronous&lt;/font&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#0000ff size=2&gt;&amp;gt;
&lt;/p&gt;
&gt;&gt;&lt;img width="0" height="0" src="http://www.commandbreak.com/aggbug.ashx?id=cce2dea9-0ab8-440b-9cd0-41d57bab74f8" /&gt;</description>
      <comments>http://www.commandbreak.com/CommentView,guid,cce2dea9-0ab8-440b-9cd0-41d57bab74f8.aspx</comments>
      <category>Hardware</category>
      <category>MDT</category>
      <category>Network</category>
      <category>WinPE</category>
    </item>
    <item>
      <trackback:ping>http://www.commandbreak.com/Trackback.aspx?guid=780281b3-dea8-4797-9804-640dcb652445</trackback:ping>
      <pingback:server>http://www.commandbreak.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.commandbreak.com/PermaLink,guid,780281b3-dea8-4797-9804-640dcb652445.aspx</pingback:target>
      <dc:creator>Ben Parker</dc:creator>
      <wfw:comment>http://www.commandbreak.com/CommentView,guid,780281b3-dea8-4797-9804-640dcb652445.aspx</wfw:comment>
      <wfw:commentRss>http://www.commandbreak.com/SyndicationService.asmx/GetEntryCommentsRss?guid=780281b3-dea8-4797-9804-640dcb652445</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">I love my media center and for some time
now it has been playing/pausing/recording all my media <a href="http://en.wikipedia.org/wiki/Woman_acceptance_factor">without
major issue</a> (especially after moving too Vista Ultimate). Now I did say major
issue! Since day dot I have had one problem; 1+ second delay on key presses with my
Terratec remote control. 
<p>
The explanation is simple; the Terratec remote has programmed keys, and it requires
that you install a <a href="http://blogs.technet.com/deploymentguys/archive/2008/02/15/driver-management-part-1-configuration-manager.aspx">hardware
application</a> to capture the incoming signal, and then process them as actions in
whatever application you happen to be using, making it one of the most versatile remotes
available. It’s just unfortunate that the user experience and general design are so
crap, just look at it, what were they thinking?
</p><p align="center"><img src="http://www.commandbreak.com/content/binary/terratec_remote.png" border="0" /></p><p>
Until recently there haven’t been many other options just a lot of <a href="http://www.istartedsomething.com/20061129/vista-mce-remote/">promises</a> (and <a href="http://gizmodo.com/gadgets/home-entertainment/windows-vista-media-center-remote-control-208210.php">more
promises</a>) that there will be a new remote available for Vista MCE although nothing
ever appeared on the <a href="http://www.microsoft.com/hardware">Microsoft Hardware</a> site.
:(
</p><p>
Well here they are... turns out that Microsoft has left it to hardware manufactures
to take up the fight and conform to the new IR RC6 and Windows Logo Program.
</p><p align="center"><a href="http://www.origenae.com/en/accessory_rc197.htm"><img src="http://www.commandbreak.com/content/binary/origen_remote.png" border="0" /></a>     <a href="http://www.rockrock.com.au/index.php?page=shop.product_details&amp;flypage=shop.flypage&amp;product_id=99&amp;category_id=77&amp;manufacturer_id=0&amp;option=com_virtuemart&amp;Itemid=173"><img src="http://www.commandbreak.com/content/binary/rock_remote.png" border="0" /></a></p><p align="center"><a href="http://www.trust.com/products/product_detail.aspx?item=15254"><img src="http://www.commandbreak.com/content/binary/trust_remote.png" border="0" /></a></p><p>
Now all that is left is deciding which one to buy :)
</p><img width="0" height="0" src="http://www.commandbreak.com/aggbug.ashx?id=780281b3-dea8-4797-9804-640dcb652445" /></body>
      <title>Vista Media Center Remote Control</title>
      <guid isPermaLink="false">http://www.commandbreak.com/PermaLink,guid,780281b3-dea8-4797-9804-640dcb652445.aspx</guid>
      <link>http://www.commandbreak.com/2008/02/16/VistaMediaCenterRemoteControl.aspx</link>
      <pubDate>Sat, 16 Feb 2008 14:20:45 GMT</pubDate>
      <description>I love my media center and for some time now it has been playing/pausing/recording all my media &lt;a href="http://en.wikipedia.org/wiki/Woman_acceptance_factor"&gt;without
major issue&lt;/a&gt; (especially after moving too Vista Ultimate). Now I did say major
issue! Since day dot I have had one problem; 1+ second delay on key presses with my
Terratec remote control. 
&lt;p&gt;
The explanation is simple; the Terratec remote has programmed keys, and it requires
that you install a &lt;a href="http://blogs.technet.com/deploymentguys/archive/2008/02/15/driver-management-part-1-configuration-manager.aspx"&gt;hardware
application&lt;/a&gt; to capture the incoming signal, and then process them as actions in
whatever application you happen to be using, making it one of the most versatile remotes
available. It’s just unfortunate that the user experience and general design are so
crap, just look at it, what were they thinking?
&lt;/p&gt;
&lt;p align=center&gt;
&lt;img src="http://www.commandbreak.com/content/binary/terratec_remote.png" border=0&gt;
&lt;/p&gt;
&lt;p&gt;
Until recently there haven’t been many other options just a lot of &lt;a href="http://www.istartedsomething.com/20061129/vista-mce-remote/"&gt;promises&lt;/a&gt; (and &lt;a href="http://gizmodo.com/gadgets/home-entertainment/windows-vista-media-center-remote-control-208210.php"&gt;more
promises&lt;/a&gt;) that there will be a new remote available for Vista MCE although nothing
ever appeared on the &lt;a href="http://www.microsoft.com/hardware"&gt;Microsoft Hardware&lt;/a&gt; site.
:(
&lt;/p&gt;
&lt;p&gt;
Well here they are... turns out that Microsoft has left it to hardware manufactures
to take up the fight and conform to the new IR RC6 and Windows Logo Program.
&lt;/p&gt;
&lt;p align=center&gt;
&lt;a href="http://www.origenae.com/en/accessory_rc197.htm"&gt;&lt;img src="http://www.commandbreak.com/content/binary/origen_remote.png" border=0&gt;&lt;/a&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;a href="http://www.rockrock.com.au/index.php?page=shop.product_details&amp;amp;flypage=shop.flypage&amp;amp;product_id=99&amp;amp;category_id=77&amp;amp;manufacturer_id=0&amp;amp;option=com_virtuemart&amp;amp;Itemid=173"&gt;&lt;img src="http://www.commandbreak.com/content/binary/rock_remote.png" border=0&gt;&lt;/a&gt;
&lt;/p&gt;
&lt;p align=center&gt;
&lt;a href="http://www.trust.com/products/product_detail.aspx?item=15254"&gt;&lt;img src="http://www.commandbreak.com/content/binary/trust_remote.png" border=0&gt;&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
Now all that is left is deciding which one to buy :)
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.commandbreak.com/aggbug.ashx?id=780281b3-dea8-4797-9804-640dcb652445" /&gt;</description>
      <comments>http://www.commandbreak.com/CommentView,guid,780281b3-dea8-4797-9804-640dcb652445.aspx</comments>
      <category>Hardware</category>
      <category>Media Center</category>
    </item>
    <item>
      <trackback:ping>http://www.commandbreak.com/Trackback.aspx?guid=c6a5b55d-89ef-40cf-8b77-029773f42691</trackback:ping>
      <pingback:server>http://www.commandbreak.com/pingback.aspx</pingback:server>
      <pingback:target>http://www.commandbreak.com/PermaLink,guid,c6a5b55d-89ef-40cf-8b77-029773f42691.aspx</pingback:target>
      <dc:creator>Ben Parker</dc:creator>
      <wfw:comment>http://www.commandbreak.com/CommentView,guid,c6a5b55d-89ef-40cf-8b77-029773f42691.aspx</wfw:comment>
      <wfw:commentRss>http://www.commandbreak.com/SyndicationService.asmx/GetEntryCommentsRss?guid=c6a5b55d-89ef-40cf-8b77-029773f42691</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
I’m in the market for a new workstation and with the latest release of the 3 series
chipsets from Intel the market has been flooded with a magnitude of new and exciting
options, but be careful, as I found not all seems as it appears.
</p>
        <p>
After checking several manufacture website and reviews I found this little beauty, <a href="http://www2.abit.com.tw/page/en/motherboard/motherboard_detail.php?pMODEL_NAME=IP35+Pro&amp;fMTYPE=LGA775">ABIT
IP35 Pro</a>. The IP35 Pro is ABIT’s top line motherboard built around the Intel P35
chipset, which supports today’s latest processors and has the ability to address 8
GB of memory (about time really, Windows x64 here I come), sure to keep any enthusiast
happy… Well that’s what I thought until reading this <a href="http://www.techspot.com/article/61-intel-p35-motherboard-roundup/page2.html">review</a>.<br /><em>"...a few corners cut, for example while the board does offer dual Gigabit LAN
controllers both use the PCI bus."</em></p>
        <p>
First off, PCI should be taken out the back and shot! The <a href="http://www.adaptec.com/en-US/products/sata_cards/value/SAS-3405/">devices
I am interested in</a> are all available on PCI Express interfaces. I consider PCI
to be an obsolete architecture and, short of the backwards compatibility argument,
the only reason we keep it around is because the devices are cheap.
</p>
        <p>
So why is PCI (in particular PCI revision 2.3 – 32bit, 33MHz, as found on the <a href="http://download.intel.com/design/chipsets/datashts/31697202.pdf">Intel
ICH9</a>) dead to me? Bandwidth - with HD DVD/TV, Dolby 7.1, DirectX 10 Graphics cards
and Gigabit demanded for the media rich experience on computers these days device
interconnectors limited to 133MB/s just seems daft!  The math is simple – there
just isn’t enough room to move all that data around, look at the diagram below? 
</p>
        <p align="center">
          <img src="http://www.commandbreak.com/content/binary/ICH9_PCI_interface.png" border="0" />
        </p>
        <p>
You could argue that bottlenecks on other interfaces would be reached, disk transfer
speeds, before you see limits on PCI devices, however with the ability to address
8 GB of RAM and high-performance SATA RAID controllers coming down in price the limiting
factor in system performance is already PCI devices.
</p>
        <p>
What are your options if you ‘must’ keep that SLI <a href="http://en.wikipedia.org/wiki/Voodoo_2">Voodoo2</a> setup
in your system? <a href="http://en.wikipedia.org/wiki/Pci-x">PCI-X</a>. PCI-X is an
enhanced version of PCI, it has a 64bit bus and supports speeds of 133MHz giving it
a total bandwidth of 1064MB/s. PCI-X has backwards compatibility for most 3.3Volt
PCI cards but don’t think you will get any higher frame rates due to the 64bit bus
or increase speed of the bus, you will still be limited by the PCI card. Currently
the only 3 series Intel chipset available with PCI-X is the <a href="http://www.supermicro.com/products/motherboard/Core2Duo/X38/C2SBX.cfm">Supermicro
C2SBX</a> which is built around the Intel X38 chipset and only supports <a href="http://en.wikipedia.org/wiki/DDR3_SDRAM">DDR3</a> memory.
</p>
        <p>
The ABIT board I have attacked in this post is not alone. Really the issue here is
with the chip ABIT and other manufacturers use to provide on-board controller network,
the <a href="http://www.realtek.com.tw/products/productsView.aspx?Langid=1&amp;PFid=4&amp;Level=5&amp;Conn=4&amp;ProdID=9">Realtek
RTL8110SC</a>. This chip is designed to only connect to a PCI bus which means that,
not only does the existing P35 offering from ABIT suffer from this problem, but the
new ABIT IX38-Max, ‘workstation’ class motherboard, the will have the same problem,
along with other manufactures such as ASUS, Gigabyte and Foxconn.
</p>
        <p>
For the moment I am still undecided which motherboard I will finally purchase for
my new rig, hopefully I will find one with no PCI interfaces at all, somewhat of a
pipe dream I feel.<br /></p>
        <img width="0" height="0" src="http://www.commandbreak.com/aggbug.ashx?id=c6a5b55d-89ef-40cf-8b77-029773f42691" />
      </body>
      <title>Motherboards – more features, not the right answer.</title>
      <guid isPermaLink="false">http://www.commandbreak.com/PermaLink,guid,c6a5b55d-89ef-40cf-8b77-029773f42691.aspx</guid>
      <link>http://www.commandbreak.com/2007/11/01/MotherboardsMoreFeaturesNotTheRightAnswer.aspx</link>
      <pubDate>Thu, 01 Nov 2007 00:05:19 GMT</pubDate>
      <description>&lt;p&gt;
I’m in the market for a new workstation and with the latest release of the 3 series
chipsets from Intel the market has been flooded with a magnitude of new and exciting
options, but be careful, as I found not all seems as it appears.
&lt;/p&gt;
&lt;p&gt;
After checking several manufacture website and reviews I found this little beauty, &lt;a href="http://www2.abit.com.tw/page/en/motherboard/motherboard_detail.php?pMODEL_NAME=IP35+Pro&amp;amp;fMTYPE=LGA775"&gt;ABIT
IP35 Pro&lt;/a&gt;. The IP35 Pro is ABIT’s top line motherboard built around the Intel P35
chipset, which supports today’s latest processors and has the ability to address 8
GB of memory (about time really, Windows x64 here I come), sure to keep any enthusiast
happy… Well that’s what I thought until reading this &lt;a href="http://www.techspot.com/article/61-intel-p35-motherboard-roundup/page2.html"&gt;review&lt;/a&gt;.&lt;br&gt;
&lt;em&gt;"...a few corners cut, for example while the board does offer dual Gigabit LAN
controllers both use the PCI bus."&lt;/em&gt;
&lt;/p&gt;
&lt;p&gt;
First off, PCI should be taken out the back and shot! The &lt;a href="http://www.adaptec.com/en-US/products/sata_cards/value/SAS-3405/"&gt;devices
I am interested in&lt;/a&gt; are all available on PCI Express interfaces. I consider PCI
to be an obsolete architecture and, short of the backwards compatibility argument,
the only reason we keep it around is because the devices are cheap.
&lt;/p&gt;
&lt;p&gt;
So why is PCI (in particular PCI revision 2.3 – 32bit, 33MHz, as found on the &lt;a href="http://download.intel.com/design/chipsets/datashts/31697202.pdf"&gt;Intel
ICH9&lt;/a&gt;) dead to me? Bandwidth - with HD DVD/TV, Dolby 7.1, DirectX 10 Graphics cards
and Gigabit demanded for the media rich experience on computers these days device
interconnectors limited to 133MB/s just seems daft!&amp;nbsp; The math is simple – there
just isn’t enough room to move all that data around, look at the diagram below? 
&lt;/p&gt;
&lt;p align=center&gt;
&lt;img src="http://www.commandbreak.com/content/binary/ICH9_PCI_interface.png" border=0&gt;
&lt;/p&gt;
&lt;p&gt;
You could argue that bottlenecks on other interfaces would be reached, disk transfer
speeds, before you see limits on PCI devices, however with the ability to address
8 GB of RAM and high-performance SATA RAID controllers coming down in price the limiting
factor in system performance is already PCI devices.
&lt;/p&gt;
&lt;p&gt;
What are your options if you ‘must’ keep that SLI &lt;a href="http://en.wikipedia.org/wiki/Voodoo_2"&gt;Voodoo2&lt;/a&gt; setup
in your system? &lt;a href="http://en.wikipedia.org/wiki/Pci-x"&gt;PCI-X&lt;/a&gt;. PCI-X is an
enhanced version of PCI, it has a 64bit bus and supports speeds of 133MHz giving it
a total bandwidth of 1064MB/s. PCI-X has backwards compatibility for most 3.3Volt
PCI cards but don’t think you will get any higher frame rates due to the 64bit bus
or increase speed of the bus, you will still be limited by the PCI card. Currently
the only 3 series Intel chipset available with PCI-X is the &lt;a href="http://www.supermicro.com/products/motherboard/Core2Duo/X38/C2SBX.cfm"&gt;Supermicro
C2SBX&lt;/a&gt; which is built around the Intel X38 chipset and only supports &lt;a href="http://en.wikipedia.org/wiki/DDR3_SDRAM"&gt;DDR3&lt;/a&gt; memory.
&lt;/p&gt;
&lt;p&gt;
The ABIT board I have attacked in this post is not alone. Really the issue here is
with the chip ABIT and other manufacturers use to provide on-board controller network,
the &lt;a href="http://www.realtek.com.tw/products/productsView.aspx?Langid=1&amp;amp;PFid=4&amp;amp;Level=5&amp;amp;Conn=4&amp;amp;ProdID=9"&gt;Realtek
RTL8110SC&lt;/a&gt;. This chip is designed to only connect to a PCI bus which means that,
not only does the existing P35 offering from ABIT suffer from this problem, but the
new ABIT IX38-Max, ‘workstation’ class motherboard, the will have the same problem,
along with other manufactures such as ASUS, Gigabyte and Foxconn.
&lt;/p&gt;
&lt;p&gt;
For the moment I am still undecided which motherboard I will finally purchase for
my new rig, hopefully I will find one with no PCI interfaces at all, somewhat of a
pipe dream I feel.&lt;br&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.commandbreak.com/aggbug.ashx?id=c6a5b55d-89ef-40cf-8b77-029773f42691" /&gt;</description>
      <comments>http://www.commandbreak.com/CommentView,guid,c6a5b55d-89ef-40cf-8b77-029773f42691.aspx</comments>
      <category>Hardware</category>
    </item>
  </channel>
</rss>