<?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>Joshua Flanagan - TabletPC</title>
    <link>http://flimflan.com/blog/</link>
    <description>A .NET Software Developer</description>
    <language>en-us</language>
    <copyright>josh</copyright>
    <lastBuildDate>Sun, 07 Jan 2007 21:38:20 GMT</lastBuildDate>
    <generator>newtelligence dasBlog 2.1.8209.14743</generator>
    <managingEditor>josh@flimflan.com</managingEditor>
    <webMaster>josh@flimflan.com</webMaster>
    <item>
      <trackback:ping>http://flimflan.com/blog/Trackback.aspx?guid=8824c98e-c8ad-497b-bae2-e45f21c805a5</trackback:ping>
      <pingback:server>http://flimflan.com/blog/pingback.aspx</pingback:server>
      <pingback:target>http://flimflan.com/blog/PermaLink,guid,8824c98e-c8ad-497b-bae2-e45f21c805a5.aspx</pingback:target>
      <dc:creator>
      </dc:creator>
      <wfw:comment>http://flimflan.com/blog/CommentView,guid,8824c98e-c8ad-497b-bae2-e45f21c805a5.aspx</wfw:comment>
      <wfw:commentRss>http://flimflan.com/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=8824c98e-c8ad-497b-bae2-e45f21c805a5</wfw:commentRss>
      <slash:comments>36</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">This post is a follow-up to my previous
post on <a href="http://flimflan.com/blog/InstallingVistaOnYourToshibaM200.aspx">Installing
Vista on your Toshiba M200</a>. It does not stand on its own, so please go read that
post first to get some background. I've received more hits and questions about that
post than any other. Unfortunately, I am neither a Vista, WinPE, PXE, WAIK, nor BCDEDIT
expert. I copied the commands from the Microsoft documentation, then did a bunch of
trial-and-error troubleshooting because of the errors in that documentation, and was
lucky enough to get it to work. I documented the corrections I made in my article
so that others could overcome the problems, and skip the trial-and-error step. But
apparently, my instructions weren't much better, people didn't follow them close enough,
or some other environmental issue is interfering. Since I cannot possibly give one-on-one
support for everyone struggling through this process, I figured a second stab at documenting
my steps might be helpful. This time, instead of documenting where to alter the Microsoft
instructions, I just document each step exactly as I performed them - mostly copied
verbatim from the WAIK User's Guide. The most commonly reported error people are seeing
is:<br />
File: \boot\BCD 
<br />
Status: 0xc0000022 
<br />
Info: An error occured while attempting to read the boot configuration data 
<br /><br />
That means people had trouble with the BCDEDIT steps, which is not surprising, since
that is the part of the documentation with the most mistakes.<br /><br />
So here are the command-line commands as I entered them, to create a working PXE boot
with a valid BCD file. My instructions involve a technician computer running WinXP,
which also serves as my TFTP server using tftpd32.exe. I also use VirtualPC on the
technician computer to run WinPE 2.0 (see the previous article on how to create this
VirtualPC). Step 1 and Step 2 correspond the the steps in the WAIK User's Guide article
mentioned in the previous post.<br /><br />
Step 1 - Run these commands from the XP technician computer. My TFTP server is installed
at c:\apps\tftpboot. Make sure you substitute the appropriate path for your environment.<br /><br />
Click Start, point to Programs, point to Windows AIK, and then click Windows PE Tools
Command Prompt<br /><br />
Enter the following commands at the command prompt. Each bulleted item is a single
command and should be typed on one line (even if it wraps to a new line in your web
browser).<br /><br /><ul><li><span style="font-family: 'courier new',courier;">copype x86  c:\winpe_x86</span></li><li><span style="font-family: 'courier new',courier;">imagex /mountrw c:\winpe_x86\winpe.wim
1 c:\winpe_x86\mount</span></li></ul><br />
Your command prompt should now have been changed to c:\winpe_x86<br /><br /><ul><li><span style="font-family: 'courier new',courier;">md c:\apps\tftpboot\boot</span></li><li><span style="font-family: 'courier new',courier;">copy c:\winpe_x86\mount\Windows\Boot\PXE\*.*
c:\Apps\tftpboot\boot</span></li><li><span style="font-family: 'courier new',courier;">copy "c:\Program Files\Windows
AIK\Tools\PETools\x86\boot\boot.sdi" c:\apps\tftpboot\boot</span></li><li><span style="font-family: 'courier new',courier;">copy c:\winpe_x86\winpe.wim c:\Apps\tftpboot\boot</span></li></ul><br />
Step 2 - Run these commands from your Vista / WinPE 2.0 VirtualPC computer. After
booting WinPE 2.0, you will automatically be presented with a command prompt. If runnning
on Vista, open a command prompt.<br /><br /><ul><li><span style="font-family: 'courier new',courier;">bcdedit -createstore c:\BCD</span></li><li><span style="font-family: 'courier new',courier;">bcdedit -store c:\BCD -create {ramdiskoptions}
/d "Ramdisk options" </span></li><li><span style="font-family: 'courier new',courier;">bcdedit -store c:\BCD -set {ramdiskoptions}
ramdisksdidevice  boot</span></li><li><span style="font-family: 'courier new',courier;">bcdedit -store c:\BCD -set {ramdiskoptions}
ramdisksdipath  \boot\boot.sdi</span></li><li><span style="font-family: 'courier new',courier;">bcdedit -store c:\BCD -create /d
"MyWinPE Boot Image" /application osloader</span></li></ul><br />
This last command will respond with a message like:<br />
"The entry {02836f40-9ea0-11db-af23-0003ffc3f7f5} was successfully created."<br /><br />
The GUID WILL BE DIFFERENT FOR YOU. The GUID is the long series of numbers, letters,
and dashes enclosed in braces {}. Do not copy the GUID used in my commands below.
You must substitute the GUID returned by the previous command.<br />
The following commands use MY GUID. Make sure you change it to yours.<br /><span style="font-family: 'courier new',courier;"><br /></span><ul><li><span style="font-family: 'courier new',courier;">bcdedit -store c:\BCD -set {02836f40-9ea0-11db-af23-0003ffc3f7f5}
systemroot \Windows</span></li><li><span style="font-family: 'courier new',courier;">bcdedit -store c:\BCD -set {02836f40-9ea0-11db-af23-0003ffc3f7f5}
detecthal Yes</span></li></ul><br />
In the previous command, the setting is DETECTHAL in all lowercase. It is not DETECTHA1
- numeral one at the end.<br /><span style="font-family: 'courier new',courier;"><br /></span><ul><li><span style="font-family: 'courier new',courier;">bcdedit -store c:\BCD -set {02836f40-9ea0-11db-af23-0003ffc3f7f5}
winpe Yes</span></li><li><span style="font-family: 'courier new',courier;">bcdedit -store c:\BCD -set {02836f40-9ea0-11db-af23-0003ffc3f7f5}
osdevice ramdisk=[boot]\Boot\WinPE.wim,{ramdiskoptions}</span></li><li><span style="font-family: 'courier new',courier;">bcdedit -store c:\BCD -set {02836f40-9ea0-11db-af23-0003ffc3f7f5}
device ramdisk=[boot]\Boot\WinPE.wim,{ramdiskoptions}</span></li><li><span style="font-family: 'courier new',courier;">bcdedit -store c:\BCD -create {bootmgr}
/d "Windows VISTA BootManager"</span></li><li><span style="font-family: 'courier new',courier;">bcdedit -store c:\BCD -set {bootmgr}
timeout 30 </span></li><li><span style="font-family: 'courier new',courier;">bcdedit -store c:\BCD -set {bootmgr}
displayorder {02836f40-9ea0-11db-af23-0003ffc3f7f5}</span></li></ul><br />
Step 3 - Now I will copy the  files created on my WinPE 2.0 VirtualPC to my TFTP
server (my technician computer). These steps may be different, depending on your setup.<br />
Run the following commands from the Vista/WinPE 2.0 computer. Substitute the values
in ALL CAPS with values for your environment.<br />
TFTPCOMPUTER is the name of your computer running the tftp server.<br />
SHARE is the name of a shared folder on your tftp server.<br />
VALIDUSER is the name of a user on the TFTPCOMPUTER that has write access to SHARE.<br /><br /><span style="font-family: 'courier new',courier;">net use y: \\TFTPCOMPUTER\SHARE<br /></span>when prompted for a username, I enter: TFTPCOMPUTER\VALIDUSER<br />
When prompted for a password, I enter the password for VALIDUSER<br /><br />
When the command completes, I now have the Y: drive mapped to my server (technician
computer). I run the following command from the WinPE 2.0 VirtualPC:<br /><span style="font-family: 'courier new',courier;">copy c:\BCD y:\tftpboot\boot</span><br /><br />
(My share maps to the parent folder - c:\apps - of my tftp server software, which
is installed at c:\apps\tftpboot)<br /><br />
I then started tftpd32.exe from c:\apps\tftpboot on my technician/tftp server. I went
to the "DHCP server" tab and changed the "Boot file" to: boot\pxeboot.com<br /><br />
I then started the tablet, hit F12, selected network boot, then pressed F12 again
to confirm boot from the network. Windows PE booted on the tablet.<br /><br />
Hope this helps.<img width="0" height="0" src="http://flimflan.com/blog/aggbug.ashx?id=8824c98e-c8ad-497b-bae2-e45f21c805a5" /></body>
      <title>Deploy a WinPE 2.0 image using PXE and the WAIK</title>
      <guid isPermaLink="false">http://flimflan.com/blog/PermaLink,guid,8824c98e-c8ad-497b-bae2-e45f21c805a5.aspx</guid>
      <link>http://flimflan.com/blog/DeployAWinPE20ImageUsingPXEAndTheWAIK.aspx</link>
      <pubDate>Sun, 07 Jan 2007 21:38:20 GMT</pubDate>
      <description>This post is a follow-up to my previous post on &lt;a href="http://flimflan.com/blog/InstallingVistaOnYourToshibaM200.aspx"&gt;Installing
