<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns: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:georss="http://www.georss.org/georss" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" version="2.0">
  <channel>
    <title>Project84</title>
    <link>http://blog.project84.net/</link>
    <description>Have you tried turning it off and on again??</description>
    <language>en-au</language>
    <copyright>Jacob Hodges</copyright>
    <lastBuildDate>Mon, 29 Jun 2009 04:14:16 GMT</lastBuildDate>
    <generator>newtelligence dasBlog 2.2.8279.16125</generator>
    <managingEditor>jacob@hfws.net</managingEditor>
    <webMaster>jacob@hfws.net</webMaster>
    <geo:lat>-27.496132</geo:lat><geo:long>152.966359</geo:long><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/Project84" type="application/rss+xml" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
      <trackback:ping>http://blog.project84.net/Trackback.aspx?guid=ccc60b72-7956-4b9e-800e-7e29faf27ad4</trackback:ping>
      <pingback:server>http://blog.project84.net/pingback.aspx</pingback:server>
      <pingback:target>http://blog.project84.net/PermaLink,guid,ccc60b72-7956-4b9e-800e-7e29faf27ad4.aspx</pingback:target>
      <dc:creator>Jacob</dc:creator>
      <georss:point>-27.499497 152.970393</georss:point>
      <wfw:comment>http://blog.project84.net/CommentView,guid,ccc60b72-7956-4b9e-800e-7e29faf27ad4.aspx</wfw:comment>
      <wfw:commentRss>http://blog.project84.net/SyndicationService.asmx/GetEntryCommentsRss?guid=ccc60b72-7956-4b9e-800e-7e29faf27ad4</wfw:commentRss>
      
      <title>Create a Windows PE 3.0 Boot CD</title>
      <guid isPermaLink="false">http://blog.project84.net/PermaLink,guid,ccc60b72-7956-4b9e-800e-7e29faf27ad4.aspx</guid>
      <link>http://blog.project84.net/2009/06/29/CreateAWindowsPE30BootCD.aspx</link>
      <pubDate>Mon, 29 Jun 2009 04:14:16 GMT</pubDate>
      <description>&lt;body xmlns="http://www.w3.org/1999/xhtml"&gt;&#xD;
        &lt;p&gt;&#xD;
The process of creating a Windows PE 3.0 disk has changed slightly from the previous&#xD;
version. Luckily the Windows PE User’s Guide that ships with the WAIK has all the&#xD;
information you’ll ever need. To get started download the WAIK for Windows 7 RC &lt;a href="http://www.microsoft.com/downloads/details.aspx?familyid=60A07E71-0ACB-453A-8035-D30EAD27EF72&amp;amp;displaylang=en"&gt;here&lt;/a&gt;.&#xD;
Then follow the steps in the section “Windows PE Walkthroughs”. I’ve provided the&#xD;
batch file I use to create a generic WinPE 3.0 ISO below.&#xD;
&lt;/p&gt;&#xD;
        &lt;pre class="brush: plain;"&gt;@Echo off"&#xD;
REM ********************************************************************************&#xD;
REM head block&#xD;
&#xD;
REM Setup&#xD;
SET PETOOLS=C:\Program Files\Windows AIK\Tools\PETools&#xD;
SET ARCH=x86&#xD;
SET WORKINGDIR=%~dp0windowspe-%ARCH%&#xD;
&#xD;
&#xD;
IF NOT EXIST "%WORKINGDIR%" Goto :COPYPE&#xD;
Echo "%WORKINGDIR%" exists, Removing....&#xD;
rmdir "%WORKINGDIR%" /S /Q&#xD;
&#xD;
&#xD;
:COPYPE&#xD;
cd /d "%PETOOLS%"&#xD;
&#xD;
call copype.cmd %ARCH% "%WORKINGDIR%"&#xD;
&#xD;
REM Copy Base WIM to boot.wim&#xD;
copy "%WORKINGDIR%\winpe.wim" "%WORKINGDIR%\ISO\sources\boot.wim"&#xD;
&#xD;
REM Mount boot.wim&#xD;
Dism /Mount-Wim /WimFile:"%WORKINGDIR%\ISO\sources\boot.wim" /index:1 /MountDir:"%WORKINGDIR%\mount"&#xD;
&#xD;
REM Add Optional Components&#xD;
Dism /image:"%WORKINGDIR%\mount" /Add-Package /PackagePath:"%PETOOLS%\%ARCH%\WinPE_FPs\winpe-wmi.cab"&#xD;
Dism /image:"%WORKINGDIR%\mount" /Add-Package /PackagePath:"%PETOOLS%\%ARCH%\WinPE_FPs\en-us\winpe-wmi_en-us.cab"&#xD;
&#xD;
Dism /image:"%WORKINGDIR%\mount" /Add-Package /PackagePath:"%PETOOLS%\%ARCH%\WinPE_FPs\winpe-hta.cab"&#xD;
Dism /image:"%WORKINGDIR%\mount" /Add-Package /PackagePath:"%PETOOLS%\%ARCH%\WinPE_FPs\en-us\winpe-hta_en-us.cab"&#xD;
&#xD;
Dism /image:"%WORKINGDIR%\mount" /Add-Package /PackagePath:"%PETOOLS%\%ARCH%\WinPE_FPs\winpe-mdac.cab"&#xD;
Dism /image:"%WORKINGDIR%\mount" /Add-Package /PackagePath:"%PETOOLS%\%ARCH%\WinPE_FPs\en-us\winpe-mdac_en-us.cab"&#xD;
&#xD;
Dism /image:"%WORKINGDIR%\mount" /Add-Package /PackagePath:"%PETOOLS%\%ARCH%\WinPE_FPs\winpe-scripting.cab"&#xD;
Dism /image:"%WORKINGDIR%\mount" /Add-Package /PackagePath:"%PETOOLS%\%ARCH%\WinPE_FPs\en-us\winpe-scripting_en-us.cab"&#xD;
&#xD;
Dism /image:"%WORKINGDIR%\mount" /Add-Package /PackagePath:"%PETOOLS%\%ARCH%\WinPE_FPs\winpe-wmi.cab"&#xD;
Dism /image:"%WORKINGDIR%\mount" /Add-Package /PackagePath:"%PETOOLS%\%ARCH%\WinPE_FPs\en-us\winpe-wmi_en-us.cab"&#xD;
&#xD;
REM Copy Imagex into the Windows Dir&#xD;
copy "C:\Program Files\Windows AIK\Tools\%ARCH%\imagex.exe" "%WORKINGDIR%\mount\Windows"&#xD;
&#xD;
REM COpy Tools&#xD;
xcopy %~dp0Tools %WORKINGDIR%\ISO /E /S&#xD;
&#xD;
REM Unmount the WIM&#xD;
Dism /unmount-Wim /MountDir:"%WORKINGDIR%\mount" /Commit&#xD;
&#xD;
&#xD;
REM Create the ISO&#xD;
oscdimg -n -b"%WORKINGDIR%\etfsboot.com" "%WORKINGDIR%\ISO" "%WORKINGDIR%\winpe_x86.iso"&#xD;
&lt;/pre&gt;&#xD;
        &lt;p&gt;&#xD;