Vista on your Toshiba M200&lt;/a&gt;. It does not stand on its own, so please go read that
post first to get some background. I've received more hits and questions about that
post than any other. Unfortunately, I am neither a Vista, WinPE, PXE, WAIK, nor BCDEDIT
expert. I copied the commands from the Microsoft documentation, then did a bunch of
trial-and-error troubleshooting because of the errors in that documentation, and was
lucky enough to get it to work. I documented the corrections I made in my article
so that others could overcome the problems, and skip the trial-and-error step. But
apparently, my instructions weren't much better, people didn't follow them close enough,
or some other environmental issue is interfering. Since I cannot possibly give one-on-one
support for everyone struggling through this process, I figured a second stab at documenting
my steps might be helpful. This time, instead of documenting where to alter the Microsoft
instructions, I just document each step exactly as I performed them - mostly copied
verbatim from the WAIK User's Guide. The most commonly reported error people are seeing
is:&lt;br /&gt;
File: \boot\BCD 
&lt;br /&gt;
Status: 0xc0000022 
&lt;br /&gt;
Info: An error occured while attempting to read the boot configuration data 
&lt;br /&gt;
&lt;br /&gt;
That means people had trouble with the BCDEDIT steps, which is not surprising, since
that is the part of the documentation with the most mistakes.&lt;br /&gt;
&lt;br /&gt;
So here are the command-line commands as I entered them, to create a working PXE boot
with a valid BCD file. My instructions involve a technician computer running WinXP,
which also serves as my TFTP server using tftpd32.exe. I also use VirtualPC on the
technician computer to run WinPE 2.0 (see the previous article on how to create this
VirtualPC). Step 1 and Step 2 correspond the the steps in the WAIK User's Guide article
mentioned in the previous post.&lt;br /&gt;
&lt;br /&gt;
Step 1 - Run these commands from the XP technician computer. My TFTP server is installed
at c:\apps\tftpboot. Make sure you substitute the appropriate path for your environment.&lt;br /&gt;
&lt;br /&gt;
Click Start, point to Programs, point to Windows AIK, and then click Windows PE Tools
Command Prompt&lt;br /&gt;
&lt;br /&gt;
Enter the following commands at the command prompt. Each bulleted item is a single
command and should be typed on one line (even if it wraps to a new line in your web
browser).&lt;br /&gt;
&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;span style="font-family: 'courier new',courier;"&gt;copype x86&amp;nbsp; c:\winpe_x86&lt;/span&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;span style="font-family: 'courier new',courier;"&gt;imagex /mountrw c:\winpe_x86\winpe.wim
1 c:\winpe_x86\mount&lt;/span&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
Your command prompt should now have been changed to c:\winpe_x86&lt;br /&gt;
&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;span style="font-family: 'courier new',courier;"&gt;md c:\apps\tftpboot\boot&lt;/span&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;span style="font-family: 'courier new',courier;"&gt;copy c:\winpe_x86\mount\Windows\Boot\PXE\*.*
c:\Apps\tftpboot\boot&lt;/span&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;span style="font-family: 'courier new',courier;"&gt;copy &amp;quot;c:\Program Files\Windows
AIK\Tools\PETools\x86\boot\boot.sdi&amp;quot; c:\apps\tftpboot\boot&lt;/span&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;span style="font-family: 'courier new',courier;"&gt;copy c:\winpe_x86\winpe.wim c:\Apps\tftpboot\boot&lt;/span&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
Step 2 - Run these commands from your Vista / WinPE 2.0 VirtualPC computer. After
booting WinPE 2.0, you will automatically be presented with a command prompt. If runnning
on Vista, open a command prompt.&lt;br /&gt;
&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;span style="font-family: 'courier new',courier;"&gt;bcdedit -createstore c:\BCD&lt;/span&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;span style="font-family: 'courier new',courier;"&gt;bcdedit -store c:\BCD -create {ramdiskoptions}
/d &amp;quot;Ramdisk options&amp;quot; &lt;/span&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;span style="font-family: 'courier new',courier;"&gt;bcdedit -store c:\BCD -set {ramdiskoptions}
ramdisksdidevice&amp;nbsp; boot&lt;/span&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;span style="font-family: 'courier new',courier;"&gt;bcdedit -store c:\BCD -set {ramdiskoptions}
ramdisksdipath&amp;nbsp; \boot\boot.sdi&lt;/span&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;span style="font-family: 'courier new',courier;"&gt;bcdedit -store c:\BCD -create /d
&amp;quot;MyWinPE Boot Image&amp;quot; /application osloader&lt;/span&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
This last command will respond with a message like:&lt;br /&gt;
&amp;quot;The entry {02836f40-9ea0-11db-af23-0003ffc3f7f5} was successfully created.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
The GUID WILL BE DIFFERENT FOR YOU. The GUID is the long series of numbers, letters,
and dashes enclosed in braces {}. Do not copy the GUID used in my commands below.
You must substitute the GUID returned by the previous command.&lt;br /&gt;
The following commands use MY GUID. Make sure you change it to yours.&lt;br /&gt;
&lt;span style="font-family: 'courier new',courier;"&gt;
&lt;br /&gt;
&lt;/span&gt; 
&lt;ul&gt;
&lt;li&gt;
&lt;span style="font-family: 'courier new',courier;"&gt;bcdedit -store c:\BCD -set {02836f40-9ea0-11db-af23-0003ffc3f7f5}
systemroot \Windows&lt;/span&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;span style="font-family: 'courier new',courier;"&gt;bcdedit -store c:\BCD -set {02836f40-9ea0-11db-af23-0003ffc3f7f5}
detecthal Yes&lt;/span&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
In the previous command, the setting is DETECTHAL in all lowercase. It is not DETECTHA1
- numeral one at the end.&lt;br /&gt;
&lt;span style="font-family: 'courier new',courier;"&gt;
&lt;br /&gt;
&lt;/span&gt; 
&lt;ul&gt;
&lt;li&gt;
&lt;span style="font-family: 'courier new',courier;"&gt;bcdedit -store c:\BCD -set {02836f40-9ea0-11db-af23-0003ffc3f7f5}
winpe Yes&lt;/span&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;span style="font-family: 'courier new',courier;"&gt;bcdedit -store c:\BCD -set {02836f40-9ea0-11db-af23-0003ffc3f7f5}
osdevice ramdisk=[boot]\Boot\WinPE.wim,{ramdiskoptions}&lt;/span&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;span style="font-family: 'courier new',courier;"&gt;bcdedit -store c:\BCD -set {02836f40-9ea0-11db-af23-0003ffc3f7f5}
device ramdisk=[boot]\Boot\WinPE.wim,{ramdiskoptions}&lt;/span&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;span style="font-family: 'courier new',courier;"&gt;bcdedit -store c:\BCD -create {bootmgr}
/d &amp;quot;Windows VISTA BootManager&amp;quot;&lt;/span&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;span style="font-family: 'courier new',courier;"&gt;bcdedit -store c:\BCD -set {bootmgr}
timeout 30 &lt;/span&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;span style="font-family: 'courier new',courier;"&gt;bcdedit -store c:\BCD -set {bootmgr}
displayorder {02836f40-9ea0-11db-af23-0003ffc3f7f5}&lt;/span&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
Step 3 - Now I will copy the&amp;nbsp; files created on my WinPE 2.0 VirtualPC to my TFTP
server (my technician computer). These steps may be different, depending on your setup.&lt;br /&gt;
Run the following commands from the Vista/WinPE 2.0 computer. Substitute the values
in ALL CAPS with values for your environment.&lt;br /&gt;
TFTPCOMPUTER is the name of your computer running the tftp server.&lt;br /&gt;
SHARE is the name of a shared folder on your tftp server.&lt;br /&gt;
VALIDUSER is the name of a user on the TFTPCOMPUTER that has write access to SHARE.&lt;br /&gt;
&lt;br /&gt;
&lt;span style="font-family: 'courier new',courier;"&gt;net use y: \\TFTPCOMPUTER\SHARE&lt;br /&gt;
&lt;/span&gt;when prompted for a username, I enter: TFTPCOMPUTER\VALIDUSER&lt;br /&gt;
When prompted for a password, I enter the password for VALIDUSER&lt;br /&gt;
&lt;br /&gt;
When the command completes, I now have the Y: drive mapped to my server (technician
computer). I run the following command from the WinPE 2.0 VirtualPC:&lt;br /&gt;
&lt;span style="font-family: 'courier new',courier;"&gt;copy c:\BCD y:\tftpboot\boot&lt;/span&gt;
&lt;br /&gt;
&lt;br /&gt;
(My share maps to the parent folder - c:\apps - of my tftp server software, which
is installed at c:\apps\tftpboot)&lt;br /&gt;
&lt;br /&gt;
I then started tftpd32.exe from c:\apps\tftpboot on my technician/tftp server. I went
to the &amp;quot;DHCP server&amp;quot; tab and changed the &amp;quot;Boot file&amp;quot; to: boot\pxeboot.com&lt;br /&gt;
&lt;br /&gt;
I then started the tablet, hit F12, selected network boot, then pressed F12 again
to confirm boot from the network. Windows PE booted on the tablet.&lt;br /&gt;
&lt;br /&gt;
Hope this helps.&lt;img width="0" height="0" src="http://flimflan.com/blog/aggbug.ashx?id=8824c98e-c8ad-497b-bae2-e45f21c805a5" /&gt;</description>
      <comments>http://flimflan.com/blog/CommentView,guid,8824c98e-c8ad-497b-bae2-e45f21c805a5.aspx</comments>
      <category>TabletPC</category>
    </item>
    <item>
      <trackback:ping>http://flimflan.com/blog/Trackback.aspx?guid=c999fbb2-909a-426c-aa90-346a1175a1a6</trackback:ping>
      <pingback:server>http://flimflan.com/blog/pingback.aspx</pingback:server>
      <pingback:target>http://flimflan.com/blog/PermaLink,guid,c999fbb2-909a-426c-aa90-346a1175a1a6.aspx</pingback:target>
      <dc:creator>
      </dc:creator>
      <wfw:comment>http://flimflan.com/blog/CommentView,guid,c999fbb2-909a-426c-aa90-346a1175a1a6.aspx</wfw:comment>
      <wfw:commentRss>http://flimflan.com/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=c999fbb2-909a-426c-aa90-346a1175a1a6</wfw:commentRss>
      <slash:comments>55</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
I wanted to install Windows Vista on my Toshiba M200 TabletPC. However, I have no
optical or floppy drive, making it difficult to install a new OS the usual way (boot
from CD or install boot disk). These instructions should apply to anyone that has
a computer without an optical drive. You will need a second computer running
Windows to act as your "technician computer". This is the machine where
you will do most of the work. Throughout this guide I will refer to the two computers
you are working with as the "technician computer" and the "target computer".
The two computers must be on the same network.
</p>
        <h2>The Easy Way
</h2>
        <p>
If you meet all of the following requirements, the process is much simpler:
</p>
        <ul>
          <li>
Your target computer (in my case, the M200) is already running an older version of
Windows 
</li>
          <li>
You do not need to re-partition or re-format your hard drive. You are okay with letting
Vista just create a new Windows folder (renaming your current Windows folder to Windows.old),
and keeping the rest of your hard drive in tact.</li>
        </ul>
        <p>
If that fits your situation, follow these instructions:
</p>
        <ol>
          <li>
If you have a Vista DVD, and a DVD drive on your technician computer, put the DVD
in the drive. If you have an .ISO image of the Vista DVD, mount the .ISO using a program
like VirtualCD or Nero ImageDrive. 
</li>
          <li>
Use Windows Explorer to share the drive with your network (right-click, Sharing
and Security, Share this drive). 
</li>
          <li>