You may want to comment out the line with “xcopy %~dp0Tools” at the beginning. I usually&#xD;
copy a bunch of tools onto my WinPE disk using this tools directory.&#xD;
&lt;/p&gt;&#xD;
        &lt;img width="0" height="0" src="http://blog.project84.net/aggbug.ashx?id=ccc60b72-7956-4b9e-800e-7e29faf27ad4"&gt;&lt;/img&gt;&#xD;
      &lt;/body&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Project84?a=MPfAR4Kzaf0:ihzqQ4dEqCM:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Project84?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Project84?a=MPfAR4Kzaf0:ihzqQ4dEqCM:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Project84?i=MPfAR4Kzaf0:ihzqQ4dEqCM:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Project84?a=MPfAR4Kzaf0:ihzqQ4dEqCM:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Project84?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
      <comments>http://blog.project84.net/CommentView,guid,ccc60b72-7956-4b9e-800e-7e29faf27ad4.aspx</comments>
      <category>Desktop Deployment</category>
      <category>MDT 2008</category>
      <category>MS Deployment</category>
    </item>
    <item>
      <trackback:ping>http://blog.project84.net/Trackback.aspx?guid=107d2797-0271-45c0-a4fc-8cf43aea9e9a</trackback:ping>
      <pingback:server>http://blog.project84.net/pingback.aspx</pingback:server>
      <pingback:target>http://blog.project84.net/PermaLink,guid,107d2797-0271-45c0-a4fc-8cf43aea9e9a.aspx</pingback:target>
      <dc:creator>Jacob</dc:creator>
      <georss:point>-27.499497 152.970393</georss:point>
      <wfw:comment>http://blog.project84.net/CommentView,guid,107d2797-0271-45c0-a4fc-8cf43aea9e9a.aspx</wfw:comment>
      <wfw:commentRss>http://blog.project84.net/SyndicationService.asmx/GetEntryCommentsRss?guid=107d2797-0271-45c0-a4fc-8cf43aea9e9a</wfw:commentRss>
      
      <title>Moving SCCM Packages and Drivers Source Location</title>
      <guid isPermaLink="false">http://blog.project84.net/PermaLink,guid,107d2797-0271-45c0-a4fc-8cf43aea9e9a.aspx</guid>
      <link>http://blog.project84.net/2009/05/08/MovingSCCMPackagesAndDriversSourceLocation.aspx</link>
      <pubDate>Fri, 08 May 2009 00:38:08 GMT</pubDate>
      <description>&lt;body xmlns="http://www.w3.org/1999/xhtml"&gt;&#xD;
        &lt;p&gt;&#xD;
I had a situation last week where a server that had the source shares for my Packages&#xD;
and Drivers had to be decommissioned. This initially seemed like an simple task of&#xD;
updating the source location in each package to the new server. However after realising&#xD;
that there were a lot of packages and about 400 drivers I sought a better way. Powershell&#xD;
to the rescue!&#xD;
&lt;/p&gt;&#xD;
        &lt;p&gt;&#xD;
The following block of Powershell gets all the drivers and does a search and replace&#xD;
on the server name.&lt;br&gt;&lt;/p&gt;&#xD;
        &lt;pre class="brush: powershell;"&gt;$drivers = Get-WmiObject SMS_Driver -Namespace root\SMS\site_LNK&#xD;
&#xD;
$drivers | ?{$_.ContentSourcePath -like "\\creekserver\*"} | `&#xD;
%{$_.ContentSourcePath = $_.ContentSourcePath -replace "creekserver", "PRI-SCCM-V01"; $_.Put()}&#xD;
&lt;/pre&gt;&#xD;
        &lt;p&gt;&#xD;
I did the same for packages:&lt;br&gt;&lt;/p&gt;&#xD;
        &lt;pre class="brush: powershell;"&gt;$packages = Get-WmiObject SMS_Package -Namespace root\SMS\site_LNK&#xD;
&#xD;
$packages | ?{$_.PkgSourcePath -like "*creekserver*"} | `&#xD;
%{$_.PkgSourcePath = $_.PkgSourcePath -replace "creekserver","PRI-SCCM-V01"; $_.Put()}&#xD;
&#xD;
$packages | %{$_.RefreshPkgSource}&#xD;
&lt;/pre&gt;&#xD;
        &lt;p&gt;&#xD;
          &lt;br&gt;&#xD;
Enjoy! &#xD;
&lt;/p&gt;&#xD;
        &lt;img width="0" height="0" src="http://blog.project84.net/aggbug.ashx?id=107d2797-0271-45c0-a4fc-8cf43aea9e9a"&gt;&lt;/img&gt;&#xD;
      &lt;/body&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Project84?a=zyXZQouBvcI:JP6DQjV9Dnc:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Project84?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Project84?a=zyXZQouBvcI:JP6DQjV9Dnc:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Project84?i=zyXZQouBvcI:JP6DQjV9Dnc:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Project84?a=zyXZQouBvcI:JP6DQjV9Dnc:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Project84?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
      <comments>http://blog.project84.net/CommentView,guid,107d2797-0271-45c0-a4fc-8cf43aea9e9a.aspx</comments>
      <category>Desktop Deployment</category>
      <category>PowerShell</category>
      <category>SCCM 2007</category>
    </item>
    <item>
      <trackback:ping>http://blog.project84.net/Trackback.aspx?guid=018fc8ca-d917-47f2-9a46-d7971b8f998d</trackback:ping>
      <pingback:server>http://blog.project84.net/pingback.aspx</pingback:server>
      <pingback:target>http://blog.project84.net/PermaLink,guid,018fc8ca-d917-47f2-9a46-d7971b8f998d.aspx</pingback:target>
      <dc:creator>Jacob</dc:creator>
      <georss:point>-27.499497 152.970393</georss:point>
      <wfw:comment>http://blog.project84.net/CommentView,guid,018fc8ca-d917-47f2-9a46-d7971b8f998d.aspx</wfw:comment>
      <wfw:commentRss>http://blog.project84.net/SyndicationService.asmx/GetEntryCommentsRss?guid=018fc8ca-d917-47f2-9a46-d7971b8f998d</wfw:commentRss>
      
      <title>Installing Lenovo Hotkey Utility in an SCCM Task Sequence</title>
      <guid isPermaLink="false">http://blog.project84.net/PermaLink,guid,018fc8ca-d917-47f2-9a46-d7971b8f998d.aspx</guid>
      <link>http://blog.project84.net/2009/03/06/InstallingLenovoHotkeyUtilityInAnSCCMTaskSequence.aspx</link>
      <pubDate>Fri, 06 Mar 2009 06:20:48 GMT</pubDate>
      <description>&lt;body xmlns="http://www.w3.org/1999/xhtml"&gt;&#xD;
        &lt;p&gt;&#xD;