Boot into the existing Windows on the target computer. Map a drive to the share on
the technician computer (Windows Explorer, Tools menu, Map Network Drive). Map drive
Y: to \\othercomputer\sharename 
</li>
          <li>
On the target computer, run setup.exe from the network drive (Y:\setup.exe).</li>
        </ol>
        <p>
The Vista installation will begin. The only limitation is that you cannot re-format
the hard drive on the target computer. It says you need to boot from the installation
media if you want to change the target hard drive. Since we don't have a CD\DVD
drive, things get more complicated. If you are like me and wanted to start from a
clean slate - and have a lot more time to spare ;) - read on. Otherwise, enjoy your
new Vista computer.
</p>
        <h2>The Hard Way
</h2>
        <p>
If you insist on reformatting your hard drive, you will need to boot the target computer
using network PXE. 
</p>
        <h2>What you will need
</h2>
        <ul>
          <li>
A computer that supports PXE booting from the network (the Toshiba M200 does). Check
your BIOS boot precedence options. 
</li>
          <li>
Everything in the "what you will need section" of <a href="http://home.allegiance.tv/~joem298/">PXE
Booting your M200 to DOS using a Windows Server</a></li>
          <li>
The <a href="http://www.microsoft.com/downloads/details.aspx?familyid=c7d4bc6d-15f3-4284-9123-679830d629f2&amp;displaylang=en">Windows
Automated Installation Kit (WAIK)</a><span style="color: rgb(0, 0, 255); font-weight: bold;"> UPDATE:</span> The
WAIK download link is back - thanks for the note Miguel.<br /></li>
          <li>
            <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=6D58729D-DFA8-40BF-AFAF-20BCB7F01CD1&amp;displaylang=en">Microsoft
Virtual PC 2004</a> (or access to a computer already running Windows Vista)</li>
        </ul>
        <h2>Setup your PXE server
</h2>
        <p>
Setting up a PXE server using Windows XP (and probably other flavors of Windows -
I only tried XP) is surprisingly simple. Just follow the instructions (up through
step 13) from <a href="http://home.allegiance.tv/~joem298/">PXE Booting your
M200 to DOS using a Windows Server</a>. Before proceeding with the Vista install,
I highly recommend following all of the steps on that page to boot your computer
to DOS. This will verify that you can successfully deliver a PXE boot image to your
target computer. Also, I advise you to use the msnet bootdisk image as mentioned in
the article so that you can verify connectivity to the rest of your network.
You will want to make sure that you can connect to a share on your technician computer
from your target computer (currently running DOS). One part I stumbled on is that
DOS does not let you provide a username\password when connecting to a share with "NET
USE". You need to use the "Logon" feature when the network is first
configured at boot. Use a valid username\password that exists on the technician
computer. Now when you map a share with NET USE, it will pass those credentials and
grant you access.
</p>
        <p>
          <span style="color: rgb(0, 0, 255); font-weight: bold;">UPDATE:</span> Some TFTPD32