If you've ever tried to install the Lenovo Hotkey utility as part of an SCCM Task&#xD;
Sequence you'll have noticed that no matter how big a tantrum you through it won't&#xD;
work. Lenovo's documentation states that you can install the Hotkey utility in&#xD;
an unattended fasion using "Setup.exe /S". For whatever reason this doesn't work in&#xD;
a Task Sequence using a standard Package and Program. To get around this do the follow:&#xD;
&lt;/p&gt;&#xD;
        &lt;ol&gt;&#xD;
          &lt;li&gt;&#xD;
Extract the Hotkey utility. &#xD;
&lt;/li&gt;&#xD;
          &lt;li&gt;&#xD;
Create a batch file InstallHotkey.cmd with a single line: %~dp0SETUP.EXE /S &#xD;
&lt;/li&gt;&#xD;
          &lt;li&gt;&#xD;
Create a standard SCCM package with the source pointing to your extracted hotkey files. &#xD;
&lt;/li&gt;&#xD;
          &lt;li&gt;&#xD;
Make sure that InstallHotkey.cmd is in the same dir as Setup.exe &#xD;
&lt;/li&gt;&#xD;
          &lt;li&gt;&#xD;
In you Task Sequence add a new "Run Command Line" task. &#xD;
&lt;/li&gt;&#xD;
          &lt;li&gt;&#xD;
Set the Package to the Hotkey Package you created in step 4. &#xD;
&lt;/li&gt;&#xD;
          &lt;li&gt;&#xD;
In the command line put InstallHotkey.cmd&lt;/li&gt;&#xD;
        &lt;/ol&gt;&#xD;
        &lt;p&gt;&#xD;
          &lt;img src="http://blog.project84.net/content/binary/hotkey1.png" border="0"&gt;&lt;/img&gt;&#xD;
        &lt;/p&gt;&#xD;
        &lt;img width="0" height="0" src="http://blog.project84.net/aggbug.ashx?id=018fc8ca-d917-47f2-9a46-d7971b8f998d"&gt;&lt;/img&gt;&#xD;
      &lt;/body&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Project84?a=p7DxNrrsUP8:BzpqBlHG8HA:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Project84?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Project84?a=p7DxNrrsUP8:BzpqBlHG8HA:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Project84?i=p7DxNrrsUP8:BzpqBlHG8HA:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Project84?a=p7DxNrrsUP8:BzpqBlHG8HA:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Project84?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
      <comments>http://blog.project84.net/CommentView,guid,018fc8ca-d917-47f2-9a46-d7971b8f998d.aspx</comments>
      <category>Desktop Deployment</category>
      <category>SCCM 2007</category>
    </item>
    <item>
      <trackback:ping>http://blog.project84.net/Trackback.aspx?guid=b2b26800-4a97-42ac-9872-3ceebacc83ae</trackback:ping>
      <pingback:server>http://blog.project84.net/pingback.aspx</pingback:server>
      <pingback:target>http://blog.project84.net/PermaLink,guid,b2b26800-4a97-42ac-9872-3ceebacc83ae.aspx</pingback:target>
      <dc:creator>Jacob</dc:creator>
      <georss:point>-27.499497 152.970393</georss:point>
      <wfw:comment>http://blog.project84.net/CommentView,guid,b2b26800-4a97-42ac-9872-3ceebacc83ae.aspx</wfw:comment>
      <wfw:commentRss>http://blog.project84.net/SyndicationService.asmx/GetEntryCommentsRss?guid=b2b26800-4a97-42ac-9872-3ceebacc83ae</wfw:commentRss>
      
      <title>MDT 2008, VMWare Workstation and Stop 0x7B</title>
      <guid isPermaLink="false">http://blog.project84.net/PermaLink,guid,b2b26800-4a97-42ac-9872-3ceebacc83ae.aspx</guid>
      <link>http://blog.project84.net/2008/12/16/MDT2008VMWareWorkstationAndStop0x7B.aspx</link>
      <pubDate>Tue, 16 Dec 2008 05:20:49 GMT</pubDate>
      <description>&lt;body xmlns="http://www.w3.org/1999/xhtml"&gt;&#xD;
        &lt;p&gt;&#xD;
When working with the Microsoft Deployment Toolkit (MDT) I spend a lot of time in&#xD;
VMWare Workstation as it makes the job of developing and testing a workstation image&#xD;
much simpler. However there is one big gottcha that you should be aware of. Make sure&#xD;
you edit your .VMX file and modify the following:&#xD;
&lt;/p&gt;&#xD;
        &lt;p&gt;&#xD;
scsi0.present = "TRUE" should be changed to scsi0.present = &lt;strong&gt;"FALSE"&lt;/strong&gt;&lt;/p&gt;&#xD;
        &lt;p&gt;&#xD;
If you don't do this then after deploying a Syspreped image to VMWare Workstation&#xD;
you'll end up with a Stop 0x7B error and much less hair than when you started.&#xD;
&lt;/p&gt;&#xD;
        &lt;p&gt;&#xD;