users are reporting that they need to make sure the "PXE compatibility"
option is selected to get the process to work. Thanks to Jonathan Payan for the suggestion.
It worked successfully for me without enabling that option, but if you are having
trouble, it is worth trying.<br /></p>
        <p>
Unfortunately, you cannot run the Vista install from DOS. If that were the case, you
would simply have to share a folder (or drive) on your technician computer containing
the Vista install, map a drive to it from the target computer, and run setup.exe.
Instead, invoking Vista's setup.exe will give you an error message that it cannot
run from DOS.
</p>
        <h2>Running Windows PE 2.0
</h2>
        <p>
The solution is to boot your target computer into Windows PE 2.0, which is the
Vista equivalent of a DOS boot disk (with MUCH more capabilities). You cannot download
Windows PE 2.0 (that I know of), so you need to create your own PE image using the <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=c7d4bc6d-15f3-4284-9123-679830d629f2&amp;DisplayLang=en">Windows
Automated Installation Kit (WAIK)</a>. Download the image at that link, rename the
.img file to .iso, and either mount it using VirtualCD, some other ISO disk mounter,
or burn it to a CD. Once you can read the disk image, run the setup to install WAIK
on your technician computer.
</p>
        <p>
Unfortunately, one of the steps to create a version of Windows PE 2.0 that can be
booted from the network must be performed on a computer already running Windows Vista
(or PE 2.0). If you have access to such a machine, you can skip ahead to "Creating
a Windows PE 2.0 PXE Installation". Otherwise, use the following steps to get
a minimalist Windows PE 2.0 up and running:
</p>
        <ol>
          <li>
Download and install Microsoft Virtual PC 2004. Create a new virtual machine with
512MB RAM. The hard drive size does not matter, as it will not be used. 
</li>
          <li>
On your technician computer (with WAIK installed), run the "Windows PE Tools
Command Prompt" from your start menu. 
</li>
          <li>
Enter the following commands:</li>
        </ol>
        <code>copype x86 c:\winpe 
<br />
oscdimg -n -bc:\winpe\etfsboot.com c:\winpe\ISO c:\winpe\winpe.iso</code>
        <p>
You now have a bootable Windows PE 2.0 CD ISO image. Start your new virtual machine,
choose "Capture ISO image" from the CD menu, and select the c:\winpe\winpe.iso
that you just created. It will boot into Windows PE 2.0, which you can use to run
BCEDIT in Step 2 of the next section.
</p>
        <h2>Creating a Windows PE 2.0 PXE Installation
</h2>
        <p>
          <span style="color: rgb(0, 0, 255); font-weight: bold;">UPDATE:</span> Apparently
this mix between the Microsoft documentation and my documentation has confused a number
of people, and they are ending up with invalid BCD files. I<a href="http://flimflan.com/blog/DeployAWinPE20ImageUsingPXEAndTheWAIK.aspx"> have
written a new post</a> that explicitly shows the commands I entered. Hopefully this
will help clarify which steps people are doing incorrectly. After following the steps
in <a href="http://flimflan.com/blog/DeployAWinPE20ImageUsingPXEAndTheWAIK.aspx">Deploy
a WinPE 2.0 image using PXE and the WAIK</a>, you can jump back here and continue
with the steps in "Running the Install".<br /></p>
        <p>
Open the "Windows Automated Installation Kit User's Guide" help file that
has been added to your start menu. Find the article "Walkthrough: Deploy an Image
by using PXE" (switch to the Index tab, type PXE, and select the first article).
Follow each of the steps in that article, with the following modifications/clarifications:
</p>
        <p>
Step 1 - 4: You do not need to map a drive to your TFPT directory, since it is on
your local system (it is the tftpboot folder created in step 2 of the M200 article
mentioned above). Any time the WAIK article refers to Y:\, just substitute your tftpboot
folder.
</p>
        <p>
Step 1 - 5: The first command (cd \temp\Windows\Boot\PXE) seems to be an extraneous
typo. Ignore it. Just proceed with the command to copy the files from the boot\pxe
folder.
</p>
        <p>
Step 2 - *: These are the steps that you need to run from your other Vista computer,
or the Windows PE Virtual Machine. Not being familiar with the BCDEDIT syntax, these
instructions confused me a bit. When I read the commands with braces in them (ex:
{ramdiskoptions}), I thought I needed to substitute my appropriate values. Of course,
not knowing what I was doing, I had no idea what values to substitute, so was a little
stumped. It finally dawned on me that they weren't telling me to substitute my own
values - they wanted me to literally type those characters: {ramdiskoptions}. Apparently,
in BCDedit, you create nodes with names specified with braces.
</p>
        <p>
Step 2 - 3: I skipped this step, as it is optional, and I wont be attaching a debugger
during boot.<br /></p>
        <p>
Step 2 - 4: Now, I just told you that when you see braces, you should enter it literally
and not substitute a different value. Except for this step ;). For these commands,
wherever you see {guid1}, you should substitute the guid (with surrounding braces)
that was returned from the first command in 2-4. The command prompt copy/paste feature
comes in really handy here (I wouldn't recommend hand typing the guid repeatedly -
if you get it wrong, who knows what will happen).
</p>
        <p>
Step 2 - 5: If you skipped the optional step 2-3 (as I did), you can ignore the "/inherit
{dbgsettings}" at the end of the first line. Also, the last line has a typo -
they forgot to include the name of the node you are editing. It should look like this:
</p>
        <p>
          <font face="Courier New">Bcdedit -store c:\BCD -set {bootmgr} displayorder {guid1}</font> (where
{guid1} should be replaced with your own guid, as previously mentioned)
</p>
        <p>
Step 2 - 6: You need to copy the BCD file you just created to the tftpboot\boot folder
on your technician computer. One way is to share the tftpboot\boot folder, give write
permissions to a user, map a drive to that share from your Vista/PE virtual machine,
and copy the BCD file to the mapped drive.
</p>
        <p>
Step 2 - 7: You do not need WDSNBP.COM. Instead, you can have your PXE server provide
PXEBOOT.COM. Start tftpd32.exe and click on the DHCP tab. Change the "Boot file"
from "pxelinux.0" (assuming you followed the instructions to boot to DOS) to
"boot\pxeboot.com" (assuming you followed the instructions to copy the Vista
PXE files to a boot subfolder).
</p>
        <h2>Running the Install
</h2>
        <p>
Finally, boot your target computer using PXE. Now, instead of downloading and running
the DOS boot disk, it should download and run pxeboot.com. Press F12 when prompted
to boot from the network. Your target computer should now boot into Windows PE. 
</p>
        <p>
1) If you haven't yet, you need to create a share on your technician computer that
contains the Vista installation media. You can copy the files from a DVD to local
folder and share the folder, or just share your DVD drive like I did.
</p>
        <p>
2) From the target computer (running Windows PE), map a drive to your new share:
</p>
        <p>
          <font face="Courier New">NET USE y: \\servername\sharename</font>
        </p>
        <p>
When prompted, provide a username\password that is valid on the technician computer.
</p>
        <p>
3) Run Y:\setup.exe to begin the Vista installation. You can safely turn off your
PXE server (tftpd32.exe).
</p>
        <h2>Improving the M200 Vista Experience
</h2>
        <p>
When my Vista installation completed on my M200, it only had a standard VGA driver.
I downloaded and installed the NVIDIA Windows XP driver for the M200 from the Toshiba
support site to get back to the tablet's native resolution.
</p>
        <p>
          <span style="color: rgb(0, 0, 255); font-weight: bold;">UPDATE:</span> Thanks to a
comment from DrTigerlilly, I now have working screen rotation on my M200. The trick
is to install some packages intended for the M400. Go to the <a href="http://www.csdsupport.toshiba.com/tais/csd/support/windows_vista/vista_beta.cgi?lsAction=list_files&amp;model_id=10">Toshiba
Vista support page</a>, click on Portege M400, then download and install the following
2 packages: 
</p>
        <ul>
          <li>
Utility: driver_toshiba_value_added_package_v1.0.3.zip</li>
          <li>
Buttons: driver_tabletpc_extension_v1.0.0.1.zip</li>
        </ul>
        <p>
 
</p>
        <img width="0" height="0" src="http://flimflan.com/blog/aggbug.ashx?id=c999fbb2-909a-426c-aa90-346a1175a1a6" />
      </body>
      <title>Installing Vista on your Toshiba M200</title>
      <guid isPermaLink="false">http://flimflan.com/blog/PermaLink,guid,c999fbb2-909a-426c-aa90-346a1175a1a6.aspx</guid>
      <link>http://flimflan.com/blog/InstallingVistaOnYourToshibaM200.aspx</link>
      <pubDate>Sat, 02 Dec 2006 17:36:37 GMT</pubDate>
      <description>&lt;p&gt;