Thanks &lt;a href="http://cmb-it.blogspot.com/2008/04/vmware-workstation-after-winpe-deploy.html" target="_blank"&gt;Chris&lt;/a&gt; for&#xD;
reminding me of something I supposedly knew. :)&#xD;
&lt;/p&gt;&#xD;
        &lt;img width="0" height="0" src="http://blog.project84.net/aggbug.ashx?id=b2b26800-4a97-42ac-9872-3ceebacc83ae"&gt;&lt;/img&gt;&#xD;
      &lt;/body&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Project84?a=5bPcoqaCe68:hmDxgnTr4L0:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Project84?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Project84?a=5bPcoqaCe68:hmDxgnTr4L0:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Project84?i=5bPcoqaCe68:hmDxgnTr4L0:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Project84?a=5bPcoqaCe68:hmDxgnTr4L0:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Project84?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
      <comments>http://blog.project84.net/CommentView,guid,b2b26800-4a97-42ac-9872-3ceebacc83ae.aspx</comments>
      <category>Desktop</category>
      <category>MDT 2008</category>
      <category>MS Deployment</category>
    </item>
    <item>
      <trackback:ping>http://blog.project84.net/Trackback.aspx?guid=61f3e7e6-f1bc-4ddc-9b2a-e11300ebfb05</trackback:ping>
      <pingback:server>http://blog.project84.net/pingback.aspx</pingback:server>
      <pingback:target>http://blog.project84.net/PermaLink,guid,61f3e7e6-f1bc-4ddc-9b2a-e11300ebfb05.aspx</pingback:target>
      <dc:creator>Jacob</dc:creator>
      <georss:point>-27.499497 152.970393</georss:point>
      <wfw:comment>http://blog.project84.net/CommentView,guid,61f3e7e6-f1bc-4ddc-9b2a-e11300ebfb05.aspx</wfw:comment>
      <wfw:commentRss>http://blog.project84.net/SyndicationService.asmx/GetEntryCommentsRss?guid=61f3e7e6-f1bc-4ddc-9b2a-e11300ebfb05</wfw:commentRss>
      
      <title>Can you use $OEM$ Files with SCCM 2007 OS Deployments?</title>
      <guid isPermaLink="false">http://blog.project84.net/PermaLink,guid,61f3e7e6-f1bc-4ddc-9b2a-e11300ebfb05.aspx</guid>
      <link>http://blog.project84.net/2008/10/16/CanYouUseOEMFilesWithSCCM2007OSDeployments.aspx</link>
      <pubDate>Thu, 16 Oct 2008 05:30:23 GMT</pubDate>
      <description>&lt;body xmlns="http://www.w3.org/1999/xhtml"&gt;&#xD;
        &lt;p&gt;&#xD;
The answer is yes! Incidentally, is there really any limit to what you can do with&#xD;
ConfigMgr?? Well I suppose that is like asking, "&lt;a href="http://wiki.answers.com/Q/How_much_wood_could_a_woodchuck_chuck_if_a_woodchuck_could_chuck_wood" target="_blank"&gt;How&#xD;
much wood could a woodchuck chuck if a woodchuck could chuck wood&lt;/a&gt;?", but anyway&#xD;
let's move on. &#xD;
&lt;/p&gt;&#xD;
        &lt;p&gt;&#xD;
My first clue for solving this came from deployvista.com, "&lt;a href="http://www.deployvista.com/Home/tabid/36/EntryID/71/language/en-US/Default.aspx" target="_blank"&gt;Using&#xD;
the $OEM$ folder with SCCM 2007 OS Deployments&lt;/a&gt;". To summarize you need to place&#xD;
your $OEM$ files into C:\_SMSTaskSequence\OSD\$OEM$ in order for Windows Setup to&#xD;
use the files. Here is what I did:&#xD;
&lt;/p&gt;&#xD;
        &lt;ol&gt;&#xD;
          &lt;li&gt;&#xD;
Added my $OEM$ Files to my MDT Settings Package. (The one with unattend.txt, sysprep.inf&#xD;
and customsettings.ini) &#xD;
&lt;/li&gt;&#xD;
          &lt;li&gt;&#xD;
Add Z-CONFIG-CopyOEM.wsf to your MDT Source Files package. I've provided it below.&#xD;
(Remember to update DP) &#xD;
&lt;/li&gt;&#xD;
          &lt;li&gt;&#xD;
In your Task Sequence right before "Setup Windows and ConfigMgr" add a new "Run Command&#xD;
Line" task. &#xD;
&lt;/li&gt;&#xD;
          &lt;li&gt;&#xD;
Set the Name to "Copy OEM Files". &#xD;
&lt;/li&gt;&#xD;
          &lt;li&gt;&#xD;
Set the Command Line to "cscript.exe "%deployroot%\scripts\Z-CONFIG-CopyOEM.wsf". &#xD;
&lt;/li&gt;&#xD;
          &lt;li&gt;&#xD;
Click the "Package" checkbox and select your MDT Settings Package. &#xD;
&lt;/li&gt;&#xD;
          &lt;li&gt;&#xD;
All Done!&lt;/li&gt;&#xD;
        &lt;/ol&gt;&#xD;
        &lt;p&gt;&#xD;
The guts of the script is pretty simple stuff and it works because when you set a&#xD;
Package in a Run Command Line Task the current directory is the path to whatever package&#xD;
you've select. In this case the current directory is the MDT Settings package containing&#xD;
our $OEM$ files.&#xD;
&lt;/p&gt;&#xD;
        &lt;pre class="brush: vb;"&gt;'//----------------------------------------------------------------------------&#xD;
'//  See if we can find the $OEM$ Directory&#xD;
'//----------------------------------------------------------------------------&#xD;
sDest = OEnvironment.GetOSDV4("_SMSTSMDATAPATH") &amp;amp; "\OSD\$OEM$"&#xD;
oLogging.CreateEntry "$OEM$ Files will be copied to " &amp;amp; sDest, LogTypeInfo &#xD;
&#xD;
'//----------------------------------------------------------------------------&#xD;
'//  Make sure the Destination exists&#xD;
'//----------------------------------------------------------------------------&#xD;
MKDir sDest &#xD;
&#xD;
'//----------------------------------------------------------------------------&#xD;
'//  Get the Source Location and Copy the files&#xD;
'//----------------------------------------------------------------------------&#xD;
sSource = oShell.CurrentDirectory &amp;amp; "\$OEM$"&#xD;
oLogging.CreateEntry "$OEM$ Files will be copied from " &amp;amp; sSource, LogTypeInfo &#xD;
&#xD;
'Copy the folder&#xD;
oFSO.CopyFolder sSource, sDest &#xD;
&#xD;
&lt;/pre&gt;&#xD;
        &lt;iframe style="border-bottom: #dde5e9 1px solid; border-left: #dde5e9 1px solid; padding-bottom: 0px; background-color: #ffffff; margin: 3px; padding-left: 0px; width: 240px; padding-right: 0px; height: 26px; border-top: #dde5e9 1px solid; border-right: #dde5e9 1px solid; padding-top: 0px" marginheight="0" src="http://cid-bca58fd37972fe7e.skydrive.live.com/embedrow.aspx/MDT%202008%20Scripts/Z-CONFIG-CopyOEM.zip" frameborder="0" marginwidth="0" scrolling="no"&gt;&#xD;
        &lt;/iframe&gt;&#xD;
        &lt;img width="0" height="0" src="http://blog.project84.net/aggbug.ashx?id=61f3e7e6-f1bc-4ddc-9b2a-e11300ebfb05"&gt;&lt;/img&gt;&#xD;
      &lt;/body&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Project84?a=bSo5vlBa-qY:JlRytx51LDc:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Project84?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Project84?a=bSo5vlBa-qY:JlRytx51LDc:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Project84?i=bSo5vlBa-qY:JlRytx51LDc:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Project84?a=bSo5vlBa-qY:JlRytx51LDc:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Project84?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
      <comments>http://blog.project84.net/CommentView,guid,61f3e7e6-f1bc-4ddc-9b2a-e11300ebfb05.aspx</comments>
      <category>Desktop Deployment</category>
      <category>MDT 2008</category>
      <category>SCCM 2007</category>
    </item>
    <item>
      <trackback:ping>http://blog.project84.net/Trackback.aspx?guid=c7f2e330-afbf-4320-84f8-63997ee24a95</trackback:ping>
      <pingback:server>http://blog.project84.net/pingback.aspx</pingback:server>
      <pingback:target>http://blog.project84.net/PermaLink,guid,c7f2e330-afbf-4320-84f8-63997ee24a95.aspx</pingback:target>
      <dc:creator>Jacob</dc:creator>
      <georss:point>-27.499497 152.970393</georss:point>
      <wfw:comment>http://blog.project84.net/CommentView,guid,c7f2e330-afbf-4320-84f8-63997ee24a95.aspx</wfw:comment>
      <wfw:commentRss>http://blog.project84.net/SyndicationService.asmx/GetEntryCommentsRss?guid=c7f2e330-afbf-4320-84f8-63997ee24a95</wfw:commentRss>
      
      <title>Finding Path lengths greater than MAX_PATH</title>
      <guid isPermaLink="false">http://blog.project84.net/PermaLink,guid,c7f2e330-afbf-4320-84f8-63997ee24a95.aspx</guid>
      <link>http://blog.project84.net/2008/10/07/FindingPathLengthsGreaterThanMAXPATH.aspx</link>
      <pubDate>Tue, 07 Oct 2008 00:50:24 GMT</pubDate>
      <description>&lt;body xmlns="http://www.w3.org/1999/xhtml"&gt;&#xD;
        &lt;p&gt;&#xD;