I wanted to install Windows Vista on my Toshiba M200 TabletPC. However, I have no
optical or floppy drive, making it difficult to install a new OS the usual way (boot
from CD or install boot disk). These instructions should apply to anyone that has
a computer without an optical drive. You will need a&amp;nbsp;second computer running
Windows to act as your &amp;quot;technician computer&amp;quot;. This is the machine where
you will do most of the work. Throughout this guide I will refer to the two computers
you are working with as the &amp;quot;technician computer&amp;quot; and the &amp;quot;target computer&amp;quot;.
The two computers must be on the same network.
&lt;/p&gt;
&lt;h2&gt;The Easy Way
&lt;/h2&gt;
&lt;p&gt;
If you meet all of the following requirements, the process is much simpler:
&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
Your target computer (in my case, the M200) is already running an older version of
Windows 
&lt;/li&gt;
&lt;li&gt;
You do not need to re-partition or re-format your hard drive. You are okay with letting
Vista just create a new Windows folder (renaming your current Windows folder to Windows.old),
and keeping the rest of your hard drive in tact.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;
If that fits your situation, follow these instructions:
&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
If you have a Vista DVD, and a DVD drive on your technician computer, put the DVD
in the drive. If you have an .ISO image of the Vista DVD, mount the .ISO using a program
like VirtualCD or Nero ImageDrive. 
&lt;/li&gt;
&lt;li&gt;
Use&amp;nbsp;Windows Explorer to share the drive with your network (right-click, Sharing
and Security, Share this drive). 
&lt;/li&gt;
&lt;li&gt;
Boot into the existing Windows on the target computer. Map a drive to the share on
the technician computer (Windows Explorer, Tools menu, Map Network Drive). Map drive
Y: to \\othercomputer\sharename 
&lt;/li&gt;
&lt;li&gt;
On the target computer, run setup.exe from the network drive (Y:\setup.exe).&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;
The Vista installation will begin. The only limitation is that you cannot re-format
the hard drive on the target computer. It&amp;nbsp;says you need to boot from the installation
media if you want to change the target&amp;nbsp;hard drive. Since we don't have a CD\DVD
drive, things get more complicated. If you are like me and wanted to start from a
clean slate - and have a lot more time to spare ;) - read on. Otherwise, enjoy your
new Vista computer.
&lt;/p&gt;
&lt;h2&gt;The Hard Way
&lt;/h2&gt;
&lt;p&gt;
If you insist on reformatting your hard drive, you will need to boot the target computer
using network PXE. 
&lt;/p&gt;
&lt;h2&gt;What you will need
&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;
A computer that supports PXE booting from the network (the Toshiba M200 does). Check
your BIOS boot precedence options. 
&lt;/li&gt;
&lt;li&gt;
Everything in the &amp;quot;what you will need section&amp;quot; of &lt;a href="http://home.allegiance.tv/~joem298/"&gt;PXE
Booting your M200 to DOS using a Windows Server&lt;/a&gt; 
&lt;/li&gt;
&lt;li&gt;
The &lt;a href="http://www.microsoft.com/downloads/details.aspx?familyid=c7d4bc6d-15f3-4284-9123-679830d629f2&amp;amp;displaylang=en"&gt;Windows
Automated Installation Kit (WAIK)&lt;/a&gt;&lt;span style="color: rgb(0, 0, 255); font-weight: bold;"&gt; UPDATE:&lt;/span&gt; The
WAIK download link is back - thanks for the note Miguel.&lt;br /&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=6D58729D-DFA8-40BF-AFAF-20BCB7F01CD1&amp;amp;displaylang=en"&gt;Microsoft
Virtual PC 2004&lt;/a&gt; (or&amp;nbsp;access to a&amp;nbsp;computer already running Windows Vista)&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;Setup your PXE server
&lt;/h2&gt;
&lt;p&gt;
Setting up a PXE server using Windows XP (and probably other flavors of Windows -
I only tried XP) is surprisingly simple. Just follow the instructions (up through
step 13)&amp;nbsp;from &lt;a href="http://home.allegiance.tv/~joem298/"&gt;PXE Booting your
M200 to DOS using a Windows Server&lt;/a&gt;. Before proceeding with the Vista install,
I highly recommend following all of the steps on that page to boot&amp;nbsp;your computer
to DOS. This will verify that you can successfully deliver a PXE boot image to your
target computer. Also, I advise you to use the msnet bootdisk image as mentioned in
the article&amp;nbsp;so that you can verify connectivity to the rest of your network.
You will want to make sure that you can connect to a share on your technician computer
from your target computer (currently running DOS). One part I stumbled on is that
DOS does not let you provide a username\password when connecting to a share with &amp;quot;NET
USE&amp;quot;. You need to use the &amp;quot;Logon&amp;quot; feature when the network is first
configured at boot. Use a valid username\password that exists on the&amp;nbsp;technician
computer. Now when you map a share with NET USE, it will pass those credentials and
grant you access.
&lt;/p&gt;
&lt;p&gt;
&lt;span style="color: rgb(0, 0, 255); font-weight: bold;"&gt;UPDATE:&lt;/span&gt; Some TFTPD32
users are reporting that they need to make sure the &amp;quot;PXE compatibility&amp;quot;
option is selected to get the process to work. Thanks to Jonathan Payan for the suggestion.
It worked successfully for me without enabling that option, but if you are having
trouble, it is worth trying.&lt;br /&gt;
&lt;/p&gt;
&lt;p&gt;
Unfortunately, you cannot run the Vista install from DOS. If that were the case, you
would simply have to share a folder (or drive) on your technician computer containing
the Vista install, map a drive to it from the target computer, and run setup.exe.
Instead, invoking Vista's setup.exe will give you an error message that it cannot
run from DOS.
&lt;/p&gt;
&lt;h2&gt;Running Windows PE 2.0
&lt;/h2&gt;
&lt;p&gt;
The solution is to boot your target computer into Windows PE 2.0, which is&amp;nbsp;the
Vista equivalent of a DOS boot disk (with MUCH more capabilities). You cannot download
Windows PE 2.0 (that I know of), so you need to create your own PE image using the &lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=c7d4bc6d-15f3-4284-9123-679830d629f2&amp;amp;DisplayLang=en"&gt;Windows
Automated Installation Kit (WAIK)&lt;/a&gt;. Download the image at that link, rename the
.img file to .iso, and either mount it using VirtualCD, some other ISO disk mounter,
or burn it to a CD. Once you can read the disk image, run the setup to install WAIK
on your technician computer.
&lt;/p&gt;
&lt;p&gt;
Unfortunately, one of the steps to create a version of Windows PE 2.0 that can be
booted from the network must be performed on a computer already running Windows Vista
(or PE 2.0). If you have access to such a machine, you can skip ahead to &amp;quot;Creating
a Windows PE 2.0 PXE Installation&amp;quot;. Otherwise, use the following steps to get
a minimalist Windows PE 2.0 up and running:
&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
Download and install Microsoft Virtual PC 2004. Create a new virtual machine with
512MB RAM. The hard drive size does not matter, as it will not be used. 
&lt;/li&gt;
&lt;li&gt;
On your technician computer (with WAIK installed), run the &amp;quot;Windows PE Tools
Command Prompt&amp;quot; from your start menu. 
&lt;/li&gt;
&lt;li&gt;
Enter the following commands:&lt;/li&gt;
&lt;/ol&gt;
&lt;code&gt;copype x86 c:\winpe 
&lt;br /&gt;
oscdimg -n -bc:\winpe\etfsboot.com c:\winpe\ISO c:\winpe\winpe.iso&lt;/code&gt; 
&lt;p&gt;
You now have a bootable Windows PE 2.0 CD ISO image. Start your new virtual machine,
choose &amp;quot;Capture ISO image&amp;quot; from the CD menu, and select the c:\winpe\winpe.iso
that you just created. It will boot into Windows PE 2.0, which you can use to run
BCEDIT in Step 2 of the next section.
&lt;/p&gt;
&lt;h2&gt;Creating a Windows PE 2.0 PXE Installation
&lt;/h2&gt;
&lt;p&gt;
&lt;span style="color: rgb(0, 0, 255); font-weight: bold;"&gt;UPDATE:&lt;/span&gt; Apparently
this mix between the Microsoft documentation and my documentation has confused a number
of people, and they are ending up with invalid BCD files. I&lt;a href="http://flimflan.com/blog/DeployAWinPE20ImageUsingPXEAndTheWAIK.aspx"&gt; have
written a new post&lt;/a&gt; that explicitly shows the commands I entered. Hopefully this
will help clarify which steps people are doing incorrectly. After following the steps
in &lt;a href="http://flimflan.com/blog/DeployAWinPE20ImageUsingPXEAndTheWAIK.aspx"&gt;Deploy
a WinPE 2.0 image using PXE and the WAIK&lt;/a&gt;, you can jump back here and continue
with the steps in &amp;quot;Running the Install&amp;quot;.&lt;br /&gt;
&lt;/p&gt;
&lt;p&gt;
Open the &amp;quot;Windows Automated Installation Kit User's Guide&amp;quot; help file that
has been added to your start menu. Find the article &amp;quot;Walkthrough: Deploy an Image
by using PXE&amp;quot; (switch to the Index tab, type PXE, and select the first article).
Follow each of the steps in that article, with the following modifications/clarifications:
&lt;/p&gt;
&lt;p&gt;
Step 1 - 4: You do not need to map a drive to your TFPT directory, since it is on
your local system (it is the tftpboot folder created in step 2 of the M200 article
mentioned above). Any time the WAIK article refers to Y:\, just substitute your tftpboot
folder.
&lt;/p&gt;
&lt;p&gt;
Step 1 - 5: The first command (cd \temp\Windows\Boot\PXE) seems to be an extraneous
typo. Ignore it. Just proceed with the command to copy the files from the boot\pxe
folder.
&lt;/p&gt;
&lt;p&gt;
Step 2 - *: These are the steps that you need to run from your other Vista computer,
or the Windows PE Virtual Machine. Not being familiar with the BCDEDIT syntax, these
instructions confused me a bit. When I read the commands with braces in them (ex:
{ramdiskoptions}), I thought I needed to substitute my appropriate values. Of course,
not knowing what I was doing, I had no idea what values to substitute, so was a little
stumped. It finally dawned on me that they weren't telling me to substitute my own
values - they wanted me to literally type those characters: {ramdiskoptions}. Apparently,
in BCDedit, you create nodes with names specified with braces.
&lt;/p&gt;
&lt;p&gt;
Step 2 - 3: I skipped this step, as it is optional, and I wont be attaching a debugger
during boot.&lt;br /&gt;
&lt;/p&gt;
&lt;p&gt;
Step 2 - 4: Now, I just told you that when you see braces, you should enter it literally
and not substitute a different value. Except for this step ;). For these commands,
wherever you see {guid1}, you should substitute the guid (with surrounding braces)
that was returned from the first command in 2-4. The command prompt copy/paste feature
comes in really handy here (I wouldn't recommend hand typing the guid repeatedly -
if you get it wrong, who knows what will happen).
&lt;/p&gt;
&lt;p&gt;
Step 2 - 5: If you skipped the optional step 2-3 (as I did), you can ignore the &amp;quot;/inherit
{dbgsettings}&amp;quot; at the end of the first line. Also, the last line has a typo -
they forgot to include the name of the node you are editing. It should look like this:
&lt;/p&gt;
&lt;p&gt;
&lt;font face="Courier New"&gt;Bcdedit -store c:\BCD -set {bootmgr} displayorder {guid1}&lt;/font&gt; (where
{guid1} should be replaced with your own guid, as previously mentioned)
&lt;/p&gt;
&lt;p&gt;
Step 2 - 6: You need to copy the BCD file you just created to the tftpboot\boot folder
on your technician computer. One way is to share the tftpboot\boot folder, give write
permissions to a user, map a drive to that share from your Vista/PE virtual machine,
and copy the BCD file to the mapped drive.
&lt;/p&gt;
&lt;p&gt;
Step 2 - 7: You do not need WDSNBP.COM. Instead, you can have your PXE server provide
PXEBOOT.COM. Start tftpd32.exe and click on the DHCP tab. Change the &amp;quot;Boot file&amp;quot;
from &amp;quot;pxelinux.0&amp;quot; (assuming you followed the instructions to boot to DOS)&amp;nbsp;to
&amp;quot;boot\pxeboot.com&amp;quot; (assuming you followed the instructions to copy the Vista
PXE files to a boot subfolder).
&lt;/p&gt;
&lt;h2&gt;Running the Install
&lt;/h2&gt;
&lt;p&gt;
Finally, boot your target computer using PXE. Now, instead of downloading and running
the DOS boot disk, it should download and run pxeboot.com. Press F12 when prompted
to boot from the network. Your target computer should now boot into Windows PE. 
&lt;/p&gt;
&lt;p&gt;
1) If you haven't yet, you need to create a share on your technician computer that
contains the Vista installation media. You can copy the files from a DVD to local
folder and share the folder, or just share your DVD drive like I did.
&lt;/p&gt;
&lt;p&gt;
2) From the target computer (running Windows PE), map a drive to your new share:
&lt;/p&gt;
&lt;p&gt;
&lt;font face="Courier New"&gt;NET USE y: \\servername\sharename&lt;/font&gt;
&lt;/p&gt;
&lt;p&gt;
When prompted, provide a username\password that is valid on the technician computer.
&lt;/p&gt;
&lt;p&gt;
3) Run Y:\setup.exe to begin the Vista installation. You can safely turn off your
PXE server (tftpd32.exe).
&lt;/p&gt;
&lt;h2&gt;Improving the M200 Vista Experience
&lt;/h2&gt;
&lt;p&gt;
When my Vista installation completed on my M200, it only had a standard VGA driver.
I downloaded and installed the NVIDIA Windows XP driver for the M200 from the Toshiba
support site to get back to the tablet's native resolution.
&lt;/p&gt;
&lt;p&gt;
&lt;span style="color: rgb(0, 0, 255); font-weight: bold;"&gt;UPDATE:&lt;/span&gt; Thanks to a
comment from DrTigerlilly, I now have working screen rotation on my M200. The trick
is to install some packages intended for the M400. Go to the &lt;a href="http://www.csdsupport.toshiba.com/tais/csd/support/windows_vista/vista_beta.cgi?lsAction=list_files&amp;amp;model_id=10"&gt;Toshiba
Vista support page&lt;/a&gt;, click on Portege M400, then download and install the following
2 packages: 
&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
Utility: driver_toshiba_value_added_package_v1.0.3.zip&lt;/li&gt;
&lt;li&gt;
Buttons: driver_tabletpc_extension_v1.0.0.1.zip&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://flimflan.com/blog/aggbug.ashx?id=c999fbb2-909a-426c-aa90-346a1175a1a6" /&gt;</description>
      <comments>http://flimflan.com/blog/CommentView,guid,c999fbb2-909a-426c-aa90-346a1175a1a6.aspx</comments>
      <category>TabletPC</category>
    </item>
  </channel>
</rss>