If you've ever had anything to do with maintaining or migrating a fileserver you will&#xD;
probably have experienced issues with MAX_PATH. In Windows the maximum length for&#xD;
a path is MAX_PATH, which is defined as 260 characters. One of the most common errors&#xD;
for MAX_PATH is "&lt;em&gt;Can't access this folder. Path is too long.&lt;/em&gt;" This usually&#xD;
happens when users (those pesky users!) map a drive half way down a directory structure&#xD;
and started creating new files and folders.&#xD;
&lt;/p&gt;&#xD;
        &lt;p&gt;&#xD;
You can find more information about MAX_PATH at the following locations:&#xD;
&lt;/p&gt;&#xD;
        &lt;ul&gt;&#xD;
          &lt;li&gt;&#xD;
            &lt;a href="http://support.microsoft.com/kb/177665" target="_blank"&gt;Path too long error&#xD;
message when exceeding MAX_PATH&lt;/a&gt;&#xD;
          &lt;/li&gt;&#xD;
          &lt;li&gt;&#xD;
            &lt;a href="http://msdn.microsoft.com/en-us/library/aa365247.aspx" target="_blank"&gt;Naming&#xD;
a File or Directory&lt;/a&gt;&#xD;
          &lt;/li&gt;&#xD;
          &lt;li&gt;&#xD;
            &lt;a href="http://blogs.msdn.com/bclteam/archive/2007/02/13/long-paths-in-net-part-1-of-3-kim-hamilton.aspx" target="_blank"&gt;Long&#xD;
Paths in .NET, Part 1 of 3&lt;/a&gt;&#xD;
          &lt;/li&gt;&#xD;
          &lt;li&gt;&#xD;
            &lt;a href="http://blogs.msdn.com/bclteam/archive/2007/03/26/long-paths-in-net-part-2-of-3-long-path-workarounds-kim-hamilton.aspx" target="_blank"&gt;Long&#xD;
Paths in .NET, Part 2 of 3: Long Path Workarounds&lt;/a&gt;&#xD;
          &lt;/li&gt;&#xD;
          &lt;li&gt;&#xD;
            &lt;a href="http://blogs.msdn.com/bclteam/archive/2008/07/07/long-paths-in-net-part-3-of-3-redux-kim-hamilton.aspx" target="_blank"&gt;Long&#xD;
Paths in .NET, Part 3 of 3 Redux&lt;/a&gt;&#xD;
          &lt;/li&gt;&#xD;
        &lt;/ul&gt;&#xD;
        &lt;p&gt;&#xD;
I've seen a number of different ways of finding paths that are too long but my favourite&#xD;
at the moment is using the Microsoft Log Parser. Details:&#xD;
&lt;/p&gt;&#xD;
        &lt;ul&gt;&#xD;
          &lt;li&gt;&#xD;
            &lt;a title="http://www.microsoft.com/technet/scriptcenter/tools/logparser/default.mspx" href="http://www.microsoft.com/technet/scriptcenter/tools/logparser/default.mspx"&gt;http://www.microsoft.com/technet/scriptcenter/tools/logparser/default.mspx&lt;/a&gt;&#xD;
          &lt;/li&gt;&#xD;
          &lt;li&gt;&#xD;
            &lt;a title="http://www.microsoft.com/downloads/details.aspx?FamilyID=890cd06b-abf8-4c25-91b2-f8d975cf8c07&amp;amp;displaylang=en" href="http://www.microsoft.com/downloads/details.aspx?FamilyID=890cd06b-abf8-4c25-91b2-f8d975cf8c07&amp;amp;displaylang=en"&gt;http://www.microsoft.com/downloads/details.aspx?FamilyID=890cd06b-abf8-4c25-91b2-f8d975cf8c07&amp;amp;displaylang=en&lt;/a&gt;&#xD;
          &lt;/li&gt;&#xD;
        &lt;/ul&gt;&#xD;
        &lt;p&gt;&#xD;
Once you've downloaded LogParser you can run the following command to output a CSV&#xD;
file of paths greater than 250 characters:&#xD;
&lt;/p&gt;&#xD;
        &lt;p&gt;&#xD;
          &lt;em&gt;LogParser "SELECT Path, Size FROM C:\*.* WHERE STRLEN(Path) &amp;gt; 250" -i:FS -preserveLastAccTime:ON&#xD;
-o:CSV &amp;gt; Results.csv&lt;/em&gt;&#xD;
        &lt;/p&gt;&#xD;
        &lt;p&gt;&#xD;
Just change the "C:\*.*" to the location you want to check for long paths and &lt;a href="http://en.wikipedia.org/wiki/Bob's_your_uncle" target="_blank"&gt;Bob's&#xD;
your uncle&lt;/a&gt;.&#xD;
&lt;/p&gt;&#xD;
        &lt;img width="0" height="0" src="http://blog.project84.net/aggbug.ashx?id=c7f2e330-afbf-4320-84f8-63997ee24a95"&gt;&lt;/img&gt;&#xD;
      &lt;/body&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Project84?a=Fq_kNzVTnOE:L4q__fO-nlM:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Project84?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Project84?a=Fq_kNzVTnOE:L4q__fO-nlM:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Project84?i=Fq_kNzVTnOE:L4q__fO-nlM:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Project84?a=Fq_kNzVTnOE:L4q__fO-nlM:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Project84?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
      <comments>http://blog.project84.net/CommentView,guid,c7f2e330-afbf-4320-84f8-63997ee24a95.aspx</comments>
      <category>Filesystem</category>
      <category>General</category>
    </item>
    <item>
      <trackback:ping>http://blog.project84.net/Trackback.aspx?guid=75398407-a8be-4ae1-bdee-8676f46c3497</trackback:ping>
      <pingback:server>http://blog.project84.net/pingback.aspx</pingback:server>
      <pingback:target>http://blog.project84.net/PermaLink,guid,75398407-a8be-4ae1-bdee-8676f46c3497.aspx</pingback:target>
      <dc:creator>Jacob</dc:creator>
      <georss:point>-27.499497 152.970393</georss:point>
      <wfw:comment>http://blog.project84.net/CommentView,guid,75398407-a8be-4ae1-bdee-8676f46c3497.aspx</wfw:comment>
      <wfw:commentRss>http://blog.project84.net/SyndicationService.asmx/GetEntryCommentsRss?guid=75398407-a8be-4ae1-bdee-8676f46c3497</wfw:commentRss>
      
      <title>Wpeinit.exe cannot find wdi.dll</title>
      <guid isPermaLink="false">http://blog.project84.net/PermaLink,guid,75398407-a8be-4ae1-bdee-8676f46c3497.aspx</guid>
      <link>http://blog.project84.net/2008/10/06/WpeinitexeCannotFindWdidll.aspx</link>
      <pubDate>Mon, 06 Oct 2008 05:09:29 GMT</pubDate>
      <description>&lt;body xmlns="http://www.w3.org/1999/xhtml"&gt;&#xD;
        &lt;p&gt;&#xD;
I booted an SCCM Task Sequence boot image this morning in VMWare Workstation and received&#xD;
the following error: "&lt;em&gt;This application has failed to start because wdi.dll was&#xD;
not found. Re-installing the application may fix this problem&lt;/em&gt;".&#xD;
&lt;/p&gt;&#xD;
        &lt;p&gt;&#xD;
          &lt;img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="144" alt="Error" src="http://blog.project84.net/content/binary/WindowsLiveWriter/Wpeinit.execannotfindwdi.dll_D520/Error_3.png" width="414" border="0"&gt;&lt;/img&gt;&#xD;
        &lt;/p&gt;&#xD;
        &lt;p&gt;&#xD;
Oh of course that makes perfect sense......arhhh actually no. After a bit of searching&#xD;
it appears as thought this is an issue with the VMWare Workstation Drivers. Earlier&#xD;
I'd added the entire drivers directory from the VMWare Tools directory to SCCM. Bad&#xD;
move! All you need is the the &lt;strong&gt;vmxnet&lt;/strong&gt; and &lt;strong&gt;scsi&lt;/strong&gt; directories.&#xD;
Remove all the others, re-generate the Boot Image and you're away!&#xD;
&lt;/p&gt;&#xD;
        &lt;img width="0" height="0" src="http://blog.project84.net/aggbug.ashx?id=75398407-a8be-4ae1-bdee-8676f46c3497"&gt;&lt;/img&gt;&#xD;
      &lt;/body&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Project84?a=H__RaSO61Og:Rb1ad7D2Mt0:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Project84?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Project84?a=H__RaSO61Og:Rb1ad7D2Mt0:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Project84?i=H__RaSO61Og:Rb1ad7D2Mt0:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Project84?a=H__RaSO61Og:Rb1ad7D2Mt0:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Project84?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
      <comments>http://blog.project84.net/CommentView,guid,75398407-a8be-4ae1-bdee-8676f46c3497.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://blog.project84.net/Trackback.aspx?guid=a69474ff-2992-444f-af48-ca66471b2a13</trackback:ping>
      <pingback:server>http://blog.project84.net/pingback.aspx</pingback:server>
      <pingback:target>http://blog.project84.net/PermaLink,guid,a69474ff-2992-444f-af48-ca66471b2a13.aspx</pingback:target>
      <dc:creator>Jacob</dc:creator>
      <georss:point>-27.499497 152.970393</georss:point>
      <wfw:comment>http://blog.project84.net/CommentView,guid,a69474ff-2992-444f-af48-ca66471b2a13.aspx</wfw:comment>
      <wfw:commentRss>http://blog.project84.net/SyndicationService.asmx/GetEntryCommentsRss?guid=a69474ff-2992-444f-af48-ca66471b2a13</wfw:commentRss>
      <slash:comments>3</slash:comments>
      
      <title>(Windows SIM) cannot create catalog files for some images of a different architecture</title>
      <guid isPermaLink="false">http://blog.project84.net/PermaLink,guid,a69474ff-2992-444f-af48-ca66471b2a13.aspx</guid>
      <link>http://blog.project84.net/2008/10/02/WindowsSIMCannotCreateCatalogFilesForSomeImagesOfADifferentArchitecture.aspx</link>
      <pubDate>Thu, 02 Oct 2008 01:12:33 GMT</pubDate>
      <description>&lt;body xmlns="http://www.w3.org/1999/xhtml"&gt;&#xD;
        &lt;p&gt;&#xD;
Today I was attempting to create a sysprep.xml file for Windows 2008. After opening&#xD;
my WIM file in Windows SIM I got the prompt to generate a Catalog file, clicked Yes&#xD;
and then......Error!! What?? Lets try that again....Error!! Whatever, lets try again,&#xD;
Error!! Ok this time I read the error. "System.Reflection.TargetParameterCountException:&#xD;
Parameter count mismatch." Ummm, what??&#xD;
&lt;/p&gt;&#xD;
        &lt;p&gt;&#xD;
After wasting almost 2 hours chasing this error I found this post on the TechNet Forums: &lt;a title="http://forums.microsoft.com/TechNet/ShowPost.aspx?PostID=3066853&amp;amp;SiteID=17" href="http://forums.microsoft.com/TechNet/ShowPost.aspx?PostID=3066853&amp;amp;SiteID=17"&gt;http://forums.microsoft.com/TechNet/ShowPost.aspx?PostID=3066853&amp;amp;SiteID=17&lt;/a&gt;. &#xD;
&lt;/p&gt;&#xD;
        &lt;p&gt;&#xD;
The key information is:&#xD;
&lt;/p&gt;&#xD;
        &lt;p&gt;&#xD;
          &lt;em&gt;Because of the changes in the servicing stack in Windows Vista with Service Pack&#xD;
1 (SP1) and Windows Server 2008, Windows System Image Manager (Windows SIM) cannot&#xD;
create catalog files for some Windows images of different architecture types. The&#xD;
following list describes the Image Manager architecture types and catalogs that can&#xD;
be created for each one. &lt;/em&gt;&#xD;
        &lt;/p&gt;&#xD;
        &lt;p&gt;&#xD;
          &lt;em&gt;x86 Windows SIM:&lt;br&gt;&#xD;
Can create catalogs for x86, x64, and Itanium-based Windows images. &lt;/em&gt;&#xD;
        &lt;/p&gt;&#xD;
        &lt;p&gt;&#xD;
          &lt;em&gt;x64 Windows SIM:&lt;br&gt;&#xD;
Can create catalogs only for x64 Windows images. &lt;/em&gt;&#xD;
        &lt;/p&gt;&#xD;
        &lt;p&gt;&#xD;
          &lt;em&gt;Itanium-based Windows SIM:&lt;br&gt;&#xD;
Can create catalogs only for Itanium-based Windows images.  &lt;/em&gt;&#xD;
        &lt;/p&gt;&#xD;
        &lt;p&gt;&#xD;
          &lt;em&gt;Please confirm if what version of Windows SIM you are using. I recommend installing&#xD;
x86 Windows SIM. &lt;/em&gt;&#xD;
        &lt;/p&gt;&#xD;
        &lt;p&gt;&#xD;
          &lt;em&gt;Hope it helps. &lt;/em&gt;&#xD;
        &lt;/p&gt;&#xD;
        &lt;p&gt;&#xD;
          &lt;em&gt;Tim Quan - MSFT&lt;/em&gt;&#xD;
        &lt;/p&gt;&#xD;
        &lt;p&gt;&#xD;
          &lt;strong&gt;Update: &lt;/strong&gt;Michael Niehaus pointed out that this information is available&#xD;
in the updated version of the WAIK 1.1 release notes available at &lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=051091e8-51ea-4d2c-96b3-dc9863edebd9&amp;amp;displaylang=en"&gt;http://www.microsoft.com/downloads/details.aspx?FamilyID=051091e8-51ea-4d2c-96b3-dc9863edebd9&amp;amp;displaylang=en&lt;/a&gt;.&#xD;
&lt;/p&gt;&#xD;
        &lt;img width="0" height="0" src="http://blog.project84.net/aggbug.ashx?id=a69474ff-2992-444f-af48-ca66471b2a13"&gt;&lt;/img&gt;&#xD;
      &lt;/body&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Project84?a=cxBIjUq3UHM:b0WGDAyEdJI:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Project84?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Project84?a=cxBIjUq3UHM:b0WGDAyEdJI:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Project84?i=cxBIjUq3UHM:b0WGDAyEdJI:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Project84?a=cxBIjUq3UHM:b0WGDAyEdJI:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Project84?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
      <comments>http://blog.project84.net/CommentView,guid,a69474ff-2992-444f-af48-ca66471b2a13.aspx</comments>
      <category>Desktop Deployment</category>
      <category>MDT 2008</category>
      <category>MS Deployment</category>
      <category>Windows 2008</category>
    </item>
    <item>
      <trackback:ping>http://blog.project84.net/Trackback.aspx?guid=cda7ff2b-ff45-4f27-a13e-ee64a768fc93</trackback:ping>
      <pingback:server>http://blog.project84.net/pingback.aspx</pingback:server>
      <pingback:target>http://blog.project84.net/PermaLink,guid,cda7ff2b-ff45-4f27-a13e-ee64a768fc93.aspx</pingback:target>
      <dc:creator>Jacob</dc:creator>
      <georss:point>-27.4671741803808 153.02792072296143</georss:point>
      <wfw:comment>http://blog.project84.net/CommentView,guid,cda7ff2b-ff45-4f27-a13e-ee64a768fc93.aspx</wfw:comment>
      <wfw:commentRss>http://blog.project84.net/SyndicationService.asmx/GetEntryCommentsRss?guid=cda7ff2b-ff45-4f27-a13e-ee64a768fc93</wfw:commentRss>
      
      <title>New version of Beyond Compare</title>
      <guid isPermaLink="false">http://blog.project84.net/PermaLink,guid,cda7ff2b-ff45-4f27-a13e-ee64a768fc93.aspx</guid>
      <link>http://blog.project84.net/2008/10/01/NewVersionOfBeyondCompare.aspx</link>
      <pubDate>Wed, 01 Oct 2008 00:02:29 GMT</pubDate>
      <description>&lt;body xmlns="http://www.w3.org/1999/xhtml"&gt;&#xD;
        &lt;p&gt;&#xD;
I just notice there is a new version of my favourite comparison tool Beyond Compare.&#xD;
In my mind Beyond Compare is one of the best file and folder comparison tools available.&#xD;
Go to &lt;a href="http://www.scootersoftware.com/" target="_blank"&gt;Scooter Software&lt;/a&gt; to&#xD;
get Beyond Compare 3!&#xD;
&lt;/p&gt;&#xD;
        &lt;img width="0" height="0" src="http://blog.project84.net/aggbug.ashx?id=cda7ff2b-ff45-4f27-a13e-ee64a768fc93"&gt;&lt;/img&gt;&#xD;
      &lt;/body&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Project84?a=1Nc-DEc4iTM:n-g2PsociIo:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Project84?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Project84?a=1Nc-DEc4iTM:n-g2PsociIo:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Project84?i=1Nc-DEc4iTM:n-g2PsociIo:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Project84?a=1Nc-DEc4iTM:n-g2PsociIo:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Project84?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
      <comments>http://blog.project84.net/CommentView,guid,cda7ff2b-ff45-4f27-a13e-ee64a768fc93.aspx</comments>
      <category>General</category>
    </item>
    <item>
      <trackback:ping>http://blog.project84.net/Trackback.aspx?guid=1ede8719-4a7c-4a66-8641-2a307b3a992f</trackback:ping>
      <pingback:server>http://blog.project84.net/pingback.aspx</pingback:server>
      <pingback:target>http://blog.project84.net/PermaLink,guid,1ede8719-4a7c-4a66-8641-2a307b3a992f.aspx</pingback:target>
      <dc:creator>Jacob</dc:creator>
      <georss:point>-27.4671741803808 153.02792072296143</georss:point>
      <wfw:comment>http://blog.project84.net/CommentView,guid,1ede8719-4a7c-4a66-8641-2a307b3a992f.aspx</wfw:comment>
      <wfw:commentRss>http://blog.project84.net/SyndicationService.asmx/GetEntryCommentsRss?guid=1ede8719-4a7c-4a66-8641-2a307b3a992f</wfw:commentRss>
      
      <title>Using CDP to find what Switch Port you are plugged into</title>
      <guid isPermaLink="false">http://blog.project84.net/PermaLink,guid,1ede8719-4a7c-4a66-8641-2a307b3a992f.aspx</guid>
      <link>http://blog.project84.net/2008/09/30/UsingCDPToFindWhatSwitchPortYouArePluggedInto.aspx</link>
      <pubDate>Tue, 30 Sep 2008 05:56:05 GMT</pubDate>
      <description>&lt;body xmlns="http://www.w3.org/1999/xhtml"&gt;&#xD;
        &lt;p&gt;&#xD;
Cisco Discovery Protocol or CDP is a proprietary protocol developed by Cisco that&#xD;
allows Cisco devices to share information with other directly connected Cisco equipment&#xD;
[&lt;a href="http://en.wikipedia.org/wiki/Cisco_Discovery_Protocol" target="_blank"&gt;More&#xD;
Info&lt;/a&gt;]. The CDP protocol has some really useful information in it such as the IP&#xD;
of the device, the port you're attached to and even VLAN information. This is really&#xD;
helpful when you want to find out which switch port you are connected to without leaving&#xD;
your desk.&#xD;
&lt;/p&gt;&#xD;
        &lt;p&gt;&#xD;
Firstly go to &lt;a href="http://www.winpcap.org" target="_blank"&gt;WinPcap&lt;/a&gt; site and&#xD;
download &lt;strong&gt;WinPcap&lt;/strong&gt; and &lt;strong&gt;WinDump. &lt;/strong&gt;After installing WinPcap&#xD;
I placed windump.exe in C:\Tools with the rest of my toolkit.&#xD;
&lt;/p&gt;&#xD;
        &lt;p&gt;&#xD;
The procedure to find your switch port is:&lt;br&gt;&#xD;
Run &lt;strong&gt;windump.exe -D&lt;/strong&gt;&lt;/p&gt;&#xD;
        &lt;p&gt;&#xD;
          &lt;font face="Courier New"&gt;C:\Tools&amp;gt;windump -D&lt;br&gt;&#xD;
1.\Device\NPF_{DAA1C207-9CDF-4FB9-92B6-162E447B55EF} (MS Tunnel Interface Driver)&lt;br&gt;&#xD;
2.\Device\NPF_{D47A6165-BF3D-47FE-B3AD-59A97CDE2A60} (Microsoft)&lt;br&gt;&#xD;
3.\Device\NPF_{AD370DA2-E8A2-47EA-9AA5-10B152DED150} (Intel(R) 82566MM Gigabit Network&#xD;
Connection)&lt;/font&gt;&#xD;
        &lt;/p&gt;&#xD;
        &lt;p&gt;&#xD;
Remembering the interface number run &lt;strong&gt;windump -nn -v -i 3 -s 1500 -c 1 ether[20:2]&#xD;
== 0x2000"&lt;br&gt;&lt;/strong&gt;** -i 3 is your interface number, so to listen on the first interface use&#xD;
-i 1. &#xD;
&lt;/p&gt;&#xD;
        &lt;p&gt;&#xD;
          &lt;font face="Courier New"&gt;15:50:45.039275 CDPv2, ttl: 180s, checksum: 692 (unverified),&#xD;
length 384&lt;br&gt;&#xD;
        Device-ID (0x01), length: 27 bytes: '16-C4506.domain.com.'&lt;br&gt;&#xD;
        Version String (0x05), length: 251 bytes:&lt;br&gt;&#xD;
          Cisco IOS Software, Catalyst&#xD;
4000 L3 Switch Software (cat4000-I9S-M), Version 12.2(25)EWA8, RELEASE SOFTWARE (fc1)&lt;br&gt;&#xD;
          Technical Support: &lt;/font&gt;&#xD;
          &lt;a href="http://www.cisco.com/techsupport"&gt;&#xD;
            &lt;font face="Courier New"&gt;http://www.cisco.com/techsupport&lt;/font&gt;&#xD;
          &lt;/a&gt;&#xD;
          &lt;br&gt;&#xD;
          &lt;font face="Courier New"&gt;          Copyright&#xD;
(c) 1986-2007 by Cisco Systems, Inc.&lt;br&gt;&#xD;
          Compiled Wed 24-Jan-07 14:38&#xD;
by pwade&lt;br&gt;&#xD;
        Platform (0x06), length: 14 bytes: 'cisco&#xD;
WS-C4506'&lt;br&gt;&#xD;
        Address (0x02), length: 13 bytes: IPv4&#xD;
(1) 172.16.3.100&lt;br&gt;&#xD;
        Port-ID (0x03), length: 19 bytes: 'GigabitEthernet5/32'&lt;br&gt;&#xD;
        Capability (0x04), length: 4 bytes: (0x00000029):&#xD;
Router, L2 Switch, IGMP snooping&lt;br&gt;&#xD;
        VTP Management Domain (0x09), length: 3&#xD;
bytes: 'bdo'&lt;br&gt;&#xD;
        Native VLAN ID (0x0a), length: 2 bytes:&#xD;
1&lt;br&gt;&#xD;
        Duplex (0x0b), length: 1 byte: full&lt;br&gt;&#xD;
        AVVID trust bitmap (0x12), length: 1 byte:&#xD;
0x00&lt;br&gt;&#xD;
        AVVID untrusted ports CoS (0x13), length:&#xD;
1 byte: 0x00&lt;br&gt;&#xD;
1 packets captured&lt;br&gt;&#xD;
602 packets received by filter&lt;br&gt;&#xD;
0 packets dropped by kernel&lt;/font&gt;&#xD;
        &lt;/p&gt;&#xD;
        &lt;p&gt;&#xD;
And there you have it! You can see Port-ID and Native VLAN ID are your Port and VLAN&#xD;
information.&#xD;
&lt;/p&gt;&#xD;
        &lt;img width="0" height="0" src="http://blog.project84.net/aggbug.ashx?id=1ede8719-4a7c-4a66-8641-2a307b3a992f"&gt;&lt;/img&gt;&#xD;
      &lt;/body&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Project84?a=4ahmkqg0_UU:w7Ep4ngaXew:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Project84?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Project84?a=4ahmkqg0_UU:w7Ep4ngaXew:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Project84?i=4ahmkqg0_UU:w7Ep4ngaXew:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Project84?a=4ahmkqg0_UU:w7Ep4ngaXew:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Project84?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
      <comments>http://blog.project84.net/CommentView,guid,1ede8719-4a7c-4a66-8641-2a307b3a992f.aspx</comments>
      <category>Networking</category>
    </item>
  </channel>
</rss>
