<?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>Blog:: Craig Pringle - Connectivity</title>
    <link>http://www.pringle.net.nz/blog/</link>
    <description>A collection of my thoughts about TabletPCs, mobility and, well other stuff...</description>
    <image>
      <url>http://www.pringle.net.nz/blog/images/pringle.gif</url>
      <title>Blog:: Craig Pringle - Connectivity</title>
      <link>http://www.pringle.net.nz/blog/</link>
    </image>
    <language>en-us</language>
    <copyright>Craig Pringle</copyright>
    <lastBuildDate>Thu, 02 Jul 2009 12:02:48 GMT</lastBuildDate>
    <generator>newtelligence dasBlog 2.0.7226.0</generator>
    <managingEditor>craig@pringle.net.nz</managingEditor>
    <webMaster>craig@pringle.net.nz</webMaster>
    <item>
      <trackback:ping>http://www.pringle.net.nz/blog/Trackback.aspx?guid=0db68b07-0be2-4708-81e0-5fccecb33872</trackback:ping>
      <pingback:server>http://www.pringle.net.nz/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.pringle.net.nz/blog/PermaLink,guid,0db68b07-0be2-4708-81e0-5fccecb33872.aspx</pingback:target>
      <dc:creator>Craig Pringle</dc:creator>
      <wfw:comment>http://www.pringle.net.nz/blog/CommentView,guid,0db68b07-0be2-4708-81e0-5fccecb33872.aspx</wfw:comment>
      <wfw:commentRss>http://www.pringle.net.nz/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=0db68b07-0be2-4708-81e0-5fccecb33872</wfw:commentRss>
      <slash:comments>2</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Several people have asked for me to post more detail about the CMD scripts that I
wrote to <a href="http://www.pringle.net.nz/blog/PermaLink,guid,12ee0de7-f998-4084-8b06-537b3dbd5d9a.aspx">get
the Cisco VPN client working on my 64-bit Win 7 machine using Virtual XP</a> .
</p>
        <p>
Basically I have written two scripts.  One adds routes to the subnets I need
at work and the other deletes them.  So – what are routes?  Basically they
are the directions that computers use to send communications to the right place.  
</p>
        <p>
The first thing you need to do is identify what network addresses are in use on your
work network.  Fortunately the Cisco client makes this fairly easy for you. 
Once the Cisco VPN client is installed in the virtual XP environment, connect the
VPN and then Select the <em>Statistics </em>option from the <em>Status </em>menu in
the VPN client window.  This will list the subnets on your remote network as
shown below:
</p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/CommandScriptsforusewithCiscoVPNHack_13600/image_4.png">
            <img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/CommandScriptsforusewithCiscoVPNHack_13600/image_thumb_1.png" width="244" height="172" />
          </a>
        </p>
        <p>
I created a text file where each line in the file was a remote subnet and subnet mask,
separated by a semicolon.  For example if your remote network used three networks:
192.168.1.0/24, 192.168.2.0/24 and 192.168.3.0/24 then your text file would look like
this:
</p>
        <p>
192.168.1.0;255.255.255.0 
<br />
192.168.2.0;255.255.255.0 
<br />
192.168.3.0;255.255.255.0
</p>
        <p>
Save this text file to your hard drive.  I saved mine in c:\utils\addroutes.txt
</p>
        <p>
In a nutshell when I am connected to the VPN I run AddRoutes.cmd script and it helps
the Windows 7 machine identify the traffic intended for my work network.  In
the example above it would need to know to send any traffic for the above three networks
to the Loopback adaptor of the host <a href="http://www.pringle.net.nz/blog/PermaLink,guid,12ee0de7-f998-4084-8b06-537b3dbd5d9a.aspx">as
discussed in my previous post</a>.
</p>
        <p>
Here is what is in the AddRoutes.cmd script:
</p>
        <p>
@Echo Off 
<br />
Set GW=192.168.233.1 
<br />
Echo Setting Up Routes: 
<br />
for /F "delims=; tokens=1-2" %%i in (c:\utils\vpnroutes.txt) Do route add
%%i Mask %%j %GW% metric 1&gt;NUL 
<br />
Echo Done!
</p>
        <p>
(note that “for” through to NUL is all one line)
</p>
        <p>
What does this do?  The first line tells the script not to show the commands
as it runs them.
</p>
        <p>
The next line creates a variable called GW and sets it to the IP Address of the loopback
adaptor.
</p>
        <p>
The third line just provides some visual feedback and tells you that it is about to
add the routes.
</p>
        <p>
Line 4 is the workhorse.  I’m not going to go into the nuts and bolts of the
“for” command, but it is very powerful.  If you want to know more, you can type
“for /?” at the command line.  In a nutshell what line 4 says is:
</p>
        <p>
In C:\utils\vpnroutes.txt each line is a list of values seperated by semicolons. 
For each line run the following command with the first two values:
</p>
        <p>
route add <em>Value1</em> mask <em>Value2 GW</em></p>
        <p>
Where GW is the address of the gateway we set in line 2.
</p>
        <p>
That’s it – you are online and know how to talk to your VPN network.
</p>
        <p>
Now when you disconnect  you don’t need those routes anymore, and if you leave
them there they may cause issues.  So DeleteRoutes.cmd removes them again.
</p>
        <p>
Here is what is in DelRoutes.cmd:
</p>
        <p>
@Echo Off 
<br />
Echo Deleteing Routes... 
<br />
for /F "delims=; tokens=1" %%i in (c:\utils\vpnroutes.txt) Do route delete
%%i&gt;NUL 
<br />
Echo Done!
</p>
        <p>
This is very similar to the first script – For each line in the vpnroutes.txt file
it runs a command to remove the route again.  
</p>
        <p>
There is one last thing you may need to make everything work as expected and that
is name resolution.  This one is easy to fix.  If you know the address of
your DNS server on your remote network add it as the DNS server on the properties
of the loopback adaptor.  This won’t cause any issues if you leave it there full
time.
</p>
        <p>
Hope that helps everyone.  I will admit it is a bit of a nasty work around but
it does work.
</p>
        <img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=0db68b07-0be2-4708-81e0-5fccecb33872" />
      </body>
      <title>Command Scripts for use with Cisco VPN Hack</title>
      <guid isPermaLink="false">http://www.pringle.net.nz/blog/PermaLink,guid,0db68b07-0be2-4708-81e0-5fccecb33872.aspx</guid>
      <link>http://www.pringle.net.nz/blog/PermaLink,guid,0db68b07-0be2-4708-81e0-5fccecb33872.aspx</link>
      <pubDate>Thu, 02 Jul 2009 12:02:48 GMT</pubDate>
      <description>&lt;p&gt;
Several people have asked for me to post more detail about the CMD scripts that I
wrote to &lt;a href="http://www.pringle.net.nz/blog/PermaLink,guid,12ee0de7-f998-4084-8b06-537b3dbd5d9a.aspx"&gt;get
the Cisco VPN client working on my 64-bit Win 7 machine using Virtual XP&lt;/a&gt; .
&lt;/p&gt;
&lt;p&gt;
Basically I have written two scripts.&amp;#160; One adds routes to the subnets I need
at work and the other deletes them.&amp;#160; So – what are routes?&amp;#160; Basically they
are the directions that computers use to send communications to the right place.&amp;#160; 
&lt;/p&gt;
&lt;p&gt;
The first thing you need to do is identify what network addresses are in use on your
work network.&amp;#160; Fortunately the Cisco client makes this fairly easy for you.&amp;#160;
Once the Cisco VPN client is installed in the virtual XP environment, connect the
VPN and then Select the &lt;em&gt;Statistics &lt;/em&gt;option from the &lt;em&gt;Status &lt;/em&gt;menu in
the VPN client window.&amp;#160; This will list the subnets on your remote network as
shown below:
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/CommandScriptsforusewithCiscoVPNHack_13600/image_4.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/CommandScriptsforusewithCiscoVPNHack_13600/image_thumb_1.png" width="244" height="172" /&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
I created a text file where each line in the file was a remote subnet and subnet mask,
separated by a semicolon.&amp;#160; For example if your remote network used three networks:
192.168.1.0/24, 192.168.2.0/24 and 192.168.3.0/24 then your text file would look like
this:
&lt;/p&gt;
&lt;p&gt;
192.168.1.0;255.255.255.0 
&lt;br /&gt;
192.168.2.0;255.255.255.0 
&lt;br /&gt;
192.168.3.0;255.255.255.0
&lt;/p&gt;
&lt;p&gt;
Save this text file to your hard drive.&amp;#160; I saved mine in c:\utils\addroutes.txt
&lt;/p&gt;
&lt;p&gt;
In a nutshell when I am connected to the VPN I run AddRoutes.cmd script and it helps
the Windows 7 machine identify the traffic intended for my work network.&amp;#160; In
the example above it would need to know to send any traffic for the above three networks
to the Loopback adaptor of the host &lt;a href="http://www.pringle.net.nz/blog/PermaLink,guid,12ee0de7-f998-4084-8b06-537b3dbd5d9a.aspx"&gt;as
discussed in my previous post&lt;/a&gt;.
&lt;/p&gt;
&lt;p&gt;
Here is what is in the AddRoutes.cmd script:
&lt;/p&gt;
&lt;p&gt;
@Echo Off 
&lt;br /&gt;
Set GW=192.168.233.1 
&lt;br /&gt;
Echo Setting Up Routes: 
&lt;br /&gt;
for /F &amp;quot;delims=; tokens=1-2&amp;quot; %%i in (c:\utils\vpnroutes.txt) Do route add
%%i Mask %%j %GW% metric 1&amp;gt;NUL 
&lt;br /&gt;
Echo Done!
&lt;/p&gt;
&lt;p&gt;
(note that “for” through to NUL is all one line)
&lt;/p&gt;
&lt;p&gt;
What does this do?&amp;#160; The first line tells the script not to show the commands
as it runs them.
&lt;/p&gt;
&lt;p&gt;
The next line creates a variable called GW and sets it to the IP Address of the loopback
adaptor.
&lt;/p&gt;
&lt;p&gt;
The third line just provides some visual feedback and tells you that it is about to
add the routes.
&lt;/p&gt;
&lt;p&gt;
Line 4 is the workhorse.&amp;#160; I’m not going to go into the nuts and bolts of the
“for” command, but it is very powerful.&amp;#160; If you want to know more, you can type
“for /?” at the command line.&amp;#160; In a nutshell what line 4 says is:
&lt;/p&gt;
&lt;p&gt;
In C:\utils\vpnroutes.txt each line is a list of values seperated by semicolons.&amp;#160;
For each line run the following command with the first two values:
&lt;/p&gt;
&lt;p&gt;
route add &lt;em&gt;Value1&lt;/em&gt; mask &lt;em&gt;Value2 GW&lt;/em&gt;
&lt;/p&gt;
&lt;p&gt;
Where GW is the address of the gateway we set in line 2.
&lt;/p&gt;
&lt;p&gt;
That’s it – you are online and know how to talk to your VPN network.
&lt;/p&gt;
&lt;p&gt;
Now when you disconnect&amp;#160; you don’t need those routes anymore, and if you leave
them there they may cause issues.&amp;#160; So DeleteRoutes.cmd removes them again.
&lt;/p&gt;
&lt;p&gt;
Here is what is in DelRoutes.cmd:
&lt;/p&gt;
&lt;p&gt;
@Echo Off 
&lt;br /&gt;
Echo Deleteing Routes... 
&lt;br /&gt;
for /F &amp;quot;delims=; tokens=1&amp;quot; %%i in (c:\utils\vpnroutes.txt) Do route delete
%%i&amp;gt;NUL 
&lt;br /&gt;
Echo Done!
&lt;/p&gt;
&lt;p&gt;
This is very similar to the first script – For each line in the vpnroutes.txt file
it runs a command to remove the route again.&amp;#160; 
&lt;/p&gt;
&lt;p&gt;
There is one last thing you may need to make everything work as expected and that
is name resolution.&amp;#160; This one is easy to fix.&amp;#160; If you know the address of
your DNS server on your remote network add it as the DNS server on the properties
of the loopback adaptor.&amp;#160; This won’t cause any issues if you leave it there full
time.
&lt;/p&gt;
&lt;p&gt;
Hope that helps everyone.&amp;#160; I will admit it is a bit of a nasty work around but
it does work.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=0db68b07-0be2-4708-81e0-5fccecb33872" /&gt;</description>
      <comments>http://www.pringle.net.nz/blog/CommentView,guid,0db68b07-0be2-4708-81e0-5fccecb33872.aspx</comments>
      <category>Connectivity</category>
      <category>Security</category>
      <category>Windows 7</category>
    </item>
    <item>
      <trackback:ping>http://www.pringle.net.nz/blog/Trackback.aspx?guid=2044fd9d-c47b-4a8a-ac4d-b9e449debe51</trackback:ping>
      <pingback:server>http://www.pringle.net.nz/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.pringle.net.nz/blog/PermaLink,guid,2044fd9d-c47b-4a8a-ac4d-b9e449debe51.aspx</pingback:target>
      <dc:creator>Craig Pringle</dc:creator>
      <wfw:comment>http://www.pringle.net.nz/blog/CommentView,guid,2044fd9d-c47b-4a8a-ac4d-b9e449debe51.aspx</wfw:comment>
      <wfw:commentRss>http://www.pringle.net.nz/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=2044fd9d-c47b-4a8a-ac4d-b9e449debe51</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Previously <a href="http://www.pringle.net.nz/blog/PermaLink,guid,12ee0de7-f998-4084-8b06-537b3dbd5d9a.aspx">I
blogged about the lack of a 64-bit Cisco VPN client</a>.  
</p>
        <p>
In the <a href="http://www.pringle.net.nz/blog/CommentView,guid,12ee0de7-f998-4084-8b06-537b3dbd5d9a.aspx#commentstart">comments
of that post yaz points out</a> that NCP has a Beta Client that works on 64-bit clients
– and that includes Windows 7.  It also supports 3rd party VPNs and that includes
Cisco.
</p>
        <p>
The NCP beta client is available <a href="http://www.ncp-e.com/en/downloads/software.html">via
this page</a>.  Install was simple and there is even a UI to import your existing
Cisco VPN profile.  
</p>
        <p>
It appears to be a 30 day trial – which is a bit odd for a beta product.  It
does appear to work though.  I’ll give it a good work out over the next couple
of days and report back.
</p>
        <img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=2044fd9d-c47b-4a8a-ac4d-b9e449debe51" />
      </body>
      <title>Working VPN Client for Win7 x64</title>
      <guid isPermaLink="false">http://www.pringle.net.nz/blog/PermaLink,guid,2044fd9d-c47b-4a8a-ac4d-b9e449debe51.aspx</guid>
      <link>http://www.pringle.net.nz/blog/PermaLink,guid,2044fd9d-c47b-4a8a-ac4d-b9e449debe51.aspx</link>
      <pubDate>Mon, 25 May 2009 11:44:26 GMT</pubDate>
      <description>&lt;p&gt;
Previously &lt;a href="http://www.pringle.net.nz/blog/PermaLink,guid,12ee0de7-f998-4084-8b06-537b3dbd5d9a.aspx"&gt;I
blogged about the lack of a 64-bit Cisco VPN client&lt;/a&gt;.&amp;#160; 
&lt;/p&gt;
&lt;p&gt;
In the &lt;a href="http://www.pringle.net.nz/blog/CommentView,guid,12ee0de7-f998-4084-8b06-537b3dbd5d9a.aspx#commentstart"&gt;comments
of that post yaz points out&lt;/a&gt; that NCP has a Beta Client that works on 64-bit clients
– and that includes Windows 7.&amp;#160; It also supports 3rd party VPNs and that includes
Cisco.
&lt;/p&gt;
&lt;p&gt;
The NCP beta client is available &lt;a href="http://www.ncp-e.com/en/downloads/software.html"&gt;via
this page&lt;/a&gt;.&amp;#160; Install was simple and there is even a UI to import your existing
Cisco VPN profile.&amp;#160; 
&lt;/p&gt;
&lt;p&gt;
It appears to be a 30 day trial – which is a bit odd for a beta product.&amp;#160; It
does appear to work though.&amp;#160; I’ll give it a good work out over the next couple
of days and report back.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=2044fd9d-c47b-4a8a-ac4d-b9e449debe51" /&gt;</description>
      <comments>http://www.pringle.net.nz/blog/CommentView,guid,2044fd9d-c47b-4a8a-ac4d-b9e449debe51.aspx</comments>
      <category>Connectivity</category>
      <category>General</category>
      <category>Security</category>
      <category>Windows 7</category>
    </item>
    <item>
      <trackback:ping>http://www.pringle.net.nz/blog/Trackback.aspx?guid=12ee0de7-f998-4084-8b06-537b3dbd5d9a</trackback:ping>
      <pingback:server>http://www.pringle.net.nz/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.pringle.net.nz/blog/PermaLink,guid,12ee0de7-f998-4084-8b06-537b3dbd5d9a.aspx</pingback:target>
      <dc:creator>Craig Pringle</dc:creator>
      <wfw:comment>http://www.pringle.net.nz/blog/CommentView,guid,12ee0de7-f998-4084-8b06-537b3dbd5d9a.aspx</wfw:comment>
      <wfw:commentRss>http://www.pringle.net.nz/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=12ee0de7-f998-4084-8b06-537b3dbd5d9a</wfw:commentRss>
      <slash:comments>9</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
For reasons that escape me Cisco have chosen not to release a 64-bit version of the
IPSec Cisco VPN Client. 
</p>
        <p>
This is a problem for me since I installed the 64-bit version of Windows 7 RC on my
Toshiba M750.
</p>
        <p>
To get around this without rebuilding with the 32-bit version I employed Windows 7’s
new <a href="http://www.microsoft.com/windows/virtual-pc/download.aspx">XP Mode</a> –
aka Virtual XP.
</p>
        <p>
First I followed the steps on the <a href="http://www.microsoft.com/windows/virtual-pc/download.aspx">download
page</a>:
</p>
        <ol>
          <li>
Enabled virtualisation extensions in the BIOS. 
</li>
          <li>
Download and install the Virtual PC Beta. 
</li>
          <li>
Download Windows XP Mode. 
</li>
        </ol>
        <p>
That done I fired up the <em>Virtual Windows XP</em> from my Start Menu:
</p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/a80875bd5ad9_11FEF/image_14.png">
            <img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/a80875bd5ad9_11FEF/image_thumb_6.png" width="241" height="82" />
          </a>
        </p>
        <p>
This loaded up a Virtual Machine already running Windows XP.  I installed the
Cisco VPN Client and verified that it could connect to the VPN.  
</p>
        <p>
This is where it gets a little tricky.  At this point I have my Toshiba, which
is the host and an XP machine which is a guest.  The XP Guest has a virtual adaptor
that leverages the host’s network adaptor and can connect to the remote network. 
But the host has not way to connect through the guest to get to the remote network.
</p>
        <p>
For initial testing I created a static route for one of the subnets and pointed it
to the IP Address of the guest.  This worked, but it is a bit fiddly as the guest
IP address is assigned by DHCP and as such will change depending on where I am.
</p>
        <p>
I wanted something that required a little less work to get connected.  To achieve
this I needed to create a virtual adaptor on the Host.  This is done by adding
a loopback adapter to the host.
</p>
        <p>
          <strong>Adding a Loopback Adapter to the Host</strong>
        </p>
        <p>
In Device Manager right click the root node and select <em>Add Legacy Hardware</em></p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/a80875bd5ad9_11FEF/image_2.png">
            <img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/a80875bd5ad9_11FEF/image_thumb.png" width="244" height="162" />
          </a>
        </p>
        <p>
On the welcome screen click <em>Next</em>.
</p>
        <p>
Then select <em>Install the hardware that I manually select from a list (Advanced) </em>and
then click <em>Next</em></p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/a80875bd5ad9_11FEF/image_4.png">
            <img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/a80875bd5ad9_11FEF/image_thumb_1.png" width="244" height="181" />
          </a>
        </p>
        <p>
Scroll down and select <em>Network Adapters </em>and then click <em>Next</em></p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/a80875bd5ad9_11FEF/image_6.png">
            <img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/a80875bd5ad9_11FEF/image_thumb_2.png" width="218" height="215" />
          </a>
        </p>
        <p>
Then select <em>Microsoft </em>as the Manufacturer and <em>Microsoft Loopback Adapter </em>and
then click <em>Next</em></p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/a80875bd5ad9_11FEF/image_10.png">
            <img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/a80875bd5ad9_11FEF/image_thumb_4.png" width="244" height="59" />
          </a>
        </p>
        <p>
        </p>
        <p>
On the confirmation screen click <em>Next</em>.  Then when the installation finishes
click <em>Finish</em>.
</p>
        <p>
        </p>
        <p>
Once this has completed you will find a new network adapter in the Network Connections.
</p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/a80875bd5ad9_11FEF/image_12.png">
            <img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/a80875bd5ad9_11FEF/image_thumb_5.png" width="244" height="105" />
          </a>
        </p>
        <p>
I configured this adapter with a private IP address in a range that I don’t use at
home or work.  
</p>
        <p>
Next I added a second Virtual Adapter to the Virtual Windows XP machine and bound
this to the new Loopback Adapter.  I assigned a static address to this in the
same range as the Loopback adapter.
</p>
        <p>
Because the network I am connecting to uses a number of subnets I wrote two quick
CMD scripts.  One adds the routes on the host, the other removes them.
</p>
        <p>
Virtual PC also creates shortcuts for applications installed in the guest on the Start
Menu of the host.  
</p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/a80875bd5ad9_11FEF/image_16.png">
            <img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/a80875bd5ad9_11FEF/image_thumb_7.png" width="240" height="178" />
          </a>
        </p>
        <p>
To connect to my VPN I can run this and it hides Virtual Machine’s desktop and the
VPN client looks like it is running on the Windows 7 machine.  I then run my
script to create the routes and I can work away.  When I disconnect the VPN I
run another script to delete the routes again.  Of course I can add shortcuts
to all three actions to my desktop to ease the process.  Not quite as clean as
installing the client directly on the machine, but it works.
</p>
        <p>
          <font color="#ff0000">Update:</font> For details of the command scripts <a href="http://www.pringle.net.nz/blog/PermaLink,guid,0db68b07-0be2-4708-81e0-5fccecb33872.aspx">see
this post.</a></p>
        <img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=12ee0de7-f998-4084-8b06-537b3dbd5d9a" />
      </body>
      <title>Cisco VPN Client on Windows 7 x64</title>
      <guid isPermaLink="false">http://www.pringle.net.nz/blog/PermaLink,guid,12ee0de7-f998-4084-8b06-537b3dbd5d9a.aspx</guid>
      <link>http://www.pringle.net.nz/blog/PermaLink,guid,12ee0de7-f998-4084-8b06-537b3dbd5d9a.aspx</link>
      <pubDate>Sun, 10 May 2009 12:16:04 GMT</pubDate>
      <description>&lt;p&gt;
For reasons that escape me Cisco have chosen not to release a 64-bit version of the
IPSec Cisco VPN Client. 
&lt;/p&gt;
&lt;p&gt;
This is a problem for me since I installed the 64-bit version of Windows 7 RC on my
Toshiba M750.
&lt;/p&gt;
&lt;p&gt;
To get around this without rebuilding with the 32-bit version I employed Windows 7’s
new &lt;a href="http://www.microsoft.com/windows/virtual-pc/download.aspx"&gt;XP Mode&lt;/a&gt; –
aka Virtual XP.
&lt;/p&gt;
&lt;p&gt;
First I followed the steps on the &lt;a href="http://www.microsoft.com/windows/virtual-pc/download.aspx"&gt;download
page&lt;/a&gt;:
&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
Enabled virtualisation extensions in the BIOS. 
&lt;/li&gt;
&lt;li&gt;
Download and install the Virtual PC Beta. 
&lt;/li&gt;
&lt;li&gt;
Download Windows XP Mode. 
&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;
That done I fired up the &lt;em&gt;Virtual Windows XP&lt;/em&gt; from my Start Menu:
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/a80875bd5ad9_11FEF/image_14.png"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/a80875bd5ad9_11FEF/image_thumb_6.png" width="241" height="82" /&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
This loaded up a Virtual Machine already running Windows XP.&amp;#160; I installed the
Cisco VPN Client and verified that it could connect to the VPN.&amp;#160; 
&lt;/p&gt;
&lt;p&gt;
This is where it gets a little tricky.&amp;#160; At this point I have my Toshiba, which
is the host and an XP machine which is a guest.&amp;#160; The XP Guest has a virtual adaptor
that leverages the host’s network adaptor and can connect to the remote network.&amp;#160;
But the host has not way to connect through the guest to get to the remote network.
&lt;/p&gt;
&lt;p&gt;
For initial testing I created a static route for one of the subnets and pointed it
to the IP Address of the guest.&amp;#160; This worked, but it is a bit fiddly as the guest
IP address is assigned by DHCP and as such will change depending on where I am.
&lt;/p&gt;
&lt;p&gt;
I wanted something that required a little less work to get connected.&amp;#160; To achieve
this I needed to create a virtual adaptor on the Host.&amp;#160; This is done by adding
a loopback adapter to the host.
&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;Adding a Loopback Adapter to the Host&lt;/strong&gt;
&lt;/p&gt;
&lt;p&gt;
In Device Manager right click the root node and select &lt;em&gt;Add Legacy Hardware&lt;/em&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/a80875bd5ad9_11FEF/image_2.png"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/a80875bd5ad9_11FEF/image_thumb.png" width="244" height="162" /&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
On the welcome screen click &lt;em&gt;Next&lt;/em&gt;.
&lt;/p&gt;
&lt;p&gt;
Then select &lt;em&gt;Install the hardware that I manually select from a list (Advanced) &lt;/em&gt;and
then click &lt;em&gt;Next&lt;/em&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/a80875bd5ad9_11FEF/image_4.png"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/a80875bd5ad9_11FEF/image_thumb_1.png" width="244" height="181" /&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
Scroll down and select &lt;em&gt;Network Adapters &lt;/em&gt;and then click &lt;em&gt;Next&lt;/em&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/a80875bd5ad9_11FEF/image_6.png"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/a80875bd5ad9_11FEF/image_thumb_2.png" width="218" height="215" /&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
Then select &lt;em&gt;Microsoft &lt;/em&gt;as the Manufacturer and &lt;em&gt;Microsoft Loopback Adapter &lt;/em&gt;and
then click &lt;em&gt;Next&lt;/em&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/a80875bd5ad9_11FEF/image_10.png"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/a80875bd5ad9_11FEF/image_thumb_4.png" width="244" height="59" /&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
&lt;/p&gt;
&lt;p&gt;
On the confirmation screen click &lt;em&gt;Next&lt;/em&gt;.&amp;#160; Then when the installation finishes
click &lt;em&gt;Finish&lt;/em&gt;.
&lt;/p&gt;
&lt;p&gt;
&lt;/p&gt;
&lt;p&gt;
Once this has completed you will find a new network adapter in the Network Connections.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/a80875bd5ad9_11FEF/image_12.png"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/a80875bd5ad9_11FEF/image_thumb_5.png" width="244" height="105" /&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
I configured this adapter with a private IP address in a range that I don’t use at
home or work.&amp;#160; 
&lt;/p&gt;
&lt;p&gt;
Next I added a second Virtual Adapter to the Virtual Windows XP machine and bound
this to the new Loopback Adapter.&amp;#160; I assigned a static address to this in the
same range as the Loopback adapter.
&lt;/p&gt;
&lt;p&gt;
Because the network I am connecting to uses a number of subnets I wrote two quick
CMD scripts.&amp;#160; One adds the routes on the host, the other removes them.
&lt;/p&gt;
&lt;p&gt;
Virtual PC also creates shortcuts for applications installed in the guest on the Start
Menu of the host.&amp;#160; 
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/a80875bd5ad9_11FEF/image_16.png"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/a80875bd5ad9_11FEF/image_thumb_7.png" width="240" height="178" /&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
To connect to my VPN I can run this and it hides Virtual Machine’s desktop and the
VPN client looks like it is running on the Windows 7 machine.&amp;#160; I then run my
script to create the routes and I can work away.&amp;#160; When I disconnect the VPN I
run another script to delete the routes again.&amp;#160; Of course I can add shortcuts
to all three actions to my desktop to ease the process.&amp;#160; Not quite as clean as
installing the client directly on the machine, but it works.
&lt;/p&gt;
&lt;p&gt;
&lt;font color="#ff0000"&gt;Update:&lt;/font&gt; For details of the command scripts &lt;a href="http://www.pringle.net.nz/blog/PermaLink,guid,0db68b07-0be2-4708-81e0-5fccecb33872.aspx"&gt;see
this post.&lt;/a&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=12ee0de7-f998-4084-8b06-537b3dbd5d9a" /&gt;</description>
      <comments>http://www.pringle.net.nz/blog/CommentView,guid,12ee0de7-f998-4084-8b06-537b3dbd5d9a.aspx</comments>
      <category>Connectivity</category>
      <category>M750</category>
      <category>Security</category>
      <category>Virtual PC</category>
      <category>Windows 7</category>
    </item>
    <item>
      <trackback:ping>http://www.pringle.net.nz/blog/Trackback.aspx?guid=c0cea460-9352-4ac1-9331-7c23cb5de287</trackback:ping>
      <pingback:server>http://www.pringle.net.nz/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.pringle.net.nz/blog/PermaLink,guid,c0cea460-9352-4ac1-9331-7c23cb5de287.aspx</pingback:target>
      <dc:creator>Craig Pringle</dc:creator>
      <wfw:comment>http://www.pringle.net.nz/blog/CommentView,guid,c0cea460-9352-4ac1-9331-7c23cb5de287.aspx</wfw:comment>
      <wfw:commentRss>http://www.pringle.net.nz/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=c0cea460-9352-4ac1-9331-7c23cb5de287</wfw:commentRss>
      <slash:comments>3</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
The Live Mesh process, moe.exe,  is hammering my CPU.  The screenshot below
shows this – an average of 51%!  Moe.exe’s usage is the yellow line on the CPU
graph.  You can also see that even though it is hammering the CPU there is no
moe.exe network traffic.
</p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/WhyisLiveMeshkillingmyProcessor_13434/image_2.png">
            <img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/WhyisLiveMeshkillingmyProcessor_13434/image_thumb.png" width="244" height="100" />
          </a>
        </p>
        <p>
Something tells me moe.exe is about to get killed off…
</p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/WhyisLiveMeshkillingmyProcessor_13434/image_4.png">
            <img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/WhyisLiveMeshkillingmyProcessor_13434/image_thumb_1.png" width="244" height="98" />
          </a>
        </p>
        <p>
That’s better, but I’d rather figure out why this is happening so I can keep Mesh
running.
</p>
        <img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=c0cea460-9352-4ac1-9331-7c23cb5de287" />
      </body>
      <title>Why is Live Mesh killing my Processor?</title>
      <guid isPermaLink="false">http://www.pringle.net.nz/blog/PermaLink,guid,c0cea460-9352-4ac1-9331-7c23cb5de287.aspx</guid>
      <link>http://www.pringle.net.nz/blog/PermaLink,guid,c0cea460-9352-4ac1-9331-7c23cb5de287.aspx</link>
      <pubDate>Fri, 30 Jan 2009 10:55:20 GMT</pubDate>
      <description>&lt;p&gt;
The Live Mesh process, moe.exe,&amp;#160; is hammering my CPU.&amp;#160; The screenshot below
shows this – an average of 51%!&amp;#160; Moe.exe’s usage is the yellow line on the CPU
graph.&amp;#160; You can also see that even though it is hammering the CPU there is no
moe.exe network traffic.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/WhyisLiveMeshkillingmyProcessor_13434/image_2.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/WhyisLiveMeshkillingmyProcessor_13434/image_thumb.png" width="244" height="100" /&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
Something tells me moe.exe is about to get killed off…
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/WhyisLiveMeshkillingmyProcessor_13434/image_4.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/WhyisLiveMeshkillingmyProcessor_13434/image_thumb_1.png" width="244" height="98" /&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
That’s better, but I’d rather figure out why this is happening so I can keep Mesh
running.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=c0cea460-9352-4ac1-9331-7c23cb5de287" /&gt;</description>
      <comments>http://www.pringle.net.nz/blog/CommentView,guid,c0cea460-9352-4ac1-9331-7c23cb5de287.aspx</comments>
      <category>Connectivity</category>
      <category>General</category>
      <category>Live Mesh</category>
    </item>
    <item>
      <trackback:ping>http://www.pringle.net.nz/blog/Trackback.aspx?guid=e31cf71e-09c3-417f-b73e-d68180aa2276</trackback:ping>
      <pingback:server>http://www.pringle.net.nz/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.pringle.net.nz/blog/PermaLink,guid,e31cf71e-09c3-417f-b73e-d68180aa2276.aspx</pingback:target>
      <dc:creator>Craig Pringle</dc:creator>
      <wfw:comment>http://www.pringle.net.nz/blog/CommentView,guid,e31cf71e-09c3-417f-b73e-d68180aa2276.aspx</wfw:comment>
      <wfw:commentRss>http://www.pringle.net.nz/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=e31cf71e-09c3-417f-b73e-d68180aa2276</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Until the other day I had avoided <a href="http://www.twitter.com" target="_blank">Twitter</a>. 
I didn’t see the point.  I didn’t understand where it fit in the already crowded
and vastly overworked traffic jam that is my attention span.  
</p>
        <p>
What happened the other day to change that?  It’s quite simple really – I was
bored and I had a couple of minutes to fill.  I jumped over to Twitter and created
an account.  I am now <a href="http://www.twitter.com/thegoodcraig" target="_blank">thegoodcraig
on Twitter</a>.  
</p>
        <p>
So why was I wrong about Twitter?  I thought it added no value to the tools I
use to manage my social network now.  <a href="http://messenger.live.com/" target="_blank">Live
Messenger</a>, <a href="http://www.skype.com" target="_blank">Skype</a>, email, <a href="http://www.linkedin.com" target="_blank">LinkedIn</a>,
a plethora of RSS feeds and my own blogs (aka the blogoshpere) are pieces of this
puzzle.  What could Twitter add?
</p>
        <p>
So far I have only started following a handful of people but I have already learned
there is value there.  Twitter brings back some of the conversation that use
to be in the blogosphere, but was drowned out by comment and trackback/pingback spam.  
</p>
        <p>
The asynchronous of Tweets lets you keep in touch with people you know well in a way
that can be quite challenging with real-time tools like Windows Live Messenger and
Skype in a global community.  Because tweets tend to be more personal than blog
posts the interaction is on a different level as well.
</p>
        <p>
The pull nature of the content also makes it easier to keep tabs when you don’t have
time to reach out and keep in touch.  Twitter does add value.  I was wrong.
</p>
        <img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=e31cf71e-09c3-417f-b73e-d68180aa2276" />
      </body>
      <title>OK &amp;ndash; I was wrong about Twitter</title>
      <guid isPermaLink="false">http://www.pringle.net.nz/blog/PermaLink,guid,e31cf71e-09c3-417f-b73e-d68180aa2276.aspx</guid>
      <link>http://www.pringle.net.nz/blog/PermaLink,guid,e31cf71e-09c3-417f-b73e-d68180aa2276.aspx</link>
      <pubDate>Tue, 27 Jan 2009 11:46:09 GMT</pubDate>
      <description>&lt;p&gt;
Until the other day I had avoided &lt;a href="http://www.twitter.com" target="_blank"&gt;Twitter&lt;/a&gt;.&amp;#160;
I didn’t see the point.&amp;#160; I didn’t understand where it fit in the already crowded
and vastly overworked traffic jam that is my attention span.&amp;#160; 
&lt;/p&gt;
&lt;p&gt;
What happened the other day to change that?&amp;#160; It’s quite simple really – I was
bored and I had a couple of minutes to fill.&amp;#160; I jumped over to Twitter and created
an account.&amp;#160; I am now &lt;a href="http://www.twitter.com/thegoodcraig" target="_blank"&gt;thegoodcraig
on Twitter&lt;/a&gt;.&amp;#160; 
&lt;/p&gt;
&lt;p&gt;
So why was I wrong about Twitter?&amp;#160; I thought it added no value to the tools I
use to manage my social network now.&amp;#160; &lt;a href="http://messenger.live.com/" target="_blank"&gt;Live
Messenger&lt;/a&gt;, &lt;a href="http://www.skype.com" target="_blank"&gt;Skype&lt;/a&gt;, email, &lt;a href="http://www.linkedin.com" target="_blank"&gt;LinkedIn&lt;/a&gt;,
a plethora of RSS feeds and my own blogs (aka the blogoshpere) are pieces of this
puzzle.&amp;#160; What could Twitter add?
&lt;/p&gt;
&lt;p&gt;
So far I have only started following a handful of people but I have already learned
there is value there.&amp;#160; Twitter brings back some of the conversation that use
to be in the blogosphere, but was drowned out by comment and trackback/pingback spam.&amp;#160; 
&lt;/p&gt;
&lt;p&gt;
The asynchronous of Tweets lets you keep in touch with people you know well in a way
that can be quite challenging with real-time tools like Windows Live Messenger and
Skype in a global community.&amp;#160; Because tweets tend to be more personal than blog
posts the interaction is on a different level as well.
&lt;/p&gt;
&lt;p&gt;
The pull nature of the content also makes it easier to keep tabs when you don’t have
time to reach out and keep in touch.&amp;#160; Twitter does add value.&amp;#160; I was wrong.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=e31cf71e-09c3-417f-b73e-d68180aa2276" /&gt;</description>
      <comments>http://www.pringle.net.nz/blog/CommentView,guid,e31cf71e-09c3-417f-b73e-d68180aa2276.aspx</comments>
      <category>Connectivity</category>
      <category>Social Networking</category>
    </item>
    <item>
      <trackback:ping>http://www.pringle.net.nz/blog/Trackback.aspx?guid=c32db2d8-1299-4bab-97b8-397c26549d56</trackback:ping>
      <pingback:server>http://www.pringle.net.nz/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.pringle.net.nz/blog/PermaLink,guid,c32db2d8-1299-4bab-97b8-397c26549d56.aspx</pingback:target>
      <dc:creator>Craig Pringle</dc:creator>
      <wfw:comment>http://www.pringle.net.nz/blog/CommentView,guid,c32db2d8-1299-4bab-97b8-397c26549d56.aspx</wfw:comment>
      <wfw:commentRss>http://www.pringle.net.nz/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=c32db2d8-1299-4bab-97b8-397c26549d56</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
I'm not Australian - but I live in Australia and as such I am an Australian Internet
User.  I have to agree with my friend Chris on this one...
</p>
        <blockquote>
          <p>
I am a little surprised that there has not been more noise made about this.. thought
I would do my bit as I am a totally against internet censorship..
</p>
          <p>
The Australian Federal Government is pushing forward with a plan to force ISPs to
censor the Internet for all Australians. 
</p>
        </blockquote>
        <p>
Like Chris I am totally against censorship.  Apart from squashing my civil liberteies,
this is a hairbrained scheme at best and won't work...
</p>
        <a href="http://nocleanfeed.com">
          <img border="0" alt="No Clean Feed - Stop Internet Censorship in Australia" src="http://nocleanfeed.com/nocensorship.gif" width="180" height="60" />
        </a>
        <img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=c32db2d8-1299-4bab-97b8-397c26549d56" />
      </body>
      <title>Say No Clean Feed Australia</title>
      <guid isPermaLink="false">http://www.pringle.net.nz/blog/PermaLink,guid,c32db2d8-1299-4bab-97b8-397c26549d56.aspx</guid>
      <link>http://www.pringle.net.nz/blog/PermaLink,guid,c32db2d8-1299-4bab-97b8-397c26549d56.aspx</link>
      <pubDate>Sat, 03 Jan 2009 08:26:39 GMT</pubDate>
      <description>&lt;p&gt;
I'm not Australian - but I live in Australia and as such I am an Australian Internet
User.&amp;nbsp; I have to agree with my friend Chris on this one...
&lt;/p&gt;
&lt;blockquote&gt; 
&lt;p&gt;
I am a little surprised that there has not been more noise made about this.. thought
I would do my bit as I am a totally against internet censorship..
&lt;/p&gt;
&lt;p&gt;
The Australian Federal Government is pushing forward with a plan to force ISPs to
censor the Internet for all Australians. 
&lt;/p&gt;
&lt;/blockquote&gt; 
&lt;p&gt;
Like Chris I am totally against censorship.&amp;nbsp; Apart from squashing my civil liberteies,
this is a hairbrained scheme at best and won't work...
&lt;/p&gt;
&lt;a href="http://nocleanfeed.com"&gt;&lt;img border="0" alt="No Clean Feed - Stop Internet Censorship in Australia" src="http://nocleanfeed.com/nocensorship.gif" width="180" height="60"&gt; &lt;/a&gt;&lt;img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=c32db2d8-1299-4bab-97b8-397c26549d56" /&gt;</description>
      <comments>http://www.pringle.net.nz/blog/CommentView,guid,c32db2d8-1299-4bab-97b8-397c26549d56.aspx</comments>
      <category>Connectivity</category>
      <category>General</category>
    </item>
    <item>
      <trackback:ping>http://www.pringle.net.nz/blog/Trackback.aspx?guid=96d584ad-bac6-423d-8496-06c21553d85a</trackback:ping>
      <pingback:server>http://www.pringle.net.nz/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.pringle.net.nz/blog/PermaLink,guid,96d584ad-bac6-423d-8496-06c21553d85a.aspx</pingback:target>
      <dc:creator>Craig Pringle</dc:creator>
      <wfw:comment>http://www.pringle.net.nz/blog/CommentView,guid,96d584ad-bac6-423d-8496-06c21553d85a.aspx</wfw:comment>
      <wfw:commentRss>http://www.pringle.net.nz/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=96d584ad-bac6-423d-8496-06c21553d85a</wfw:commentRss>
      <slash:comments>1</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Yesterday I blogged about the revamped Display Settings in Windows 7 and how getting
to this frequently accessed settings page was a bit easier in Windows 7 than it was
in Vista.  Today that theme continues with something that is near and dear to
mobile PC users' hearts - connecting to a network.
</p>
        <p>
Like Vista, Windows 7 shows network connectivity status with a single icon in the
system tray.  The star on the tray icon shows that connections are available.
</p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/NetworkingMadeEasyWindows7Style_13897/image_4.png">
            <img style="border-bottom: 0px; border-left: 0px; border-top: 0px; border-right: 0px" border="0" alt="image" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/NetworkingMadeEasyWindows7Style_13897/image_thumb_1.png" width="205" height="139" />
          </a>
        </p>
        <p>
Left clicking on the icon gives you a pop-up list of your dial-up and VPN connections,
any manually configured wireless networks (regardless of availability) and any currently
available wi-fi networks.  The list appears just above the system tray, rather
than in a full window in the middle of the screen.  Next to each wireless network
is an indicator of the current signal strength. Clicking on a network item in the
list causes that item to expand slightly and display a Connect button (or a disconnect
button if you are already connected to that network).
</p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/NetworkingMadeEasyWindows7Style_13897/image_2.png">
            <img style="border-bottom: 0px; border-left: 0px; border-top: 0px; border-right: 0px" border="0" alt="image" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/NetworkingMadeEasyWindows7Style_13897/image_thumb.png" width="220" height="244" />
          </a>
        </p>
        <p>
When you click on this connect button you get a progress dialogue until it connects.  
</p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/NetworkingMadeEasyWindows7Style_13897/image_8.png">
            <img style="border-bottom: 0px; border-left: 0px; border-top: 0px; border-right: 0px" border="0" alt="image" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/NetworkingMadeEasyWindows7Style_13897/image_thumb_3.png" width="244" height="179" />
          </a>
        </p>
        <p>
Once connected to a wireless network the system tray icon displays the green bars
indicating signal strength.  
</p>
        <p>
The connection process is just that little bit cleaner and more efficient than it
was in Vista.  The process in Vista was to right click the network icon in the
system tray and select "connect to a network".  This launches a new
window with a list of networks.  You then select the network you want and click
connect.  Not only is this more steps than in Windows 7 but it is less efficient
well.  As I said in Windows 7 the list of networks appears just above the system
tray.  In Vista the list of networks opens in a new window in the centre of the
screen it also takes more movement of the mouse or pen to connect to a network.
</p>
        <p>
Overall the process of connecting to a network is much simpler in Windows 7, making
a better mobile experience.
</p>
        <img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=96d584ad-bac6-423d-8496-06c21553d85a" />
      </body>
      <title>Networking Made Easy, Windows 7 Style</title>
      <guid isPermaLink="false">http://www.pringle.net.nz/blog/PermaLink,guid,96d584ad-bac6-423d-8496-06c21553d85a.aspx</guid>
      <link>http://www.pringle.net.nz/blog/PermaLink,guid,96d584ad-bac6-423d-8496-06c21553d85a.aspx</link>
      <pubDate>Wed, 19 Nov 2008 11:14:04 GMT</pubDate>
      <description>&lt;p&gt;
Yesterday I blogged about the revamped Display Settings in Windows 7 and how getting
to this frequently accessed settings page was a bit easier in Windows 7 than it was
in Vista.&amp;#160; Today that theme continues with something that is near and dear to
mobile PC users' hearts - connecting to a network.
&lt;/p&gt;
&lt;p&gt;
Like Vista, Windows 7 shows network connectivity status with a single icon in the
system tray.&amp;#160; The star on the tray icon shows that connections are available.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/NetworkingMadeEasyWindows7Style_13897/image_4.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; border-top: 0px; border-right: 0px" border="0" alt="image" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/NetworkingMadeEasyWindows7Style_13897/image_thumb_1.png" width="205" height="139" /&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
Left clicking on the icon gives you a pop-up list of your dial-up and VPN connections,
any manually configured wireless networks (regardless of availability) and any currently
available wi-fi networks.&amp;#160; The list appears just above the system tray, rather
than in a full window in the middle of the screen.&amp;#160; Next to each wireless network
is an indicator of the current signal strength. Clicking on a network item in the
list causes that item to expand slightly and display a Connect button (or a disconnect
button if you are already connected to that network).
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/NetworkingMadeEasyWindows7Style_13897/image_2.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; border-top: 0px; border-right: 0px" border="0" alt="image" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/NetworkingMadeEasyWindows7Style_13897/image_thumb.png" width="220" height="244" /&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
When you click on this connect button you get a progress dialogue until it connects.&amp;#160; 
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/NetworkingMadeEasyWindows7Style_13897/image_8.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; border-top: 0px; border-right: 0px" border="0" alt="image" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/NetworkingMadeEasyWindows7Style_13897/image_thumb_3.png" width="244" height="179" /&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
Once connected to a wireless network the system tray icon displays the green bars
indicating signal strength.&amp;#160; 
&lt;/p&gt;
&lt;p&gt;
The connection process is just that little bit cleaner and more efficient than it
was in Vista.&amp;#160; The process in Vista was to right click the network icon in the
system tray and select &amp;quot;connect to a network&amp;quot;.&amp;#160; This launches a new
window with a list of networks.&amp;#160; You then select the network you want and click
connect.&amp;#160; Not only is this more steps than in Windows 7 but it is less efficient
well.&amp;#160; As I said in Windows 7 the list of networks appears just above the system
tray.&amp;#160; In Vista the list of networks opens in a new window in the centre of the
screen it also takes more movement of the mouse or pen to connect to a network.
&lt;/p&gt;
&lt;p&gt;
Overall the process of connecting to a network is much simpler in Windows 7, making
a better mobile experience.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=96d584ad-bac6-423d-8496-06c21553d85a" /&gt;</description>
      <comments>http://www.pringle.net.nz/blog/CommentView,guid,96d584ad-bac6-423d-8496-06c21553d85a.aspx</comments>
      <category>Connectivity</category>
      <category>TabletPC</category>
      <category>Windows 7</category>
    </item>
    <item>
      <trackback:ping>http://www.pringle.net.nz/blog/Trackback.aspx?guid=5b74a2f3-7ac0-485e-9741-84e180926417</trackback:ping>
      <pingback:server>http://www.pringle.net.nz/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.pringle.net.nz/blog/PermaLink,guid,5b74a2f3-7ac0-485e-9741-84e180926417.aspx</pingback:target>
      <dc:creator>Craig Pringle</dc:creator>
      <wfw:comment>http://www.pringle.net.nz/blog/CommentView,guid,5b74a2f3-7ac0-485e-9741-84e180926417.aspx</wfw:comment>
      <wfw:commentRss>http://www.pringle.net.nz/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=5b74a2f3-7ac0-485e-9741-84e180926417</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Kevin over at jkontherun points out that <a title="you can send a video" href="http://feeds.feedburner.com/~r/jkOnTheRun/~3/305366608/send-subscribe.html">you
can send a video</a> (and presumably audio) podcasts from one Zune to another and
recipient can even subscribe on the device.
</p>
        <blockquote>
          <p>
            <a href="http://www.mobilecasternews.com/2008/06/wireless-sharing-of-video-podcasts-in.html">Rob
Greenlee figured out that video podcasts can be sent over WiFi</a> from Zune to Zune
using the sharing functionality built into the Zune 2.5 firmware. Here's the more
important function in my mind: not only can you share that video 'cast with a Zune-mate,
but <strong>he or she can then initiate a subscription to the podcast directly on
their Zune</strong>. They just need to hold down the middle Zune button while the
video podcast is playing and they'll see the "Subscribe" option appear.
Next time they sync their Zune with a host PC running the Zune software, the new subscription
will be added to their podcasts. Nice feature!
</p>
        </blockquote>
        <p>
Very cool feature.  No if only I can find another person in Australia with a
Zune I can try this out :)  
</p>
        <img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=5b74a2f3-7ac0-485e-9741-84e180926417" />
      </body>
      <title>Share and subscribe to video podcasts over WiFi with Zune 2.5</title>
      <guid isPermaLink="false">http://www.pringle.net.nz/blog/PermaLink,guid,5b74a2f3-7ac0-485e-9741-84e180926417.aspx</guid>
      <link>http://www.pringle.net.nz/blog/PermaLink,guid,5b74a2f3-7ac0-485e-9741-84e180926417.aspx</link>
      <pubDate>Tue, 10 Jun 2008 22:15:59 GMT</pubDate>
      <description>&lt;p&gt;
Kevin over at jkontherun points out that &lt;a title="you can send a video" href="http://feeds.feedburner.com/~r/jkOnTheRun/~3/305366608/send-subscribe.html"&gt;you
can send a video&lt;/a&gt; (and presumably audio) podcasts from one Zune to another and
recipient can even subscribe on the device.
&lt;/p&gt;
&lt;blockquote&gt; 
&lt;p&gt;
&lt;a href="http://www.mobilecasternews.com/2008/06/wireless-sharing-of-video-podcasts-in.html"&gt;Rob
Greenlee figured out that video podcasts can be sent over WiFi&lt;/a&gt; from Zune to Zune
using the sharing functionality built into the Zune 2.5 firmware. Here's the more
important function in my mind: not only can you share that video 'cast with a Zune-mate,
but &lt;strong&gt;he or she can then initiate a subscription to the podcast directly on
their Zune&lt;/strong&gt;. They just need to hold down the middle Zune button while the
video podcast is playing and they'll see the &amp;quot;Subscribe&amp;quot; option appear.
Next time they sync their Zune with a host PC running the Zune software, the new subscription
will be added to their podcasts. Nice feature!
&lt;/p&gt;
&lt;/blockquote&gt; 
&lt;p&gt;
Very cool feature.&amp;#160; No if only I can find another person in Australia with a
Zune I can try this out :)&amp;#160; 
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=5b74a2f3-7ac0-485e-9741-84e180926417" /&gt;</description>
      <comments>http://www.pringle.net.nz/blog/CommentView,guid,5b74a2f3-7ac0-485e-9741-84e180926417.aspx</comments>
      <category>Connectivity</category>
      <category>Zune</category>
    </item>
    <item>
      <trackback:ping>http://www.pringle.net.nz/blog/Trackback.aspx?guid=091e03df-5f48-407a-bf53-faacd82db802</trackback:ping>
      <pingback:server>http://www.pringle.net.nz/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.pringle.net.nz/blog/PermaLink,guid,091e03df-5f48-407a-bf53-faacd82db802.aspx</pingback:target>
      <dc:creator>Craig Pringle</dc:creator>
      <wfw:comment>http://www.pringle.net.nz/blog/CommentView,guid,091e03df-5f48-407a-bf53-faacd82db802.aspx</wfw:comment>
      <wfw:commentRss>http://www.pringle.net.nz/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=091e03df-5f48-407a-bf53-faacd82db802</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
At CeBit I'll be experimenting with Windows Mobile blogging using <a href="http://www.kevdaly.co.nz">Kevin
Daly's</a> new version of his Windows Mobile blogging app <a href="http://www.kevdaly.co.nz/Software/Blogging/Diarist.aspx">Dairist
2</a>.
</p>
        <p>
The application supports inserting images, which are uploaded to your blog on the
fly straight from the device.  to make the process a little more seamless I have
configured the camera on my HTC Tytn II to capture at 240x320.  I then just need
to rotate the image and insert it into a post and click publish.  Very cool. 
Thanks to Kevin for this great app.
</p>
        <img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=091e03df-5f48-407a-bf53-faacd82db802" />
      </body>
      <title>WM MoBlogging with Diarist</title>
      <guid isPermaLink="false">http://www.pringle.net.nz/blog/PermaLink,guid,091e03df-5f48-407a-bf53-faacd82db802.aspx</guid>
      <link>http://www.pringle.net.nz/blog/PermaLink,guid,091e03df-5f48-407a-bf53-faacd82db802.aspx</link>
      <pubDate>Wed, 21 May 2008 02:05:34 GMT</pubDate>
      <description>&lt;p&gt;
At CeBit I'll be experimenting with Windows Mobile blogging using &lt;a href="http://www.kevdaly.co.nz"&gt;Kevin
Daly's&lt;/a&gt; new version of his Windows Mobile blogging app &lt;a href="http://www.kevdaly.co.nz/Software/Blogging/Diarist.aspx"&gt;Dairist
2&lt;/a&gt;.
&lt;/p&gt;
&lt;p&gt;
The application supports inserting images, which are uploaded to your blog on the
fly straight from the device.&amp;#160; to make the process a little more seamless I have
configured the camera on my HTC Tytn II to capture at 240x320.&amp;#160; I then just need
to rotate the image and insert it into a post and click publish.&amp;#160; Very cool.&amp;#160;
Thanks to Kevin for this great app.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=091e03df-5f48-407a-bf53-faacd82db802" /&gt;</description>
      <comments>http://www.pringle.net.nz/blog/CommentView,guid,091e03df-5f48-407a-bf53-faacd82db802.aspx</comments>
      <category>Connectivity</category>
      <category>General</category>
    </item>
    <item>
      <trackback:ping>http://www.pringle.net.nz/blog/Trackback.aspx?guid=ab3c6c18-ea96-416f-be8f-0c4ec0083859</trackback:ping>
      <pingback:server>http://www.pringle.net.nz/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.pringle.net.nz/blog/PermaLink,guid,ab3c6c18-ea96-416f-be8f-0c4ec0083859.aspx</pingback:target>
      <dc:creator>Craig Pringle</dc:creator>
      <wfw:comment>http://www.pringle.net.nz/blog/CommentView,guid,ab3c6c18-ea96-416f-be8f-0c4ec0083859.aspx</wfw:comment>
      <wfw:commentRss>http://www.pringle.net.nz/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=ab3c6c18-ea96-416f-be8f-0c4ec0083859</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
I previously reviewed the <a href="http://www.pringle.net.nz/blog/PermaLink,guid,028c1874-a9d8-4250-b5f5-ccaf96da5845.aspx">Jabra
JX10 headset</a> - which I loved before.  However I have to say I am now blown
away.
</p>
        <p>
I left my JX10 in my jeans pocket and it went through the wash.  Easy enough
to do because the device is so small and light that it could easily be missed when
checking your pockets.
</p>
        <p>
Incredibly the headset still works after it's submarine adventure.  This completely
floored me.  This is a truly robust little device and I am more impressed than
ever.
</p>
        <img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=ab3c6c18-ea96-416f-be8f-0c4ec0083859" />
      </body>
      <title>Jabra - I am very impressed</title>
      <guid isPermaLink="false">http://www.pringle.net.nz/blog/PermaLink,guid,ab3c6c18-ea96-416f-be8f-0c4ec0083859.aspx</guid>
      <link>http://www.pringle.net.nz/blog/PermaLink,guid,ab3c6c18-ea96-416f-be8f-0c4ec0083859.aspx</link>
      <pubDate>Wed, 06 Feb 2008 10:26:43 GMT</pubDate>
      <description>&lt;p&gt;
I previously reviewed the &lt;a href="http://www.pringle.net.nz/blog/PermaLink,guid,028c1874-a9d8-4250-b5f5-ccaf96da5845.aspx"&gt;Jabra
JX10 headset&lt;/a&gt; - which I loved before.&amp;nbsp; However I have to say I am now blown
away.
&lt;/p&gt;
&lt;p&gt;
I left my JX10 in my jeans pocket and it went through the wash.&amp;nbsp; Easy enough
to do because the device is so small and light that it could easily be missed when
checking your pockets.
&lt;/p&gt;
&lt;p&gt;
Incredibly the headset still works after it's submarine adventure.&amp;nbsp; This completely
floored me.&amp;nbsp; This is a truly robust little device and I am more impressed than
ever.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=ab3c6c18-ea96-416f-be8f-0c4ec0083859" /&gt;</description>
      <comments>http://www.pringle.net.nz/blog/CommentView,guid,ab3c6c18-ea96-416f-be8f-0c4ec0083859.aspx</comments>
      <category>Connectivity</category>
      <category>General</category>
    </item>
    <item>
      <trackback:ping>http://www.pringle.net.nz/blog/Trackback.aspx?guid=028c1874-a9d8-4250-b5f5-ccaf96da5845</trackback:ping>
      <pingback:server>http://www.pringle.net.nz/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.pringle.net.nz/blog/PermaLink,guid,028c1874-a9d8-4250-b5f5-ccaf96da5845.aspx</pingback:target>
      <dc:creator>Craig Pringle</dc:creator>
      <wfw:comment>http://www.pringle.net.nz/blog/CommentView,guid,028c1874-a9d8-4250-b5f5-ccaf96da5845.aspx</wfw:comment>
      <wfw:commentRss>http://www.pringle.net.nz/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=028c1874-a9d8-4250-b5f5-ccaf96da5845</wfw:commentRss>
      <slash:comments>2</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
The folks at Jabra have been good to me.  They sent me a JX10 headset to evaluate. 
This is a great little headset, but it is soooo much more as well.
</p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/JabraJX10BluetoothHeadset_149B8/HPIM1267.jpg">
            <img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="220" alt="HPIM1267" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/JabraJX10BluetoothHeadset_149B8/HPIM1267_thumb.jpg" width="244" border="0" />
          </a>
        </p>
        <p>
The headset itself is small and light, but very easy to use.  The answer/hang-up
button is located in the indent on the bottom of the headset.  There is no button
in the top indent - it is just there to make it easy to find and press the button. 
There are volume controls on the back of the ear piece, as is the USB connector for
charging.
</p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/JabraJX10BluetoothHeadset_149B8/HPIM1268.jpg">
            <img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="244" alt="HPIM1268" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/JabraJX10BluetoothHeadset_149B8/HPIM1268_thumb.jpg" width="239" border="0" />
          </a>
        </p>
        <p>
I've paired this with my Dopod C710 Smartphone and it works a treat - but as I said
before there is so much more to this baby.  Lets take a look at what is in the
box.
</p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/JabraJX10BluetoothHeadset_149B8/HPIM1264.jpg">
            <img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="135" alt="HPIM1264" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/JabraJX10BluetoothHeadset_149B8/HPIM1264_thumb.jpg" width="244" border="0" />
          </a> 
</p>
        <p>
In addition the the usual assortments of cables and chargers that you find with every
Bluetooth headset is something called "the hub".  That is this oblong
box on the left.  This enables you to use the JX10 headset with your desk phone
as well as your mobile phone!  How cool is that?
</p>
        <p>
Looking closer at the hub...
</p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/JabraJX10BluetoothHeadset_149B8/HPIM1274.jpg">
            <img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="192" alt="HPIM1274" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/JabraJX10BluetoothHeadset_149B8/HPIM1274_thumb.jpg" width="244" border="0" />
          </a>
        </p>
        <p>
The top cover comes off and reveals controls that let you tune the headset to the
desk phone and adjust the headset volume.
</p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/JabraJX10BluetoothHeadset_149B8/HPIM1276.jpg">
            <img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="83" alt="HPIM1276" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/JabraJX10BluetoothHeadset_149B8/HPIM1276_thumb.jpg" width="244" border="0" />
          </a>
        </p>
        <p>
Depending on your phone you may not use all the ports on the front.  If your
phone has a headset port you just use one cable to connect the hub to the phone. 
If it does not then you plug the handset into the hub and the hub into the phone -
you can use it either way.  To make or answer a call on the desk phone you hit
the button on the headset and then either hit the headset button on the phone (if
you have one) or lift the receiver if you don't.  To answer a call on your mobile
phone you just press the answer button.  You can also redial and voice dial from
the headset if your mobile if you device supports those functions.  One little
gotcha is that when you finish a call on your desk phone you need to remember to hit
the headset button on the phone <em>and</em> the hang up button on the headset. 
You get use to this soon enough.
</p>
        <p>
The cable you need to connect the hub to your desk phone is, of course, included.
</p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/JabraJX10BluetoothHeadset_149B8/HPIM1273.jpg">
            <img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="218" alt="HPIM1273" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/JabraJX10BluetoothHeadset_149B8/HPIM1273_thumb.jpg" width="244" border="0" />
          </a>
        </p>
        <p>
Also included is a charger that can either plug in directly to the headset or into
the included desktop stand.
</p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/JabraJX10BluetoothHeadset_149B8/HPIM1270.jpg">
            <img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="230" alt="HPIM1270" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/JabraJX10BluetoothHeadset_149B8/HPIM1270_thumb.jpg" width="244" border="0" />
          </a>
        </p>
        <p>
Another little gotcha here is that you need to make sure the headset is off when you
charge it (as stated in the manual).  I have found that if you charge it while
the headset is switched on then the next time you try to answer the desk phone it
does not bring the audio to the headset.  It does not really matter as the battery
life is spectacular so there is no need to have the headset sitting on the charger
all day.
</p>
        <p>
There is also a USB cable so that you can charge your headset when are on the go. 
I love the way that the cable actually has a little "Jabra" label on the
cable so that you can find the right cable in your kit bag with ease.  That is
such a simple and practical little touch, and they are often the best.  
</p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/JabraJX10BluetoothHeadset_149B8/HPIM1272.jpg">
            <img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="187" alt="HPIM1272" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/JabraJX10BluetoothHeadset_149B8/HPIM1272_thumb.jpg" width="244" border="0" />
          </a>
        </p>
        <p>
All told I am very impressed with this little unit - it is small, functional, stylish
and very innovative.  Best of all - it just works!
</p>
        <img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=028c1874-a9d8-4250-b5f5-ccaf96da5845" />
      </body>
      <title>Jabra JX10 Bluetooth Headset</title>
      <guid isPermaLink="false">http://www.pringle.net.nz/blog/PermaLink,guid,028c1874-a9d8-4250-b5f5-ccaf96da5845.aspx</guid>
      <link>http://www.pringle.net.nz/blog/PermaLink,guid,028c1874-a9d8-4250-b5f5-ccaf96da5845.aspx</link>
      <pubDate>Wed, 09 Jan 2008 12:27:45 GMT</pubDate>
      <description>&lt;p&gt;
The folks at Jabra have been good to me.&amp;#160; They sent me a JX10 headset to evaluate.&amp;#160;
This is a great little headset, but it is soooo much more as well.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/JabraJX10BluetoothHeadset_149B8/HPIM1267.jpg"&gt;&lt;img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="220" alt="HPIM1267" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/JabraJX10BluetoothHeadset_149B8/HPIM1267_thumb.jpg" width="244" border="0" /&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
The headset itself is small and light, but very easy to use.&amp;#160; The answer/hang-up
button is located in the indent on the bottom of the headset.&amp;#160; There is no button
in the top indent - it is just there to make it easy to find and press the button.&amp;#160;
There are volume controls on the back of the ear piece, as is the USB connector for
charging.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/JabraJX10BluetoothHeadset_149B8/HPIM1268.jpg"&gt;&lt;img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="244" alt="HPIM1268" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/JabraJX10BluetoothHeadset_149B8/HPIM1268_thumb.jpg" width="239" border="0" /&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
I've paired this with my Dopod C710 Smartphone and it works a treat - but as I said
before there is so much more to this baby.&amp;#160; Lets take a look at what is in the
box.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/JabraJX10BluetoothHeadset_149B8/HPIM1264.jpg"&gt;&lt;img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="135" alt="HPIM1264" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/JabraJX10BluetoothHeadset_149B8/HPIM1264_thumb.jpg" width="244" border="0" /&gt;&lt;/a&gt;&amp;#160;
&lt;/p&gt;
&lt;p&gt;
In addition the the usual assortments of cables and chargers that you find with every
Bluetooth headset is something called &amp;quot;the hub&amp;quot;.&amp;#160; That is this oblong
box on the left.&amp;#160; This enables you to use the JX10 headset with your desk phone
as well as your mobile phone!&amp;#160; How cool is that?
&lt;/p&gt;
&lt;p&gt;
Looking closer at the hub...
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/JabraJX10BluetoothHeadset_149B8/HPIM1274.jpg"&gt;&lt;img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="192" alt="HPIM1274" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/JabraJX10BluetoothHeadset_149B8/HPIM1274_thumb.jpg" width="244" border="0" /&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
The top cover comes off and reveals controls that let you tune the headset to the
desk phone and adjust the headset volume.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/JabraJX10BluetoothHeadset_149B8/HPIM1276.jpg"&gt;&lt;img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="83" alt="HPIM1276" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/JabraJX10BluetoothHeadset_149B8/HPIM1276_thumb.jpg" width="244" border="0" /&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
Depending on your phone you may not use all the ports on the front.&amp;#160; If your
phone has a headset port you just use one cable to connect the hub to the phone.&amp;#160;
If it does not then you plug the handset into the hub and the hub into the phone -
you can use it either way.&amp;#160; To make or answer a call on the desk phone you hit
the button on the headset and then either hit the headset button on the phone (if
you have one) or lift the receiver if you don't.&amp;#160; To answer a call on your mobile
phone you just press the answer button.&amp;#160; You can also redial and voice dial from
the headset if your mobile if you device supports those functions.&amp;#160; One little
gotcha is that when you finish a call on your desk phone you need to remember to hit
the headset button on the phone &lt;em&gt;and&lt;/em&gt; the hang up button on the headset.&amp;#160;
You get use to this soon enough.
&lt;/p&gt;
&lt;p&gt;
The cable you need to connect the hub to your desk phone is, of course, included.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/JabraJX10BluetoothHeadset_149B8/HPIM1273.jpg"&gt;&lt;img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="218" alt="HPIM1273" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/JabraJX10BluetoothHeadset_149B8/HPIM1273_thumb.jpg" width="244" border="0" /&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
Also included is a charger that can either plug in directly to the headset or into
the included desktop stand.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/JabraJX10BluetoothHeadset_149B8/HPIM1270.jpg"&gt;&lt;img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="230" alt="HPIM1270" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/JabraJX10BluetoothHeadset_149B8/HPIM1270_thumb.jpg" width="244" border="0" /&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
Another little gotcha here is that you need to make sure the headset is off when you
charge it (as stated in the manual).&amp;#160; I have found that if you charge it while
the headset is switched on then the next time you try to answer the desk phone it
does not bring the audio to the headset.&amp;#160; It does not really matter as the battery
life is spectacular so there is no need to have the headset sitting on the charger
all day.
&lt;/p&gt;
&lt;p&gt;
There is also a USB cable so that you can charge your headset when are on the go.&amp;#160;
I love the way that the cable actually has a little &amp;quot;Jabra&amp;quot; label on the
cable so that you can find the right cable in your kit bag with ease.&amp;#160; That is
such a simple and practical little touch, and they are often the best.&amp;#160; 
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/JabraJX10BluetoothHeadset_149B8/HPIM1272.jpg"&gt;&lt;img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="187" alt="HPIM1272" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/JabraJX10BluetoothHeadset_149B8/HPIM1272_thumb.jpg" width="244" border="0" /&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
All told I am very impressed with this little unit - it is small, functional, stylish
and very innovative.&amp;#160; Best of all - it just works!
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=028c1874-a9d8-4250-b5f5-ccaf96da5845" /&gt;</description>
      <comments>http://www.pringle.net.nz/blog/CommentView,guid,028c1874-a9d8-4250-b5f5-ccaf96da5845.aspx</comments>
      <category>Connectivity</category>
      <category>General</category>
    </item>
    <item>
      <trackback:ping>http://www.pringle.net.nz/blog/Trackback.aspx?guid=2df644e9-1321-47de-a27c-6cb89e9e38ee</trackback:ping>
      <pingback:server>http://www.pringle.net.nz/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.pringle.net.nz/blog/PermaLink,guid,2df644e9-1321-47de-a27c-6cb89e9e38ee.aspx</pingback:target>
      <dc:creator>Craig Pringle</dc:creator>
      <wfw:comment>http://www.pringle.net.nz/blog/CommentView,guid,2df644e9-1321-47de-a27c-6cb89e9e38ee.aspx</wfw:comment>
      <wfw:commentRss>http://www.pringle.net.nz/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=2df644e9-1321-47de-a27c-6cb89e9e38ee</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
I've been doing a lot of thinking about the tablet and UMPC form factors lately. 
I have always been a fan of the slate tablet form factor.  For my main machine
I prefer slates.  I currently use a Motion Computing LS800 - which is a real
gem of a machine.  Of my other previous and current tablets (and there have been
a few) the only other one I think as highly of is the venerable HP TC1100.
</p>
        <p>
There have been a number of events of late that have got me thinking about what my
next tablet will be.  
</p>
        <p>
Firstly, <a href="http://www.motioncomputing.com">Motion</a> have announced that they
are <a href="http://www.gottabemobile.com/MotionDiscontinuingTheLS800TabletPC.aspx">discontinuing</a> the <a href="http://www.motioncomputing.com/products/tablet_pc_ls.asp">LS800</a> -
however they have not yet announced a successor.  Will they step up and plug
the gap?  As Warner has <a href="http://www.gottabemobile.com/APleaForBetterInkingOnSmallMobileDevices.aspx">already
pointed out</a> there are very few options for those of us looking for a small form
factor device with a great ink experience.  
</p>
        <p>
The other events that have had me thinking lately are the recent reviews I've done. 
The <a href="http://www.pringle.net.nz/blog/PermaLink,guid,bff632c6-4cf7-437e-bea2-215d629454d6.aspx">Motion
LE1700</a> has re-ignited my love of the larger slate.  That is a great unit. 
A full sized slate with an active digitizer gives you the best inking experience you
will find on a tablet PC.  Generally speaking slates are easier to hold and more
natural to write on when they are being held.  You can comfortably use the device
as you actually move.  That is mobility.  
</p>
        <p>
In addition two UMPCs - namely the <a href="http://www.pringle.net.nz/blog/PermaLink,guid,c41542d1-201f-47b9-8094-70c6a992e1bc.aspx">Fujitsu
U1010</a> and the <a href="http://www.pringle.net.nz/blog/PermaLink,guid,e5fed627-b033-4afc-92ab-91be61ab9684.aspx">HTC
Shift</a> - have convinced me of the need for and utility of a keyboard on the small
touch screen devices.  The ink experience is not good enough for me.  I
would not use a UMPC for extended note taking or data entry.  So if the handwriting
experience is not there - why wouldn't you want some kind of a keyboard for text entry? 
Until that issue is fixed - either by hardware or by software - the original Origami
dream of the super small, super light slate tablet will not be realised.
</p>
        <p>
So where I am leading with this is I think that the ideal device combination for me
on the market today is contrary to the market trends.  For my main machine I
would favour a full sized slate with a good docking solution over a convertible. 
Embedded 3g would be highly desirable.  For a secondary device I would go for
a very small, touch screen convertible.  
</p>
        <p>
Of course mobile devices are by their very nature a very personal choice.  YMMV.
</p>
        <img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=2df644e9-1321-47de-a27c-6cb89e9e38ee" />
      </body>
      <title>Pondering tablet form factors</title>
      <guid isPermaLink="false">http://www.pringle.net.nz/blog/PermaLink,guid,2df644e9-1321-47de-a27c-6cb89e9e38ee.aspx</guid>
      <link>http://www.pringle.net.nz/blog/PermaLink,guid,2df644e9-1321-47de-a27c-6cb89e9e38ee.aspx</link>
      <pubDate>Fri, 07 Dec 2007 12:14:58 GMT</pubDate>
      <description>&lt;p&gt;
I've been doing a lot of thinking about the tablet and UMPC form factors lately.&amp;#160;
I have always been a fan of the slate tablet form factor.&amp;#160; For my main machine
I prefer slates.&amp;#160; I currently use a Motion Computing LS800 - which is a real
gem of a machine.&amp;#160; Of my other previous and current tablets (and there have been
a few) the only other one I think as highly of is the venerable HP TC1100.
&lt;/p&gt;
&lt;p&gt;
There have been a number of events of late that have got me thinking about what my
next tablet will be.&amp;#160; 
&lt;/p&gt;
&lt;p&gt;
Firstly, &lt;a href="http://www.motioncomputing.com"&gt;Motion&lt;/a&gt; have announced that they
are &lt;a href="http://www.gottabemobile.com/MotionDiscontinuingTheLS800TabletPC.aspx"&gt;discontinuing&lt;/a&gt; the &lt;a href="http://www.motioncomputing.com/products/tablet_pc_ls.asp"&gt;LS800&lt;/a&gt; -
however they have not yet announced a successor.&amp;#160; Will they step up and plug
the gap?&amp;#160; As Warner has &lt;a href="http://www.gottabemobile.com/APleaForBetterInkingOnSmallMobileDevices.aspx"&gt;already
pointed out&lt;/a&gt; there are very few options for those of us looking for a small form
factor device with a great ink experience.&amp;#160; 
&lt;/p&gt;
&lt;p&gt;
The other events that have had me thinking lately are the recent reviews I've done.&amp;#160;
The &lt;a href="http://www.pringle.net.nz/blog/PermaLink,guid,bff632c6-4cf7-437e-bea2-215d629454d6.aspx"&gt;Motion
LE1700&lt;/a&gt; has re-ignited my love of the larger slate.&amp;#160; That is a great unit.&amp;#160;
A full sized slate with an active digitizer gives you the best inking experience you
will find on a tablet PC.&amp;#160; Generally speaking slates are easier to hold and more
natural to write on when they are being held.&amp;#160; You can comfortably use the device
as you actually move.&amp;#160; That is mobility.&amp;#160; 
&lt;/p&gt;
&lt;p&gt;
In addition two UMPCs - namely the &lt;a href="http://www.pringle.net.nz/blog/PermaLink,guid,c41542d1-201f-47b9-8094-70c6a992e1bc.aspx"&gt;Fujitsu
U1010&lt;/a&gt; and the &lt;a href="http://www.pringle.net.nz/blog/PermaLink,guid,e5fed627-b033-4afc-92ab-91be61ab9684.aspx"&gt;HTC
Shift&lt;/a&gt; - have convinced me of the need for and utility of a keyboard on the small
touch screen devices.&amp;#160; The ink experience is not good enough for me.&amp;#160; I
would not use a UMPC for extended note taking or data entry.&amp;#160; So if the handwriting
experience is not there - why wouldn't you want some kind of a keyboard for text entry?&amp;#160;
Until that issue is fixed - either by hardware or by software - the original Origami
dream of the super small, super light slate tablet will not be realised.
&lt;/p&gt;
&lt;p&gt;
So where I am leading with this is I think that the ideal device combination for me
on the market today is contrary to the market trends.&amp;#160; For my main machine I
would favour a full sized slate with a good docking solution over a convertible.&amp;#160;
Embedded 3g would be highly desirable.&amp;#160; For a secondary device I would go for
a very small, touch screen convertible.&amp;#160; 
&lt;/p&gt;
&lt;p&gt;
Of course mobile devices are by their very nature a very personal choice.&amp;#160; YMMV.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=2df644e9-1321-47de-a27c-6cb89e9e38ee" /&gt;</description>
      <comments>http://www.pringle.net.nz/blog/CommentView,guid,2df644e9-1321-47de-a27c-6cb89e9e38ee.aspx</comments>
      <category>Connectivity</category>
      <category>General</category>
      <category>TabletPC</category>
    </item>
    <item>
      <trackback:ping>http://www.pringle.net.nz/blog/Trackback.aspx?guid=46fcc9e9-26e8-4c40-b262-58a5366cb587</trackback:ping>
      <pingback:server>http://www.pringle.net.nz/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.pringle.net.nz/blog/PermaLink,guid,46fcc9e9-26e8-4c40-b262-58a5366cb587.aspx</pingback:target>
      <dc:creator>Craig Pringle</dc:creator>
      <wfw:comment>http://www.pringle.net.nz/blog/CommentView,guid,46fcc9e9-26e8-4c40-b262-58a5366cb587.aspx</wfw:comment>
      <wfw:commentRss>http://www.pringle.net.nz/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=46fcc9e9-26e8-4c40-b262-58a5366cb587</wfw:commentRss>
      <slash:comments>8</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
One of the comments on my post about the <a href="http://www.pringle.net.nz/blog/PermaLink,guid,25abbb67-7ed0-45a9-839f-bb10111acd30.aspx">HTC
Shift's two operating systems</a> has led me to a pretty interesting discovery. 
There's a GPS in there!
</p>
        <p>
In the screenshots of the tools in the HTC Debug Tools folder there is an icon called
HTCGPSTool.
</p>
        <p>
          <img src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/TheHTCShiftOperatingSystems_14ADE/debug2_2.png" />
        </p>
        <p>
This led Hugo to ask if there was in fact a GPS in the device.
</p>
        <p>
I had investigated this tool breifly over the weekend but it seemed a pretty basic
tool and I had assumed that it was there to test an external GPS such as a bluetooth
unit.  The comment got my interest up and I had some time on the train on the
way to work, so I decided to investigate further.  
</p>
        <p>
I started up the debugging tool.  There is a dropdown box with Com Ports listed. 
By default it was on COM4.  I clicked on Open and low and behold I started seeing
GPS strings in the output window.  I changed it to a different COM port and clicked
open - and I got an error saying it could not find a GPS device.  Clearly the
tool actually thinks there is a GPS in there.
</p>
        <p>
I swapped back to COM4 and opened the port.  There are a number of tabs that
show GPS information if you have a fix (which I didn't) and another radar display
that shows the satellites that the device can see.  Initially there weren't any
(hey I was on a train) but suddenly I saw one pop up.  It dropped off again a
minute later.  I kept the GPSTool running when I got off the train.  As
soon as I got out of the station and into some fairly open ground I got a satellite
again.  Within 100m I had three more and even (breifly) got a fix.  Not
bad in the middle of the CBD as the valleys between the buildings play hell with a
GPS.  At my desk I can see one satellite - so I recorded a short video of the
tool and clicked through the tabs before I had to give the device back.
</p>
        <div class="wlWriterSmartContent" id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:ae7e96ea-93a4-492c-b849-0bdce83257b9" style="padding-right: 0px; display: inline; padding-left: 0px; padding-bottom: 0px; margin: 0px; padding-top: 0px">
          <div id="1f5b0886-9c4c-476e-8c7e-25bf20d855eb" style="margin: 0px; padding: 0px; display: inline;">
            <div>
              <a href="http://www.youtube.com/watch?v=wOesPtnXP9o" target="_new">
                <img src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/HolyShiftItdoeshaveGPS_E617/videoa1ce34804cf5.jpg" galleryimg="no" onload="var downlevelDiv = document.getElementById('1f5b0886-9c4c-476e-8c7e-25bf20d855eb'); downlevelDiv.innerHTML = &quot;&lt;div&gt;&lt;object width=\&quot;425\&quot; height=\&quot;350\&quot;&gt;&lt;param name=\&quot;movie\&quot; value=\&quot;http://www.youtube.com/v/wOesPtnXP9o\&quot;&gt;&lt;\/param&gt;&lt;param name=\&quot;wmode\&quot; value=\&quot;transparent\&quot;&gt;&lt;\/param&gt;&lt;embed src=\&quot;http://www.youtube.com/v/wOesPtnXP9o\&quot; type=\&quot;application/x-shockwave-flash\&quot; wmode=\&quot;transparent\&quot; width=\&quot;425\&quot; height=\&quot;350\&quot;&gt;&lt;\/embed&gt;&lt;\/object&gt;&lt;\/div&gt;&quot;;" alt="" />
              </a>
            </div>
          </div>
        </div>
        <p>
So it would seem that the device does have a functioning GPS internally that is accessible
inside of the Windows Mobile OS.  There is not, however, any software installed
to actually use the GPS in Windows Mobile.
</p>
        <p>
But - as I mentioned in <a href="http://www.pringle.net.nz/blog/PermaLink,guid,25abbb67-7ed0-45a9-839f-bb10111acd30.aspx">my
previous post</a> is is possible to connect the Windows Mobile OS and the Windows
Vista OS via Windows Mobile Device Centre over a "virtual" USB connection. 
This means that it may be possible to install moving map software such as TomTom onto
the Windows Mobile OS from Vista.
</p>
        <p>
I could not find a way to access the GPS device from the Vista OS, nor could I see
it listed in device manager.
</p>
        <img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=46fcc9e9-26e8-4c40-b262-58a5366cb587" />
      </body>
      <title>Holy Shift! It does have GPS!</title>
      <guid isPermaLink="false">http://www.pringle.net.nz/blog/PermaLink,guid,46fcc9e9-26e8-4c40-b262-58a5366cb587.aspx</guid>
      <link>http://www.pringle.net.nz/blog/PermaLink,guid,46fcc9e9-26e8-4c40-b262-58a5366cb587.aspx</link>
      <pubDate>Mon, 03 Dec 2007 10:03:06 GMT</pubDate>
      <description>&lt;p&gt;
One of the comments on my post about the &lt;a href="http://www.pringle.net.nz/blog/PermaLink,guid,25abbb67-7ed0-45a9-839f-bb10111acd30.aspx"&gt;HTC
Shift's two operating systems&lt;/a&gt; has led me to a pretty interesting discovery.&amp;#160;
There's a GPS in there!
&lt;/p&gt;
&lt;p&gt;
In the screenshots of the tools in the HTC Debug Tools folder there is an icon called
HTCGPSTool.
&lt;/p&gt;
&lt;p&gt;
&lt;img src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/TheHTCShiftOperatingSystems_14ADE/debug2_2.png" /&gt; 
&lt;/p&gt;
&lt;p&gt;
This led Hugo to ask if there was in fact a GPS in the device.
&lt;/p&gt;
&lt;p&gt;
I had investigated this tool breifly over the weekend but it seemed a pretty basic
tool and I had assumed that it was there to test an external GPS such as a bluetooth
unit.&amp;#160; The comment got my interest up and I had some time on the train on the
way to work, so I decided to investigate further.&amp;#160; 
&lt;/p&gt;
&lt;p&gt;
I started up the debugging tool.&amp;#160; There is a dropdown box with Com Ports listed.&amp;#160;
By default it was on COM4.&amp;#160; I clicked on Open and low and behold I started seeing
GPS strings in the output window.&amp;#160; I changed it to a different COM port and clicked
open - and I got an error saying it could not find a GPS device.&amp;#160; Clearly the
tool actually thinks there is a GPS in there.
&lt;/p&gt;
&lt;p&gt;
I swapped back to COM4 and opened the port.&amp;#160; There are a number of tabs that
show GPS information if you have a fix (which I didn't) and another radar display
that shows the satellites that the device can see.&amp;#160; Initially there weren't any
(hey I was on a train) but suddenly I saw one pop up.&amp;#160; It dropped off again a
minute later.&amp;#160; I kept the GPSTool running when I got off the train.&amp;#160; As
soon as I got out of the station and into some fairly open ground I got a satellite
again.&amp;#160; Within 100m I had three more and even (breifly) got a fix.&amp;#160; Not
bad in the middle of the CBD as the valleys between the buildings play hell with a
GPS.&amp;#160; At my desk I can see one satellite - so I recorded a short video of the
tool and clicked through the tabs before I had to give the device back.
&lt;/p&gt;
&lt;div class="wlWriterSmartContent" id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:ae7e96ea-93a4-492c-b849-0bdce83257b9" style="padding-right: 0px; display: inline; padding-left: 0px; padding-bottom: 0px; margin: 0px; padding-top: 0px"&gt;
&lt;div id="1f5b0886-9c4c-476e-8c7e-25bf20d855eb" style="margin: 0px; padding: 0px; display: inline;"&gt;
&lt;div&gt;&lt;a href="http://www.youtube.com/watch?v=wOesPtnXP9o" target="_new"&gt;&lt;img src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/HolyShiftItdoeshaveGPS_E617/videoa1ce34804cf5.jpg" galleryimg="no" onload="var downlevelDiv = document.getElementById('1f5b0886-9c4c-476e-8c7e-25bf20d855eb'); downlevelDiv.innerHTML = &amp;quot;&amp;lt;div&amp;gt;&amp;lt;object width=\&amp;quot;425\&amp;quot; height=\&amp;quot;350\&amp;quot;&amp;gt;&amp;lt;param name=\&amp;quot;movie\&amp;quot; value=\&amp;quot;http://www.youtube.com/v/wOesPtnXP9o\&amp;quot;&amp;gt;&amp;lt;\/param&amp;gt;&amp;lt;param name=\&amp;quot;wmode\&amp;quot; value=\&amp;quot;transparent\&amp;quot;&amp;gt;&amp;lt;\/param&amp;gt;&amp;lt;embed src=\&amp;quot;http://www.youtube.com/v/wOesPtnXP9o\&amp;quot; type=\&amp;quot;application/x-shockwave-flash\&amp;quot; wmode=\&amp;quot;transparent\&amp;quot; width=\&amp;quot;425\&amp;quot; height=\&amp;quot;350\&amp;quot;&amp;gt;&amp;lt;\/embed&amp;gt;&amp;lt;\/object&amp;gt;&amp;lt;\/div&amp;gt;&amp;quot;;" alt=""&gt;&lt;/a&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;
So it would seem that the device does have a functioning GPS internally that is accessible
inside of the Windows Mobile OS.&amp;#160; There is not, however, any software installed
to actually use the GPS in Windows Mobile.
&lt;/p&gt;
&lt;p&gt;
But - as I mentioned in &lt;a href="http://www.pringle.net.nz/blog/PermaLink,guid,25abbb67-7ed0-45a9-839f-bb10111acd30.aspx"&gt;my
previous post&lt;/a&gt; is is possible to connect the Windows Mobile OS and the Windows
Vista OS via Windows Mobile Device Centre over a &amp;quot;virtual&amp;quot; USB connection.&amp;#160;
This means that it may be possible to install moving map software such as TomTom onto
the Windows Mobile OS from Vista.
&lt;/p&gt;
&lt;p&gt;
I could not find a way to access the GPS device from the Vista OS, nor could I see
it listed in device manager.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=46fcc9e9-26e8-4c40-b262-58a5366cb587" /&gt;</description>
      <comments>http://www.pringle.net.nz/blog/CommentView,guid,46fcc9e9-26e8-4c40-b262-58a5366cb587.aspx</comments>
      <category>Connectivity</category>
      <category>TabletPC</category>
      <category>Vista</category>
    </item>
    <item>
      <trackback:ping>http://www.pringle.net.nz/blog/Trackback.aspx?guid=25abbb67-7ed0-45a9-839f-bb10111acd30</trackback:ping>
      <pingback:server>http://www.pringle.net.nz/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.pringle.net.nz/blog/PermaLink,guid,25abbb67-7ed0-45a9-839f-bb10111acd30.aspx</pingback:target>
      <dc:creator>Craig Pringle</dc:creator>
      <wfw:comment>http://www.pringle.net.nz/blog/CommentView,guid,25abbb67-7ed0-45a9-839f-bb10111acd30.aspx</wfw:comment>
      <wfw:commentRss>http://www.pringle.net.nz/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=25abbb67-7ed0-45a9-839f-bb10111acd30</wfw:commentRss>
      <slash:comments>4</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Since HTC announced the Shift there has been some confusion about how the two operating
systems on the device play together.  What can you do in each one?  Do they
talk?
</p>
        <p>
Well I have to preface this whole section by stating that as far as I know the software
on the unit I had to evaluate is <strong>not</strong> the final version that will
be on the devices when they ship.
</p>
        <p>
          <strong>In Windows Mobile...</strong>
        </p>
        <p>
The WM6 installation on the Shift has been stripped down and customized.  It
is important to note that even though the device includes the 3G radio there is no
phone application.  The Shift is not a voice device.  When you access the
WM interface you are presented with a heavily customized Today screen.
</p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/TheHTCShiftOperatingSystems_14ADE/today_2.png">
            <img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="184" alt="today" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/TheHTCShiftOperatingSystems_14ADE/today_thumb.png" width="244" border="0" />
          </a>
        </p>
        <p>
This gives you access to your next couple of appointments, the date, time and calendar. 
There are also buttons to access your full calendar, email, SMS, contacts, weather
information and some settings.
</p>
        <p>
The weather interface is quite nice - cool thunder storms tomorrow :)
</p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/TheHTCShiftOperatingSystems_14ADE/weather1_2.png">
            <img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="184" alt="weather1" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/TheHTCShiftOperatingSystems_14ADE/weather1_thumb.png" width="244" border="0" />
          </a>
        </p>
        <p>
The settings button takes you into an explorer view that gives you access:
</p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/TheHTCShiftOperatingSystems_14ADE/settings1_2.png">
            <img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="184" alt="settings1" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/TheHTCShiftOperatingSystems_14ADE/settings1_thumb.png" width="244" border="0" />
          </a>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/TheHTCShiftOperatingSystems_14ADE/settings2_2.png">
            <img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="184" alt="settings2" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/TheHTCShiftOperatingSystems_14ADE/settings2_thumb.png" width="244" border="0" />
          </a>
        </p>
        <p>
Notice there are a bunch of things that are usually in WM6 that are missing? 
Most of the settings interfaces have been replaced.  Don't expect to add too
many applications either.  There is no programs folder so you would have to launch
them through the file explorer.  And there is not much memory for running applications
either.
</p>
        <p>
The HTC Debug Tools folder in the settings folder gives you a bunch of little utils. 
I don't know if this is going to be the same in the released version.
</p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/TheHTCShiftOperatingSystems_14ADE/debug1_2.png">
            <img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="184" alt="debug1" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/TheHTCShiftOperatingSystems_14ADE/debug1_thumb.png" width="244" border="0" />
          </a>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/TheHTCShiftOperatingSystems_14ADE/debug2_2.png">
            <img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="184" alt="debug2" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/TheHTCShiftOperatingSystems_14ADE/debug2_thumb.png" width="244" border="0" />
          </a>
        </p>
        <p>
The bottom most icon in that - oops name was cut off - is called USBTool.  This
offers a menu with two options - cable in and cable out.  When you select cable
in with Vista running it creates a virtual USB connection between the two personalities
of the HTC Shift.  This allows you to run up Mobile Device Center and explore
the WM OS from Vista.  This makes it easier to set up things like Exchange ActiveSync.
</p>
        <p>
The Windows Mobile OS stays running even when the Vista OS is sleeping or powered
off.  If you configure it to use Direct Push you can receive your Exchange email
even when Vista is off.  If you prefer or if you don't have an email account
with Direct Push, you can use the virtual USB cable described above to sync directly
with the local copy of Outlook in the Vista environment.  Of course in this configuration
you will only see in WM a copy of what is in Vista.  You will not receive new
emails while Vista is not running.
</p>
        <p>
          <strong>In Vista...</strong>
        </p>
        <p>
In Vista there is also a Connection Manager type of application that is called - for
reasons that escape me - The Shag Control!  This is a fairly clean interface
that gives you access to connection management, power management and other settings. 
There is a gem buried in there - here's a tour:
</p>
        <p>
        </p>
        <div class="wlWriterSmartContent" id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:a83ce5f8-9a59-4a66-8e1d-3b1d57a92db3" style="padding-right: 0px; display: inline; padding-left: 0px; padding-bottom: 0px; margin: 0px; padding-top: 0px">
          <div id="dd0b364c-50fc-4352-aeac-0271df11d02a" style="margin: 0px; padding: 0px; display: inline;">
            <div>
              <a href="http://www.youtube.com/watch?v=HrPVKD49wnw" target="_new">
                <img src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/TheHTCShiftOperatingSystems_14ADE/video07e4f0b99e9c.jpg" galleryimg="no" onload="var downlevelDiv = document.getElementById('dd0b364c-50fc-4352-aeac-0271df11d02a'); downlevelDiv.innerHTML = &quot;&lt;div&gt;&lt;object width=\&quot;425\&quot; height=\&quot;350\&quot;&gt;&lt;param name=\&quot;movie\&quot; value=\&quot;http://www.youtube.com/v/HrPVKD49wnw\&quot;&gt;&lt;\/param&gt;&lt;param name=\&quot;wmode\&quot; value=\&quot;transparent\&quot;&gt;&lt;\/param&gt;&lt;embed src=\&quot;http://www.youtube.com/v/HrPVKD49wnw\&quot; type=\&quot;application/x-shockwave-flash\&quot; wmode=\&quot;transparent\&quot; width=\&quot;425\&quot; height=\&quot;350\&quot;&gt;&lt;\/embed&gt;&lt;\/object&gt;&lt;\/div&gt;&quot;;" alt="" />
              </a>
            </div>
          </div>
        </div>
        <p>
          <strong>Opinion</strong>
        </p>
        <p>
Given how stripped down the WM OS is I almost wondered why they bothered doing it
that way.  I'm not saying that it is not useful - far from it - but I would almost
rather that the second OS was implemented as a sideshow host rather than a WM environment. 
You would not be able to do the push email, but you could access the data from the
local instance of Outlook...  and potentially do a bunch of other cool things. 
Food for thought.
</p>
        <img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=25abbb67-7ed0-45a9-839f-bb10111acd30" />
      </body>
      <title>The HTC Shift Operating Systems</title>
      <guid isPermaLink="false">http://www.pringle.net.nz/blog/PermaLink,guid,25abbb67-7ed0-45a9-839f-bb10111acd30.aspx</guid>
      <link>http://www.pringle.net.nz/blog/PermaLink,guid,25abbb67-7ed0-45a9-839f-bb10111acd30.aspx</link>
      <pubDate>Sun, 02 Dec 2007 12:32:17 GMT</pubDate>
      <description>&lt;p&gt;
Since HTC announced the Shift there has been some confusion about how the two operating
systems on the device play together.&amp;nbsp; What can you do in each one?&amp;nbsp; Do they
talk?
&lt;/p&gt;
&lt;p&gt;
Well I have to preface this whole section by stating that as far as I know the software
on the unit I had to evaluate is &lt;strong&gt;not&lt;/strong&gt; the final version that will
be on the devices when they ship.
&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;In Windows Mobile...&lt;/strong&gt;
&lt;/p&gt;
&lt;p&gt;
The WM6 installation on the Shift has been stripped down and customized.&amp;nbsp; It
is important to note that even though the device includes the 3G radio there is no
phone application.&amp;nbsp; The Shift is not a voice device.&amp;nbsp; When you access the
WM interface you are presented with a heavily customized Today screen.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/TheHTCShiftOperatingSystems_14ADE/today_2.png"&gt;&lt;img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="184" alt="today" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/TheHTCShiftOperatingSystems_14ADE/today_thumb.png" width="244" border="0"&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
This gives you access to your next couple of appointments, the date, time and calendar.&amp;nbsp;
There are also buttons to access your full calendar, email, SMS, contacts, weather
information and some settings.
&lt;/p&gt;
&lt;p&gt;
The weather interface is quite nice - cool thunder storms tomorrow :)
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/TheHTCShiftOperatingSystems_14ADE/weather1_2.png"&gt;&lt;img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="184" alt="weather1" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/TheHTCShiftOperatingSystems_14ADE/weather1_thumb.png" width="244" border="0"&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
The settings button takes you into an explorer view that gives you access:
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/TheHTCShiftOperatingSystems_14ADE/settings1_2.png"&gt;&lt;img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="184" alt="settings1" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/TheHTCShiftOperatingSystems_14ADE/settings1_thumb.png" width="244" border="0"&gt;&lt;/a&gt; &lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/TheHTCShiftOperatingSystems_14ADE/settings2_2.png"&gt;&lt;img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="184" alt="settings2" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/TheHTCShiftOperatingSystems_14ADE/settings2_thumb.png" width="244" border="0"&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
Notice there are a bunch of things that are usually in WM6 that are missing?&amp;nbsp;
Most of the settings interfaces have been replaced.&amp;nbsp; Don't expect to add too
many applications either.&amp;nbsp; There is no programs folder so you would have to launch
them through the file explorer.&amp;nbsp; And there is not much memory for running applications
either.
&lt;/p&gt;
&lt;p&gt;
The HTC Debug Tools folder in the settings folder gives you a bunch of little utils.&amp;nbsp;
I don't know if this is going to be the same in the released version.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/TheHTCShiftOperatingSystems_14ADE/debug1_2.png"&gt;&lt;img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="184" alt="debug1" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/TheHTCShiftOperatingSystems_14ADE/debug1_thumb.png" width="244" border="0"&gt;&lt;/a&gt;&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/TheHTCShiftOperatingSystems_14ADE/debug2_2.png"&gt;&lt;img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="184" alt="debug2" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/TheHTCShiftOperatingSystems_14ADE/debug2_thumb.png" width="244" border="0"&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
The bottom most icon in that - oops name was cut off - is called USBTool.&amp;nbsp; This
offers a menu with two options - cable in and cable out.&amp;nbsp; When you select cable
in with Vista running it creates a virtual USB connection between the two personalities
of the HTC Shift.&amp;nbsp; This allows you to run up Mobile Device Center and explore
the WM OS from Vista.&amp;nbsp; This makes it easier to set up things like Exchange ActiveSync.
&lt;/p&gt;
&lt;p&gt;
The Windows Mobile OS stays running even when the Vista OS is sleeping or powered
off.&amp;nbsp; If you configure it to use Direct Push you can receive your Exchange email
even when Vista is off.&amp;nbsp; If you prefer or if you don't have an email account
with Direct Push, you can use the virtual USB cable described above to sync directly
with the local copy of Outlook in the Vista environment.&amp;nbsp; Of course in this configuration
you will only see in WM a copy of what is in Vista.&amp;nbsp; You will not receive new
emails while Vista is not running.
&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;In Vista...&lt;/strong&gt;
&lt;/p&gt;
&lt;p&gt;
In Vista there is also a Connection Manager type of application that is called - for
reasons that escape me - The Shag Control!&amp;nbsp; This is a fairly clean interface
that gives you access to connection management, power management and other settings.&amp;nbsp;
There is a gem buried in there - here's a tour:
&lt;/p&gt;
&lt;p&gt;
&lt;div class="wlWriterSmartContent" id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:a83ce5f8-9a59-4a66-8e1d-3b1d57a92db3" style="padding-right: 0px; display: inline; padding-left: 0px; padding-bottom: 0px; margin: 0px; padding-top: 0px"&gt;
&lt;div id="dd0b364c-50fc-4352-aeac-0271df11d02a" style="margin: 0px; padding: 0px; display: inline;"&gt;
&lt;div&gt;&lt;a href="http://www.youtube.com/watch?v=HrPVKD49wnw" target="_new"&gt;&lt;img src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/TheHTCShiftOperatingSystems_14ADE/video07e4f0b99e9c.jpg" galleryimg="no" onload="var downlevelDiv = document.getElementById('dd0b364c-50fc-4352-aeac-0271df11d02a'); downlevelDiv.innerHTML = &amp;quot;&amp;lt;div&amp;gt;&amp;lt;object width=\&amp;quot;425\&amp;quot; height=\&amp;quot;350\&amp;quot;&amp;gt;&amp;lt;param name=\&amp;quot;movie\&amp;quot; value=\&amp;quot;http://www.youtube.com/v/HrPVKD49wnw\&amp;quot;&amp;gt;&amp;lt;\/param&amp;gt;&amp;lt;param name=\&amp;quot;wmode\&amp;quot; value=\&amp;quot;transparent\&amp;quot;&amp;gt;&amp;lt;\/param&amp;gt;&amp;lt;embed src=\&amp;quot;http://www.youtube.com/v/HrPVKD49wnw\&amp;quot; type=\&amp;quot;application/x-shockwave-flash\&amp;quot; wmode=\&amp;quot;transparent\&amp;quot; width=\&amp;quot;425\&amp;quot; height=\&amp;quot;350\&amp;quot;&amp;gt;&amp;lt;\/embed&amp;gt;&amp;lt;\/object&amp;gt;&amp;lt;\/div&amp;gt;&amp;quot;;" alt=""&gt;&lt;/a&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&gt;
&lt;p&gt;
&lt;strong&gt;Opinion&lt;/strong&gt;
&lt;/p&gt;
&lt;p&gt;
Given how stripped down the WM OS is I almost wondered why they bothered doing it
that way.&amp;nbsp; I'm not saying that it is not useful - far from it - but I would almost
rather that the second OS was implemented as a sideshow host rather than a WM environment.&amp;nbsp;
You would not be able to do the push email, but you could access the data from the
local instance of Outlook...&amp;nbsp; and potentially do a bunch of other cool things.&amp;nbsp;
Food for thought.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=25abbb67-7ed0-45a9-839f-bb10111acd30" /&gt;</description>
      <comments>http://www.pringle.net.nz/blog/CommentView,guid,25abbb67-7ed0-45a9-839f-bb10111acd30.aspx</comments>
      <category>Connectivity</category>
      <category>Outlook</category>
      <category>TabletPC</category>
      <category>Vista</category>
    </item>
    <item>
      <trackback:ping>http://www.pringle.net.nz/blog/Trackback.aspx?guid=ff9b9257-0f16-4d04-b293-80c8061ecb82</trackback:ping>
      <pingback:server>http://www.pringle.net.nz/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.pringle.net.nz/blog/PermaLink,guid,ff9b9257-0f16-4d04-b293-80c8061ecb82.aspx</pingback:target>
      <dc:creator>Craig Pringle</dc:creator>
      <wfw:comment>http://www.pringle.net.nz/blog/CommentView,guid,ff9b9257-0f16-4d04-b293-80c8061ecb82.aspx</wfw:comment>
      <wfw:commentRss>http://www.pringle.net.nz/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=ff9b9257-0f16-4d04-b293-80c8061ecb82</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
In my previous post I gave <a href="http://www.pringle.net.nz/blog/PermaLink,guid,e5fed627-b033-4afc-92ab-91be61ab9684.aspx">a
tour of the HTC Shift</a>.  I promised to explore, among other things, what it
is like to actually use the device.
</p>
        <p>
One thing I quite like about the HTC Shift is that it is designed in such a way that
it is very flexible.  There are three main ways in which you can use this device.  
</p>
        <p>
Firstly you can use it as a slate.  Like most slates this has the advantage of
actually being usable while you are standing up and moving around.  
</p>
        <p>
The next option is to slide the screen up to expose the keyboard and use it as a thumb
board.  This is a little cumbersome compared to other thumb boards, but it is
usable.  
</p>
        <p>
The third option is to put the device on a hard service and tilt the screen up, making
it more like a laptop.
</p>
        <p>
The video below explores these three modes.
</p>
        <div class="wlWriterSmartContent" id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:213855eb-9614-48b8-8fc8-494f2444fa12" style="padding-right: 0px; display: inline; padding-left: 0px; padding-bottom: 0px; margin: 0px; padding-top: 0px">
          <div id="5d293aa6-331f-4bbe-8c32-5528cd67ed16" style="margin: 0px; padding: 0px; display: inline;">
            <div>
              <a href="http://www.youtube.com/watch?v=EKvQttg3rvg" target="_new">
                <img src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/HowusefulistheHTCShift_13DD4/video28a90b512c86.jpg" galleryimg="no" onload="var downlevelDiv = document.getElementById('5d293aa6-331f-4bbe-8c32-5528cd67ed16'); downlevelDiv.innerHTML = &quot;&lt;div&gt;&lt;object width=\&quot;425\&quot; height=\&quot;350\&quot;&gt;&lt;param name=\&quot;movie\&quot; value=\&quot;http://www.youtube.com/v/EKvQttg3rvg\&quot;&gt;&lt;\/param&gt;&lt;param name=\&quot;wmode\&quot; value=\&quot;transparent\&quot;&gt;&lt;\/param&gt;&lt;embed src=\&quot;http://www.youtube.com/v/EKvQttg3rvg\&quot; type=\&quot;application/x-shockwave-flash\&quot; wmode=\&quot;transparent\&quot; width=\&quot;425\&quot; height=\&quot;350\&quot;&gt;&lt;\/embed&gt;&lt;\/object&gt;&lt;\/div&gt;&quot;;" alt="" />
              </a>
            </div>
          </div>
        </div>
        <p>
Some questions I have had sent through about usage are below - with my answers in
blue:
</p>
        <p>
What is the screen like compared to the Q1 Ultra (or even the Q1)?
</p>
        <p>
          <font color="#0000ff">Similar - the screen is clear and viewable indoors.  The
screen is not an outdoor viewable one, and the screen is hard to read in direct sunlight.</font>
        </p>
        <p>
How long does the battery last under normal conditions?  In Vista? in WM6?
</p>
        <p>
          <font color="#0000ff">My experimentation here has been limited due to the short time
I've had the device.  I've not tweaked the power settings at all, but at default
it gets about 2 hours when using Vista for browsing and feed reading over wi-fi. 
When I hibernated Windows Vista and left the device with Windows Mobile and push email
the battery only lost 4% points of charge over 6 hours.  This leads me to believe
that the battery life if you use Windows mobile exclusively will be measured in days.</font>
        </p>
        <p>
How solid is the keyboard/screen mechanism? 
</p>
        <p>
          <font color="#0000ff">It is easy enough to use but firm enough to support the weight
of the screen at any viewing angle you should choose.</font>
        </p>
        <p>
How useful is the touchpad? 
</p>
        <p>
          <font color="#0000ff">It works well enough, but I don't tend to use it much. 
I personally find it easier to just touch the screen.  One thing I did find odd
is that it does not work in the Windows Mobile OS.  This seems a waste as WM
does support using a mouse.</font>
        </p>
        <p>
How useful is the WM6 component in reality? 
</p>
        <p>
          <font color="#0000ff">I'll talk about this more in my next post.</font>
        </p>
        <p>
How well will it work with voice applications such as Skype?
</p>
        <p>
          <font color="#0000ff">I did not try it, but I recorded a screencast on the device
and the audio from the microphone seemed fairly good.  I would think that it
would work well, though bear in mind that cellular networks such as HSDPA are usually
quite latent and this can impact your voice experience.</font>
        </p>
        <p>
I'll be interested in how the battery life is as well as the ease of text entry if
you are holding it with both hands.
</p>
        <p>
          <font color="#0000ff">Battery life as above.  Yes you can use it holding it in
two hands - using the keyboard like a thumb board.  As thumb boards go it is
a fairly sizable one - and that can make text entry a bit cumbersome.</font>
        </p>
        <p>
...the biggest question I have is regarding the battery life as I am considering a
shift to replace my laptop. I have a desktop computer at work but regularly leave
the office, travelling the country a fair bit and would like to know if the Shift
could really satisfy my mobile needs?
</p>
        <p>
          <font color="#0000ff">It would depend on what you are wanting to do with it. 
If you are primarily thinking of email then using Windows Mobile the battery life
is stunning.  If you are wanting to use Vista for extended periods then the battery
life could be an issue.  It is worth noting here that the power brick is quite
small.</font>
        </p>
        <p>
          <strong>My Conclusions</strong>
        </p>
        <p>
The Shift is designed as a secondary device - to be used in conjunction with a "real
computer".  At this it excels because you are actually getting a secondary device
and a tertiary device in the one package.  I often say that mobility is all about
having options.  Therefore a good mobile device needs to be a multi-tool. 
Your <a href="http://www.leatherman.com/">Leatherman</a> is not likely to be the best
pair of pliers, knife or corkscrew you could own, but the fact that you have more
than one tool in the same compact package is useful in and of itself.  
</p>
        <p>
The Shift is the same deal.  The screen is ok for reading emails and browsing
the web, but it can be a bit small for working on a large document, video or images. 
There is of course a VGA port so you can always plug in a monitor.  Similarly
the keyboard is neither a great keyboard or a great thumb board - but it can be used
as either and that is powerful.  And of course there is a USB port - so you can
plug stuff in.
</p>
        <img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=ff9b9257-0f16-4d04-b293-80c8061ecb82" />
      </body>
      <title>How useful is the HTC Shift?</title>
      <guid isPermaLink="false">http://www.pringle.net.nz/blog/PermaLink,guid,ff9b9257-0f16-4d04-b293-80c8061ecb82.aspx</guid>
      <link>http://www.pringle.net.nz/blog/PermaLink,guid,ff9b9257-0f16-4d04-b293-80c8061ecb82.aspx</link>
      <pubDate>Sun, 02 Dec 2007 11:36:12 GMT</pubDate>
      <description>&lt;p&gt;
In my previous post I gave &lt;a href="http://www.pringle.net.nz/blog/PermaLink,guid,e5fed627-b033-4afc-92ab-91be61ab9684.aspx"&gt;a
tour of the HTC Shift&lt;/a&gt;.&amp;nbsp; I promised to explore, among other things, what it
is like to actually use the device.
&lt;/p&gt;
&lt;p&gt;
One thing I quite like about the HTC Shift is that it is designed in such a way that
it is very flexible.&amp;nbsp; There are three main ways in which you can use this device.&amp;nbsp; 
&lt;/p&gt;
&lt;p&gt;
Firstly you can use it as a slate.&amp;nbsp; Like most slates this has the advantage of
actually being usable while you are standing up and moving around.&amp;nbsp; 
&lt;/p&gt;
&lt;p&gt;
The next option is to slide the screen up to expose the keyboard and use it as a thumb
board.&amp;nbsp; This is a little cumbersome compared to other thumb boards, but it is
usable.&amp;nbsp; 
&lt;/p&gt;
&lt;p&gt;
The third option is to put the device on a hard service and tilt the screen up, making
it more like a laptop.
&lt;/p&gt;
&lt;p&gt;
The video below explores these three modes.
&lt;/p&gt;
&lt;div class="wlWriterSmartContent" id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:213855eb-9614-48b8-8fc8-494f2444fa12" style="padding-right: 0px; display: inline; padding-left: 0px; padding-bottom: 0px; margin: 0px; padding-top: 0px"&gt;
&lt;div id="5d293aa6-331f-4bbe-8c32-5528cd67ed16" style="margin: 0px; padding: 0px; display: inline;"&gt;
&lt;div&gt;&lt;a href="http://www.youtube.com/watch?v=EKvQttg3rvg" target="_new"&gt;&lt;img src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/HowusefulistheHTCShift_13DD4/video28a90b512c86.jpg" galleryimg="no" onload="var downlevelDiv = document.getElementById('5d293aa6-331f-4bbe-8c32-5528cd67ed16'); downlevelDiv.innerHTML = &amp;quot;&amp;lt;div&amp;gt;&amp;lt;object width=\&amp;quot;425\&amp;quot; height=\&amp;quot;350\&amp;quot;&amp;gt;&amp;lt;param name=\&amp;quot;movie\&amp;quot; value=\&amp;quot;http://www.youtube.com/v/EKvQttg3rvg\&amp;quot;&amp;gt;&amp;lt;\/param&amp;gt;&amp;lt;param name=\&amp;quot;wmode\&amp;quot; value=\&amp;quot;transparent\&amp;quot;&amp;gt;&amp;lt;\/param&amp;gt;&amp;lt;embed src=\&amp;quot;http://www.youtube.com/v/EKvQttg3rvg\&amp;quot; type=\&amp;quot;application/x-shockwave-flash\&amp;quot; wmode=\&amp;quot;transparent\&amp;quot; width=\&amp;quot;425\&amp;quot; height=\&amp;quot;350\&amp;quot;&amp;gt;&amp;lt;\/embed&amp;gt;&amp;lt;\/object&amp;gt;&amp;lt;\/div&amp;gt;&amp;quot;;" alt=""&gt;&lt;/a&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;
Some questions I have had sent through about usage are below - with my answers in
blue:
&lt;/p&gt;
&lt;p&gt;
What is the screen like compared to the Q1 Ultra (or even the Q1)?
&lt;/p&gt;
&lt;p&gt;
&lt;font color="#0000ff"&gt;Similar - the screen is clear and viewable indoors.&amp;nbsp; The
screen is not an outdoor viewable one, and the screen is hard to read in direct sunlight.&lt;/font&gt;
&lt;/p&gt;
&lt;p&gt;
How long does the battery last under normal conditions?&amp;nbsp; In Vista? in WM6?
&lt;/p&gt;
&lt;p&gt;
&lt;font color="#0000ff"&gt;My experimentation here has been limited due to the short time
I've had the device.&amp;nbsp; I've not tweaked the power settings at all, but at default
it gets about 2 hours when using Vista for browsing and feed reading over wi-fi.&amp;nbsp;
When I hibernated Windows Vista and left the device with Windows Mobile and push email
the battery only lost 4% points of charge over 6 hours.&amp;nbsp; This leads me to believe
that the battery life if you use Windows mobile exclusively will be measured in days.&lt;/font&gt;
&lt;/p&gt;
&lt;p&gt;
How solid is the keyboard/screen mechanism? 
&lt;p&gt;
&lt;font color="#0000ff"&gt;It is easy enough to use but firm enough to support the weight
of the screen at any viewing angle you should choose.&lt;/font&gt;
&lt;/p&gt;
&lt;p&gt;
How useful is the touchpad? 
&lt;p&gt;
&lt;font color="#0000ff"&gt;It works well enough, but I don't tend to use it much.&amp;nbsp;
I personally find it easier to just touch the screen.&amp;nbsp; One thing I did find odd
is that it does not work in the Windows Mobile OS.&amp;nbsp; This seems a waste as WM
does support using a mouse.&lt;/font&gt;
&lt;/p&gt;
&lt;p&gt;
How useful is the WM6 component in reality? 
&lt;p&gt;
&lt;font color="#0000ff"&gt;I'll talk about this more in my next post.&lt;/font&gt;
&lt;/p&gt;
&lt;p&gt;
How well will it work with voice applications such as Skype?
&lt;/p&gt;
&lt;p&gt;
&lt;font color="#0000ff"&gt;I did not try it, but I recorded a screencast on the device
and the audio from the microphone seemed fairly good.&amp;nbsp; I would think that it
would work well, though bear in mind that cellular networks such as HSDPA are usually
quite latent and this can impact your voice experience.&lt;/font&gt;
&lt;/p&gt;
&lt;p&gt;
I'll be interested in how the battery life is as well as the ease of text entry if
you are holding it with both hands.
&lt;/p&gt;
&lt;p&gt;
&lt;font color="#0000ff"&gt;Battery life as above.&amp;nbsp; Yes you can use it holding it in
two hands - using the keyboard like a thumb board.&amp;nbsp; As thumb boards go it is
a fairly sizable one - and that can make text entry a bit cumbersome.&lt;/font&gt;
&lt;/p&gt;
&lt;p&gt;
...the biggest question I have is regarding the battery life as I am considering a
shift to replace my laptop. I have a desktop computer at work but regularly leave
the office, travelling the country a fair bit and would like to know if the Shift
could really satisfy my mobile needs?
&lt;/p&gt;
&lt;p&gt;
&lt;font color="#0000ff"&gt;It would depend on what you are wanting to do with it.&amp;nbsp;
If you are primarily thinking of email then using Windows Mobile the battery life
is stunning.&amp;nbsp; If you are wanting to use Vista for extended periods then the battery
life could be an issue.&amp;nbsp; It is worth noting here that the power brick is quite
small.&lt;/font&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;My Conclusions&lt;/strong&gt;
&lt;/p&gt;
&lt;p&gt;
The Shift is designed as a secondary device - to be used in conjunction with a "real
computer".&amp;nbsp; At this it excels because you are actually getting a secondary device
and a tertiary device in the one package.&amp;nbsp; I often say that mobility is all about
having options.&amp;nbsp; Therefore a good mobile device needs to be a multi-tool.&amp;nbsp;
Your &lt;a href="http://www.leatherman.com/"&gt;Leatherman&lt;/a&gt; is not likely to be the best
pair of pliers, knife or corkscrew you could own, but the fact that you have more
than one tool in the same compact package is useful in and of itself.&amp;nbsp; 
&lt;/p&gt;
&lt;p&gt;
The Shift is the same deal.&amp;nbsp; The screen is ok for reading emails and browsing
the web, but it can be a bit small for working on a large document, video or images.&amp;nbsp;
There is of course a VGA port so you can always plug in a monitor.&amp;nbsp; Similarly
the keyboard is neither a great keyboard or a great thumb board - but it can be used
as either and that is powerful.&amp;nbsp; And of course there is a USB port - so you can
plug stuff in.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=ff9b9257-0f16-4d04-b293-80c8061ecb82" /&gt;</description>
      <comments>http://www.pringle.net.nz/blog/CommentView,guid,ff9b9257-0f16-4d04-b293-80c8061ecb82.aspx</comments>
      <category>Connectivity</category>
      <category>TabletPC</category>
      <category>Vista</category>
    </item>
    <item>
      <trackback:ping>http://www.pringle.net.nz/blog/Trackback.aspx?guid=e5fed627-b033-4afc-92ab-91be61ab9684</trackback:ping>
      <pingback:server>http://www.pringle.net.nz/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.pringle.net.nz/blog/PermaLink,guid,e5fed627-b033-4afc-92ab-91be61ab9684.aspx</pingback:target>
      <dc:creator>Craig Pringle</dc:creator>
      <wfw:comment>http://www.pringle.net.nz/blog/CommentView,guid,e5fed627-b033-4afc-92ab-91be61ab9684.aspx</wfw:comment>
      <wfw:commentRss>http://www.pringle.net.nz/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=e5fed627-b033-4afc-92ab-91be61ab9684</wfw:commentRss>
      <slash:comments>4</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
I've now had some time with the HTC Shift and I'm getting to know it a lot better. 
I've already had some questions posted in response to <a href="http://www.pringle.net.nz/blog/PermaLink,guid,26e0ea48-74b2-4fda-937c-341dbce9f180.aspx">my
earlier post</a> - but I'll repeat the call.  I only have this device for the
weekend so if there is anything you want me to investigate then post a comment and
I'll do my best.
</p>
        <p>
One of the first questions I had was from <a href="http://www.umpcportal.com">Chippy
at UMPC Portal</a>- is this unit the retail version?  The answer is no. 
I understand the hardware is final, but the it does not have the final version of
the system software installed on it.  This is an important caveat when I am talking
about the software features of the Shift - they are not yet carved in stone.
</p>
        <p>
I thought I would start with a tour of the physical device.  I'll follow up with
posts about the software, usage and the interplay between the two operating systems.
</p>
        <p>
In slate mode the Shift is small, thin and light.  On the front bezel there are
a number of features worth noting.
</p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/ShiftReviewPart1atour_1290F/HPIM1126.jpg">
            <img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="160" alt="HPIM1126" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/ShiftReviewPart1atour_1290F/HPIM1126_thumb.jpg" width="244" border="0" />
          </a>
        </p>
        <p>
In the top left corner there is a web camera.  In the top right there is an ambient
light sensor.  
</p>
        <p>
The two hardware buttons below the light sensor are function buttons.  When in
Windows Mobile mode they don't do anything.  In Windows Vista the top button
launches the Shift Control center.  The button below that toggles the screen
resolution between 800x480 and 1024x768.
</p>
        <p>
The black square below the two function buttons is a touch pad that allows you to
control the mouse pointer in Windows Vista.  The left and right mouse buttons
are the two buttons below the web camera on the left.  There are also two black
oval slots.  These are the speakers.  Below the right speaker is the fingerprint
reader.  Below the left speaker is the hardware button that toggles between Windows
Mobile and Windows Vista.  Along the bottom of the screen (under my thumb) there
are a number of indicator lights, including power, battery indicator, caps lock indicator,
HDD activity, wireless indicator, 3g indicator and alert light.
</p>
        <p>
On the right edge there is the power button, one USB port, the power input and an
SD Card slot.
</p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/ShiftReviewPart1atour_1290F/HPIM1125.jpg">
            <img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="179" alt="HPIM1125" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/ShiftReviewPart1atour_1290F/HPIM1125_thumb.jpg" width="244" border="0" />
          </a>
        </p>
        <p>
The silver power button is a soft switch.  Sliding this to the right toggles
the power switch.  If you slide the switch to the left it locks in place and
this disables all the buttons and the touch screen.
</p>
        <p>
On the left side of the unit is the headphone jack.  This is on the left of the
picture below.  Just visible on the right of the photo below is the inbuilt microphone. 
There is also another hole on the front edge of the same corner.  Roughly in
the middle is the slot for the stylus.  The stylus is ejected by pressing the
end in, it then pops out.  When slotted in place it locks in positively.
</p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/ShiftReviewPart1atour_1290F/HPIM1124.jpg">
            <img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="83" alt="HPIM1124" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/ShiftReviewPart1atour_1290F/HPIM1124_thumb.jpg" width="244" border="0" />
          </a>
        </p>
        <p>
On the top edge, when in slate mode, is a VGA output.
</p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/ShiftReviewPart1atour_1290F/hpim1131_2.jpg">
            <img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="61" alt="hpim1131" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/ShiftReviewPart1atour_1290F/hpim1131_thumb.jpg" width="244" border="0" />
          </a>
        </p>
        <p>
Sliding the screen upwards reveals a qwerty keyboard.  The screen slides up quite
easily.  You can use the device quite comfortably in this mode while sitting
or standing and using the keyboard as a thumb-board.
</p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/ShiftReviewPart1atour_1290F/HPIM1128.jpg">
            <img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="184" alt="HPIM1128" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/ShiftReviewPart1atour_1290F/HPIM1128_thumb.jpg" width="244" border="0" />
          </a>
        </p>
        <p>
You can also convert the device into laptop mode.  The hinge is fairly stiff
- this allows you to position the screen at any angle that suits you.  It does
mean that you need a fair bit of leverage to pull it up.  You can achieve this
one handed if you place your thumb at the base of the screen and pull up on the top
edge with your fingers.
</p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/ShiftReviewPart1atour_1290F/HPIM1129.jpg">
            <img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="184" alt="HPIM1129" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/ShiftReviewPart1atour_1290F/HPIM1129_thumb.jpg" width="244" border="0" />
          </a>
        </p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/ShiftReviewPart1atour_1290F/HPIM1130.jpg">
            <img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="184" alt="HPIM1130" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/ShiftReviewPart1atour_1290F/HPIM1130_thumb.jpg" width="244" border="0" />
          </a>
        </p>
        <p>
In order to use the onboard HSPDA you need to insert a SIM card.  To do this
you need to remove the battery.  This is done by removing a cover on the back
of the unit to expose the battery.  You then slide back two red clips that hold
the battery in place.
</p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/ShiftReviewPart1atour_1290F/HPIM1122.jpg">
            <img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="162" alt="HPIM1122" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/ShiftReviewPart1atour_1290F/HPIM1122_thumb.jpg" width="244" border="0" />
          </a>
        </p>
        <p>
Once you remove the battery you can see the SIM card slot.  
</p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/ShiftReviewPart1atour_1290F/HPIM1123.jpg">
            <img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="185" alt="HPIM1123" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/ShiftReviewPart1atour_1290F/HPIM1123_thumb.jpg" width="244" border="0" />
          </a>
        </p>
        <p>
The only other points of interest on the back of the unit are three vents that let
out heat and four rubber feel.  The rubber feet provide good grip on smooth surfaces
- which is important when you have such a smooth finish on the unit.
</p>
        <p>
Overall it is a good looking unit and feels well made.  Stay tuned for more on
what you get when you fire it up.
</p>
        <img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=e5fed627-b033-4afc-92ab-91be61ab9684" />
      </body>
      <title>Shift Review Part 1 - a tour</title>
      <guid isPermaLink="false">http://www.pringle.net.nz/blog/PermaLink,guid,e5fed627-b033-4afc-92ab-91be61ab9684.aspx</guid>
      <link>http://www.pringle.net.nz/blog/PermaLink,guid,e5fed627-b033-4afc-92ab-91be61ab9684.aspx</link>
      <pubDate>Sat, 01 Dec 2007 11:45:50 GMT</pubDate>
      <description>&lt;p&gt;
I've now had some time with the HTC Shift and I'm getting to know it a lot better.&amp;nbsp;
I've already had some questions posted in response to &lt;a href="http://www.pringle.net.nz/blog/PermaLink,guid,26e0ea48-74b2-4fda-937c-341dbce9f180.aspx"&gt;my
earlier post&lt;/a&gt; - but I'll repeat the call.&amp;nbsp; I only have this device for the
weekend so if there is anything you want me to investigate then post a comment and
I'll do my best.
&lt;/p&gt;
&lt;p&gt;
One of the first questions I had was from &lt;a href="http://www.umpcportal.com"&gt;Chippy
at UMPC Portal&lt;/a&gt;- is this unit the retail version?&amp;nbsp; The answer is no.&amp;nbsp;
I understand the hardware is final, but the it does not have the final version of
the system software installed on it.&amp;nbsp; This is an important caveat when I am talking
about the software features of the Shift - they are not yet carved in stone.
&lt;/p&gt;
&lt;p&gt;
I thought I would start with a tour of the physical device.&amp;nbsp; I'll follow up with
posts about the software, usage and the interplay between the two operating systems.
&lt;/p&gt;
&lt;p&gt;
In slate mode the Shift is small, thin and light.&amp;nbsp; On the front bezel there are
a number of features worth noting.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/ShiftReviewPart1atour_1290F/HPIM1126.jpg"&gt;&lt;img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="160" alt="HPIM1126" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/ShiftReviewPart1atour_1290F/HPIM1126_thumb.jpg" width="244" border="0"&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
In the top left corner there is a web camera.&amp;nbsp; In the top right there is an ambient
light sensor.&amp;nbsp; 
&lt;/p&gt;
&lt;p&gt;
The two hardware buttons below the light sensor are function buttons.&amp;nbsp; When in
Windows Mobile mode they don't do anything.&amp;nbsp; In Windows Vista the top button
launches the Shift Control center.&amp;nbsp; The button below that toggles the screen
resolution between 800x480 and 1024x768.
&lt;/p&gt;
&lt;p&gt;
The black square below the two function buttons is a touch pad that allows you to
control the mouse pointer in Windows Vista.&amp;nbsp; The left and right mouse buttons
are the two buttons below the web camera on the left.&amp;nbsp; There are also two black
oval slots.&amp;nbsp; These are the speakers.&amp;nbsp; Below the right speaker is the fingerprint
reader.&amp;nbsp; Below the left speaker is the hardware button that toggles between Windows
Mobile and Windows Vista.&amp;nbsp; Along the bottom of the screen (under my thumb) there
are a number of indicator lights, including power, battery indicator, caps lock indicator,
HDD activity, wireless indicator, 3g indicator and alert light.
&lt;/p&gt;
&lt;p&gt;
On the right edge there is the power button, one USB port, the power input and an
SD Card slot.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/ShiftReviewPart1atour_1290F/HPIM1125.jpg"&gt;&lt;img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="179" alt="HPIM1125" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/ShiftReviewPart1atour_1290F/HPIM1125_thumb.jpg" width="244" border="0"&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
The silver power button is a soft switch.&amp;nbsp; Sliding this to the right toggles
the power switch.&amp;nbsp; If you slide the switch to the left it locks in place and
this disables all the buttons and the touch screen.
&lt;/p&gt;
&lt;p&gt;
On the left side of the unit is the headphone jack.&amp;nbsp; This is on the left of the
picture below.&amp;nbsp; Just visible on the right of the photo below is the inbuilt microphone.&amp;nbsp;
There is also another hole on the front edge of the same corner.&amp;nbsp; Roughly in
the middle is the slot for the stylus.&amp;nbsp; The stylus is ejected by pressing the
end in, it then pops out.&amp;nbsp; When slotted in place it locks in positively.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/ShiftReviewPart1atour_1290F/HPIM1124.jpg"&gt;&lt;img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="83" alt="HPIM1124" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/ShiftReviewPart1atour_1290F/HPIM1124_thumb.jpg" width="244" border="0"&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
On the top edge, when in slate mode, is a VGA output.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/ShiftReviewPart1atour_1290F/hpim1131_2.jpg"&gt;&lt;img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="61" alt="hpim1131" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/ShiftReviewPart1atour_1290F/hpim1131_thumb.jpg" width="244" border="0"&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
Sliding the screen upwards reveals a qwerty keyboard.&amp;nbsp; The screen slides up quite
easily.&amp;nbsp; You can use the device quite comfortably in this mode while sitting
or standing and using the keyboard as a thumb-board.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/ShiftReviewPart1atour_1290F/HPIM1128.jpg"&gt;&lt;img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="184" alt="HPIM1128" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/ShiftReviewPart1atour_1290F/HPIM1128_thumb.jpg" width="244" border="0"&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
You can also convert the device into laptop mode.&amp;nbsp; The hinge is fairly stiff
- this allows you to position the screen at any angle that suits you.&amp;nbsp; It does
mean that you need a fair bit of leverage to pull it up.&amp;nbsp; You can achieve this
one handed if you place your thumb at the base of the screen and pull up on the top
edge with your fingers.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/ShiftReviewPart1atour_1290F/HPIM1129.jpg"&gt;&lt;img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="184" alt="HPIM1129" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/ShiftReviewPart1atour_1290F/HPIM1129_thumb.jpg" width="244" border="0"&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/ShiftReviewPart1atour_1290F/HPIM1130.jpg"&gt;&lt;img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="184" alt="HPIM1130" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/ShiftReviewPart1atour_1290F/HPIM1130_thumb.jpg" width="244" border="0"&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
In order to use the onboard HSPDA you need to insert a SIM card.&amp;nbsp; To do this
you need to remove the battery.&amp;nbsp; This is done by removing a cover on the back
of the unit to expose the battery.&amp;nbsp; You then slide back two red clips that hold
the battery in place.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/ShiftReviewPart1atour_1290F/HPIM1122.jpg"&gt;&lt;img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="162" alt="HPIM1122" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/ShiftReviewPart1atour_1290F/HPIM1122_thumb.jpg" width="244" border="0"&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
Once you remove the battery you can see the SIM card slot.&amp;nbsp; 
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/ShiftReviewPart1atour_1290F/HPIM1123.jpg"&gt;&lt;img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="185" alt="HPIM1123" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/ShiftReviewPart1atour_1290F/HPIM1123_thumb.jpg" width="244" border="0"&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
The only other points of interest on the back of the unit are three vents that let
out heat and four rubber feel.&amp;nbsp; The rubber feet provide good grip on smooth surfaces
- which is important when you have such a smooth finish on the unit.
&lt;/p&gt;
&lt;p&gt;
Overall it is a good looking unit and feels well made.&amp;nbsp; Stay tuned for more on
what you get when you fire it up.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=e5fed627-b033-4afc-92ab-91be61ab9684" /&gt;</description>
      <comments>http://www.pringle.net.nz/blog/CommentView,guid,e5fed627-b033-4afc-92ab-91be61ab9684.aspx</comments>
      <category>Connectivity</category>
      <category>TabletPC</category>
      <category>Vista</category>
    </item>
    <item>
      <trackback:ping>http://www.pringle.net.nz/blog/Trackback.aspx?guid=26e0ea48-74b2-4fda-937c-341dbce9f180</trackback:ping>
      <pingback:server>http://www.pringle.net.nz/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.pringle.net.nz/blog/PermaLink,guid,26e0ea48-74b2-4fda-937c-341dbce9f180.aspx</pingback:target>
      <dc:creator>Craig Pringle</dc:creator>
      <wfw:comment>http://www.pringle.net.nz/blog/CommentView,guid,26e0ea48-74b2-4fda-937c-341dbce9f180.aspx</wfw:comment>
      <wfw:commentRss>http://www.pringle.net.nz/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=26e0ea48-74b2-4fda-937c-341dbce9f180</wfw:commentRss>
      <slash:comments>4</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Because I have a HTC Shift in my hot little hands for the weekend.
</p>
        <img border="0" src="http://www.pringle.net.nz/blog/content/binary/HPIM1111.JPG" />
        <p>
I'm really excited to have this opportunity. I think the Shift is an incredible and
innovative device. Packed into it's tony frame are two operating systems - Windows
Vista and Windows Mobile. It has embedded 3G wireless. There is a lot to play with.
</p>
        <p>
Unfortunatly there is also a lot of confusion in the market about it as well. I aim
to try and help clear someof that up. If there is something about the Shift you want
me to check out while I have it leave a comment.
</p>
        <img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=26e0ea48-74b2-4fda-937c-341dbce9f180" />
      </body>
      <title>I'm feeling a bit... Shifty</title>
      <guid isPermaLink="false">http://www.pringle.net.nz/blog/PermaLink,guid,26e0ea48-74b2-4fda-937c-341dbce9f180.aspx</guid>
      <link>http://www.pringle.net.nz/blog/PermaLink,guid,26e0ea48-74b2-4fda-937c-341dbce9f180.aspx</link>
      <pubDate>Fri, 30 Nov 2007 10:31:06 GMT</pubDate>
      <description>&lt;p&gt;
Because I have a HTC Shift in my hot little hands for the weekend.
&lt;/p&gt;
&lt;img border="0" src="http://www.pringle.net.nz/blog/content/binary/HPIM1111.JPG"&gt; 
&lt;p&gt;
I'm really excited to have this opportunity. I think the Shift is an incredible and
innovative device. Packed into it's tony frame are two operating systems - Windows
Vista and Windows Mobile. It has embedded 3G wireless. There is a lot to play with.
&lt;/p&gt;
&lt;p&gt;
Unfortunatly there is also a lot of confusion in the market about it as well. I aim
to try and help clear someof that up. If there is something about the Shift you want
me to check out while I have it leave a comment.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=26e0ea48-74b2-4fda-937c-341dbce9f180" /&gt;</description>
      <comments>http://www.pringle.net.nz/blog/CommentView,guid,26e0ea48-74b2-4fda-937c-341dbce9f180.aspx</comments>
      <category>Connectivity</category>
      <category>General</category>
      <category>TabletPC</category>
      <category>Vista</category>
    </item>
    <item>
      <trackback:ping>http://www.pringle.net.nz/blog/Trackback.aspx?guid=e35cb189-69ea-4711-bf43-0ae6edae8b93</trackback:ping>
      <pingback:server>http://www.pringle.net.nz/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.pringle.net.nz/blog/PermaLink,guid,e35cb189-69ea-4711-bf43-0ae6edae8b93.aspx</pingback:target>
      <dc:creator>Craig Pringle</dc:creator>
      <wfw:comment>http://www.pringle.net.nz/blog/CommentView,guid,e35cb189-69ea-4711-bf43-0ae6edae8b93.aspx</wfw:comment>
      <wfw:commentRss>http://www.pringle.net.nz/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=e35cb189-69ea-4711-bf43-0ae6edae8b93</wfw:commentRss>
      <slash:comments>3</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
There is an issue that many mobile and tablet users have encountered with Windows
Vista, myself included.  Warner Crocker also has encountered <a title="this issue and describes it" href="http://feeds.feedburner.com/~r/Gottabemobile/~3/189843572/SleepAndShutDownIssuesContinueWithVista.aspx">this
issue and describes it</a> thus: 
</p>
        <blockquote>
          <p>
I’m still frustrated with Vista on one front here and that is putting the Tablet
PC to sleep. 3 times out of 4 everything will work as advertised. Close the lid, unit
goes to sleep, open the lid, unit returns. But occasionally the OS just goes off into
its own world without sleeping, or after a successful sleep, not returning. Occasionally
it will return from sleep but the screen will stay dark. 
</p>
        </blockquote>
        <p>
I personally believe that this issue is not a Vista issue per se, but rather a driver
issue.  I think that some drivers are poorly written and interfere with the sleep
and resume process.  I also think that this issue is much more serious than it
initially appears.  I have come to refer to it as the sleep of death.  But
that I'll leave for another post.  
</p>
        <p>
For Warner it seems his issues are related to when he is using Wi-fi.  For me
it was BlueTooth.  Either way it points at drivers.
</p>
        <blockquote>
          <p>
I’m beginning to think (this seems to be somewhat reproducible here) that these
issues have something to do with being connected or disconnected to our WiFi network.
Here’s what I’m experiencing and maybe someone smarter than me can help
out here with some thoughts. 
</p>
        </blockquote>
        <p>
What worked for me was to disable the Power Management features for the affected driver. 
For a wireless driver you would do this by going into Device Manager, right clicking
on the relevant device and selecting Properties.
</p>
        <p>
You <strong>may</strong> then see a Power Management tab.  Not all device or
drivers implement this interface, so if yours does not you will not see the tab.
</p>
        <p>
If there is one select that tab and then clear both of the checkboxes shown in the
screenshot below.  
</p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/AtipforpeoplestrugglingwithSleepofDeath_13BE1/PowerMgmt.jpg">
            <img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="244" alt="PowerMgmt" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/AtipforpeoplestrugglingwithSleepofDeath_13BE1/PowerMgmt_thumb.jpg" width="220" border="0" />
          </a>
        </p>
        <p>
I have done this for my LS800 and it has all but eliminated the dreaded sleep of death
issue.  I use to encounter this several times a week and now I get it less than
once a month.  
</p>
        <img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=e35cb189-69ea-4711-bf43-0ae6edae8b93" />
      </body>
      <title>A tip for people struggling with Sleep of Death</title>
      <guid isPermaLink="false">http://www.pringle.net.nz/blog/PermaLink,guid,e35cb189-69ea-4711-bf43-0ae6edae8b93.aspx</guid>
      <link>http://www.pringle.net.nz/blog/PermaLink,guid,e35cb189-69ea-4711-bf43-0ae6edae8b93.aspx</link>
      <pubDate>Sun, 25 Nov 2007 11:27:39 GMT</pubDate>
      <description>&lt;p&gt;
There is an issue that many mobile and tablet users have encountered with Windows
Vista, myself included.&amp;#160; Warner Crocker also has encountered &lt;a title="this issue and describes it" href="http://feeds.feedburner.com/~r/Gottabemobile/~3/189843572/SleepAndShutDownIssuesContinueWithVista.aspx"&gt;this
issue and describes it&lt;/a&gt; thus: 
&lt;/p&gt;
&lt;blockquote&gt; 
&lt;p&gt;
I&amp;#8217;m still frustrated with Vista on one front here and that is putting the Tablet
PC to sleep. 3 times out of 4 everything will work as advertised. Close the lid, unit
goes to sleep, open the lid, unit returns. But occasionally the OS just goes off into
its own world without sleeping, or after a successful sleep, not returning. Occasionally
it will return from sleep but the screen will stay dark. 
&lt;/p&gt;
&lt;/blockquote&gt; 
&lt;p&gt;
I personally believe that this issue is not a Vista issue per se, but rather a driver
issue.&amp;#160; I think that some drivers are poorly written and interfere with the sleep
and resume process.&amp;#160; I also think that this issue is much more serious than it
initially appears.&amp;#160; I have come to refer to it as the sleep of death.&amp;#160; But
that I'll leave for another post.&amp;#160; 
&lt;/p&gt;
&lt;p&gt;
For Warner it seems his issues are related to when he is using Wi-fi.&amp;#160; For me
it was BlueTooth.&amp;#160; Either way it points at drivers.
&lt;/p&gt;
&lt;blockquote&gt; 
&lt;p&gt;
I&amp;#8217;m beginning to think (this seems to be somewhat reproducible here) that these
issues have something to do with being connected or disconnected to our WiFi network.
Here&amp;#8217;s what I&amp;#8217;m experiencing and maybe someone smarter than me can help
out here with some thoughts. 
&lt;/p&gt;
&lt;/blockquote&gt; 
&lt;p&gt;
What worked for me was to disable the Power Management features for the affected driver.&amp;#160;
For a wireless driver you would do this by going into Device Manager, right clicking
on the relevant device and selecting Properties.
&lt;/p&gt;
&lt;p&gt;
You &lt;strong&gt;may&lt;/strong&gt; then see a Power Management tab.&amp;#160; Not all device or
drivers implement this interface, so if yours does not you will not see the tab.
&lt;/p&gt;
&lt;p&gt;
If there is one select that tab and then clear both of the checkboxes shown in the
screenshot below.&amp;#160; 
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/AtipforpeoplestrugglingwithSleepofDeath_13BE1/PowerMgmt.jpg"&gt;&lt;img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="244" alt="PowerMgmt" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/AtipforpeoplestrugglingwithSleepofDeath_13BE1/PowerMgmt_thumb.jpg" width="220" border="0" /&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
I have done this for my LS800 and it has all but eliminated the dreaded sleep of death
issue.&amp;#160; I use to encounter this several times a week and now I get it less than
once a month.&amp;#160; 
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=e35cb189-69ea-4711-bf43-0ae6edae8b93" /&gt;</description>
      <comments>http://www.pringle.net.nz/blog/CommentView,guid,e35cb189-69ea-4711-bf43-0ae6edae8b93.aspx</comments>
      <category>Connectivity</category>
      <category>TabletPC</category>
      <category>Vista</category>
    </item>
    <item>
      <trackback:ping>http://www.pringle.net.nz/blog/Trackback.aspx?guid=bff632c6-4cf7-437e-bea2-215d629454d6</trackback:ping>
      <pingback:server>http://www.pringle.net.nz/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.pringle.net.nz/blog/PermaLink,guid,bff632c6-4cf7-437e-bea2-215d629454d6.aspx</pingback:target>
      <dc:creator>Craig Pringle</dc:creator>
      <wfw:comment>http://www.pringle.net.nz/blog/CommentView,guid,bff632c6-4cf7-437e-bea2-215d629454d6.aspx</wfw:comment>
      <wfw:commentRss>http://www.pringle.net.nz/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=bff632c6-4cf7-437e-bea2-215d629454d6</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
I've been luck enough to have a Motion LE1700 in the house for a while but I have
not had the time to really explore it.  I had just started having a real look
at it when low and behold Motion needed it back.  C'est la vie.  I snapped
a few photos before I sent it back so I could post this mini-review.  Click on
any of the photos in this post for a larger image.  Motion have promised
to send a unit with the WWAN module in it, so I'll do a full review then.  
</p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/QuickReviewoftheMotionComputingLE1700_BF6A/HPIM1022.jpg" atomicselection="true">
            <img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="180" alt="HPIM1022" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/QuickReviewoftheMotionComputingLE1700_BF6A/HPIM1022_thumb.jpg" width="240" border="0" />
          </a>
        </p>
        <p>
I've had a couple of Motion slates in the past, including the LS800 I still use on
a daily basis.  I have always found them to be well designed and with quality
construction.  The LE1700 is no exception.  It has a very functional design
and the silver and black finish is striking.  The unit is very comfortable to
hold in either portrait or landscape mode, because it is very well balanced.
</p>
        <p>
Here's a tour:
</p>
        <p>
The tablet buttons are similar in design to previous Motion tablets.  There is
a directional pad with enter in the middle, surrounded by four buttons.  On one
side you have the programmable buttons, on the other you have an Esc button and a
function button, which alters the action associated with the other buttons if you
press it before another one of the buttons.
</p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/QuickReviewoftheMotionComputingLE1700_BF6A/HPIM1023.jpg" atomicselection="true">
            <img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="180" alt="HPIM1023" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/QuickReviewoftheMotionComputingLE1700_BF6A/HPIM1023_thumb.jpg" width="240" border="0" />
          </a> 
</p>
        <p>
On the side below these buttons are the infrared port and the PCMCIA slot.  There
is also a SD-card reader, but that is just out of the shot above - you can see it
better below.
</p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/QuickReviewoftheMotionComputingLE1700_BF6A/HPIM1024_1.jpg" atomicselection="true">
            <img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="180" alt="HPIM1024" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/QuickReviewoftheMotionComputingLE1700_BF6A/HPIM1024_thumb_1.jpg" width="240" border="0" />
          </a>
        </p>
        <p>
On the other end of the same side is the stylus and the antenna for the embedded WWAN
module.  This particular unit did not actually have the WWAN module so I can't report
on that, but you can see how the antenna can be raised up as shown or lowered so that
it sits flush with the front of the tablet.  
</p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/QuickReviewoftheMotionComputingLE1700_BF6A/HPIM1025.jpg" atomicselection="true">
            <img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="180" alt="HPIM1025" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/QuickReviewoftheMotionComputingLE1700_BF6A/HPIM1025_thumb.jpg" width="240" border="0" />
          </a>
        </p>
        <p>
The antenna is designed to snap on and snap off, so that if it takes a hard knock
while raised it will snap off rather than breaking or transmitting any force into
the body of the tablet.
</p>
        <p>
Here's the antenna sitting flush.  Just below the antenna you can see one of
the three microphones on the outer bezel of the tablet.  The other two are in
the bezel as well, but in the bottom left and bottom right (when the unit is in landscape
mode).
</p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/QuickReviewoftheMotionComputingLE1700_BF6A/HPIM1026.jpg" atomicselection="true">
            <img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="180" alt="HPIM1026" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/QuickReviewoftheMotionComputingLE1700_BF6A/HPIM1026_thumb.jpg" width="240" border="0" />
          </a>
        </p>
        <p>
On the side below the screen (when the tablet is in landscape mode) is a Motion accessory
port and (under the cover) a connector for when the tablet is used with either the <a href="http://www.motioncomputing.com/choose/spec_convertkybd.htm">convertible
keyboard</a> or the <a href="http://www.motioncomputing.com/choose/spec_flexdock_LE.htm">FexiDock</a>.
</p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/QuickReviewoftheMotionComputingLE1700_BF6A/HPIM1027.jpg" atomicselection="true">
            <img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="180" alt="HPIM1027" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/QuickReviewoftheMotionComputingLE1700_BF6A/HPIM1027_thumb.jpg" width="240" border="0" />
          </a>
        </p>
        <p>
On the left side of the tablet (when it is in landscape mode) you will find the following
up the top on the front.  Two indicator lights - one for power and one for charge. 
The fingerprint reader and the Windows Security button (pressing that is like pressing
Ctrl-Alt-Del on a keyboard).  Notice there is no HDD activity light.  I've
had another tablet without a disk activity light and it was a minor annoyance. 
However the version of the Motion Dashboard that comes with the LE1700 puts an icon
in the system tray.  This can optionally be configured to blink on disk activity
- nice touch.
</p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/QuickReviewoftheMotionComputingLE1700_BF6A/HPIM1028.jpg" atomicselection="true">
            <img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="180" alt="HPIM1028" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/QuickReviewoftheMotionComputingLE1700_BF6A/HPIM1028_thumb.jpg" width="240" border="0" />
          </a>
        </p>
        <p>
On the side of the unit below the activity lights are a hardware switch for the wireless,
the power switch and two USB ports.  A couple of points worth mentioning here
- the power switch is on the opposite side on this tablet than it is on my LS800 -
though the units are otherwise laid out pretty similarly.  This is not a problem,
but it does take a little getting use to.  However that is always the way with
a new unit.
</p>
        <p>
The other difference between the layout on the LE1700 and my beloved LS800 is that
on the LS800 the USB ports are upside down - in that the top of most USB devices ends
up facing towards the back of the tablet.  I'm pleased to report that this has
been corrected on the LE1700.
</p>
        <p>
In the middle of the left side there are microphone and headphone jacks; next
to that is a DVI-D output, below which is a SIM card slot for the WWAN.  On the
right of the photo below is a VGA output.
</p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/QuickReviewoftheMotionComputingLE1700_BF6A/HPIM1029.jpg" atomicselection="true">
            <img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="180" alt="HPIM1029" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/QuickReviewoftheMotionComputingLE1700_BF6A/HPIM1029_thumb.jpg" width="240" border="0" />
          </a>
        </p>
        <p>
On the bottom left corner there is an RJ-45 Gigabit Ethernet port and a laptop lock
slot.  On the front bezel you can see another of the array microphones and the
ambient light sensor.
</p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/QuickReviewoftheMotionComputingLE1700_BF6A/HPIM1030.jpg" atomicselection="true">
            <img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="180" alt="HPIM1030" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/QuickReviewoftheMotionComputingLE1700_BF6A/HPIM1030_thumb.jpg" width="240" border="0" />
          </a>
        </p>
        <p>
Last but not least - on the back you will find three covers held in place with screws. 
The top left one covers the WLAN and WWAN modules, the bottom left exposes the HDD
and the third cover exposes the two RAM slots.  Very easy to service.  The
sliding cover you can see exposes the <a href="http://www.motioncomputing.com/choose/spec_ebattery_LE.htm">extended
battery</a> connector.  One of the great features of the LE series tablets is
the shape of the back - note how there is a slight inset about an inch below the top
of the tablet?  This is so that when you fit the <a href="http://www.motioncomputing.com/choose/spec_ebattery_LE.htm">extended
battery</a> to the unit it sits quite flush.  Because the battery is rectangular
and flat the additional weight is evenly distributed and the unit is still easy to
use for extended periods when you are moving about.
</p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/QuickReviewoftheMotionComputingLE1700_BF6A/HPIM1031.jpg" atomicselection="true">
            <img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="180" alt="HPIM1031" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/QuickReviewoftheMotionComputingLE1700_BF6A/HPIM1031_thumb.jpg" width="240" border="0" />
          </a>
        </p>
        <p>
Using the LE1700 is a joy.  I've had 12 inch slates before and I've had tablets
with SXGA screens before (which gives you a native resolution of 1400x1050) but to
have both really is having your cake and eating it, too.  The unit I had did
not have the <a href="http://www.motioncomputing.com/choose/spec_vad.htm">ViewAnywhere
display</a> option - having had that on my LS800 I would highly recommend it. 
The unit I had was the Core 2 Duo model and the performance was fantastic.  It
came with XP Tablet edition pre-installed, but with Motion's permission I rebuilt
it with Vista.  The Vista experience is flawless.
</p>
        <p>
Overall a great experience.
</p>
        <img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=bff632c6-4cf7-437e-bea2-215d629454d6" />
      </body>
      <title>Quick Review of the Motion Computing LE1700</title>
      <guid isPermaLink="false">http://www.pringle.net.nz/blog/PermaLink,guid,bff632c6-4cf7-437e-bea2-215d629454d6.aspx</guid>
      <link>http://www.pringle.net.nz/blog/PermaLink,guid,bff632c6-4cf7-437e-bea2-215d629454d6.aspx</link>
      <pubDate>Sat, 03 Nov 2007 02:37:31 GMT</pubDate>
      <description>&lt;p&gt;
I've been luck enough to have a Motion LE1700 in the house for a while but I have
not had the time to really explore it.&amp;nbsp; I had just started having a real look
at it when low and behold Motion needed it back.&amp;nbsp; C'est la vie.&amp;nbsp; I snapped
a few photos before I sent it back so I could post this mini-review.&amp;nbsp; Click on
any of the photos in&amp;nbsp;this post for a larger image.&amp;nbsp; Motion have promised
to send a unit with the WWAN module in it, so I'll do a full review then.&amp;nbsp; 
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/QuickReviewoftheMotionComputingLE1700_BF6A/HPIM1022.jpg" atomicselection="true"&gt;&lt;img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="180" alt="HPIM1022" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/QuickReviewoftheMotionComputingLE1700_BF6A/HPIM1022_thumb.jpg" width="240" border="0"&gt;&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
I've had a couple of Motion slates in the past, including the LS800 I still use on
a daily basis.&amp;nbsp; I have always found them to be well designed and with quality
construction.&amp;nbsp; The LE1700 is no exception.&amp;nbsp; It has a very functional design
and the silver and black finish is striking.&amp;nbsp; The unit is very comfortable to
hold in either portrait or landscape mode, because it is very well balanced.
&lt;/p&gt;
&lt;p&gt;
Here's a tour:
&lt;/p&gt;
&lt;p&gt;
The tablet buttons are similar in design to previous Motion tablets.&amp;nbsp; There is
a directional pad with enter in the middle, surrounded by four buttons.&amp;nbsp; On one
side you have the programmable buttons, on the other you have an Esc button and a
function button, which alters the action associated with the other buttons if you
press it before another one of the buttons.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/QuickReviewoftheMotionComputingLE1700_BF6A/HPIM1023.jpg" atomicselection="true"&gt;&lt;img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="180" alt="HPIM1023" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/QuickReviewoftheMotionComputingLE1700_BF6A/HPIM1023_thumb.jpg" width="240" border="0"&gt;&lt;/a&gt;&amp;nbsp;
&lt;/p&gt;
&lt;p&gt;
On the side below these buttons are the infrared port and the PCMCIA slot.&amp;nbsp; There
is also a SD-card reader, but that is just out of the shot above - you can see it
better below.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/QuickReviewoftheMotionComputingLE1700_BF6A/HPIM1024_1.jpg" atomicselection="true"&gt;&lt;img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="180" alt="HPIM1024" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/QuickReviewoftheMotionComputingLE1700_BF6A/HPIM1024_thumb_1.jpg" width="240" border="0"&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
On the other end of the same side is the stylus and the antenna for the embedded WWAN
module.&amp;nbsp; This particular unit did not actually have the WWAN module so I can't&amp;nbsp;report
on that, but you can see how the antenna can be raised up as shown or lowered so that
it sits flush with the front of the tablet.&amp;nbsp; 
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/QuickReviewoftheMotionComputingLE1700_BF6A/HPIM1025.jpg" atomicselection="true"&gt;&lt;img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="180" alt="HPIM1025" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/QuickReviewoftheMotionComputingLE1700_BF6A/HPIM1025_thumb.jpg" width="240" border="0"&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
The antenna is designed to snap on and snap off, so that if it takes a hard knock
while raised it will snap off rather than breaking or transmitting any force into
the body of the tablet.
&lt;/p&gt;
&lt;p&gt;
Here's the antenna sitting flush.&amp;nbsp; Just below the antenna you can see one of
the three microphones on the outer bezel of the tablet.&amp;nbsp; The other two are in
the bezel as well, but in the bottom left and bottom right (when the unit is in landscape
mode).
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/QuickReviewoftheMotionComputingLE1700_BF6A/HPIM1026.jpg" atomicselection="true"&gt;&lt;img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="180" alt="HPIM1026" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/QuickReviewoftheMotionComputingLE1700_BF6A/HPIM1026_thumb.jpg" width="240" border="0"&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
On the side below the screen (when the tablet is in landscape mode) is a Motion accessory
port and (under the cover) a connector for when the tablet is used with either the &lt;a href="http://www.motioncomputing.com/choose/spec_convertkybd.htm"&gt;convertible
keyboard&lt;/a&gt; or the &lt;a href="http://www.motioncomputing.com/choose/spec_flexdock_LE.htm"&gt;FexiDock&lt;/a&gt;.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/QuickReviewoftheMotionComputingLE1700_BF6A/HPIM1027.jpg" atomicselection="true"&gt;&lt;img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="180" alt="HPIM1027" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/QuickReviewoftheMotionComputingLE1700_BF6A/HPIM1027_thumb.jpg" width="240" border="0"&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
On the left side of the tablet (when it is in landscape mode) you will find the following
up the top on the front.&amp;nbsp; Two indicator lights - one for power and one for charge.&amp;nbsp;
The fingerprint reader and the Windows Security button (pressing that is like pressing
Ctrl-Alt-Del on a keyboard).&amp;nbsp; Notice there is no HDD activity light.&amp;nbsp; I've
had another tablet without a disk activity light and it was a minor annoyance.&amp;nbsp;
However the version of the Motion Dashboard that comes with the LE1700 puts an icon
in the system tray.&amp;nbsp; This can optionally be configured to blink on disk activity
- nice touch.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/QuickReviewoftheMotionComputingLE1700_BF6A/HPIM1028.jpg" atomicselection="true"&gt;&lt;img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="180" alt="HPIM1028" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/QuickReviewoftheMotionComputingLE1700_BF6A/HPIM1028_thumb.jpg" width="240" border="0"&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
On the side of the unit below the activity lights are a hardware switch for the wireless,
the power switch and two USB ports.&amp;nbsp; A couple of points worth mentioning here
- the power switch is on the opposite side on this tablet than it is on my LS800 -
though the units are otherwise laid out pretty similarly.&amp;nbsp; This is not a problem,
but it does take a little getting use to.&amp;nbsp; However that is always the way with
a new unit.
&lt;/p&gt;
&lt;p&gt;
The other difference between the layout on the LE1700 and my beloved LS800 is that
on the LS800 the USB ports are upside down - in that the top of most USB devices ends
up facing towards the back of the tablet.&amp;nbsp; I'm pleased to report that this has
been corrected on the LE1700.
&lt;/p&gt;
&lt;p&gt;
In the middle of the left side there&amp;nbsp;are microphone and headphone jacks; next
to that is a DVI-D output, below which is a SIM card slot for the WWAN.&amp;nbsp; On the
right of the photo below is a VGA output.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/QuickReviewoftheMotionComputingLE1700_BF6A/HPIM1029.jpg" atomicselection="true"&gt;&lt;img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="180" alt="HPIM1029" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/QuickReviewoftheMotionComputingLE1700_BF6A/HPIM1029_thumb.jpg" width="240" border="0"&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
On the bottom left corner there is an RJ-45 Gigabit Ethernet port and a laptop lock
slot.&amp;nbsp; On the front bezel you can see another of the array microphones and the
ambient light sensor.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/QuickReviewoftheMotionComputingLE1700_BF6A/HPIM1030.jpg" atomicselection="true"&gt;&lt;img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="180" alt="HPIM1030" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/QuickReviewoftheMotionComputingLE1700_BF6A/HPIM1030_thumb.jpg" width="240" border="0"&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
Last but not least - on the back you will find three covers held in place with screws.&amp;nbsp;
The top left one covers the WLAN and WWAN modules, the bottom left exposes the HDD
and the third cover exposes the two RAM slots.&amp;nbsp; Very easy to service.&amp;nbsp; The
sliding cover you can see exposes the &lt;a href="http://www.motioncomputing.com/choose/spec_ebattery_LE.htm"&gt;extended
battery&lt;/a&gt; connector.&amp;nbsp; One of the great features of the LE series tablets is
the shape of the back - note how there is a slight inset about an inch below the top
of the tablet?&amp;nbsp; This is so that when you fit the &lt;a href="http://www.motioncomputing.com/choose/spec_ebattery_LE.htm"&gt;extended
battery&lt;/a&gt; to the unit it sits quite flush.&amp;nbsp; Because the battery is rectangular
and flat the additional weight is evenly distributed and the unit is still easy to
use for extended periods when you are moving about.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/QuickReviewoftheMotionComputingLE1700_BF6A/HPIM1031.jpg" atomicselection="true"&gt;&lt;img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="180" alt="HPIM1031" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/QuickReviewoftheMotionComputingLE1700_BF6A/HPIM1031_thumb.jpg" width="240" border="0"&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
Using the LE1700 is a joy.&amp;nbsp; I've had 12 inch slates before and I've had tablets
with SXGA screens before (which gives you a native resolution of 1400x1050) but to
have both really is having your cake and eating it, too.&amp;nbsp; The unit I had did
not have the &lt;a href="http://www.motioncomputing.com/choose/spec_vad.htm"&gt;ViewAnywhere
display&lt;/a&gt; option - having had that on my LS800 I would highly recommend it.&amp;nbsp;
The unit I had was the Core 2 Duo model and the performance was fantastic.&amp;nbsp; It
came with XP Tablet edition pre-installed, but with Motion's permission I rebuilt
it with Vista.&amp;nbsp; The Vista experience is flawless.
&lt;/p&gt;
&lt;p&gt;
Overall a great experience.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=bff632c6-4cf7-437e-bea2-215d629454d6" /&gt;</description>
      <comments>http://www.pringle.net.nz/blog/CommentView,guid,bff632c6-4cf7-437e-bea2-215d629454d6.aspx</comments>
      <category>Connectivity</category>
      <category>TabletPC</category>
      <category>Vista</category>
    </item>
    <item>
      <trackback:ping>http://www.pringle.net.nz/blog/Trackback.aspx?guid=d5d0f635-d211-47cd-a32a-0ea7387c9a8a</trackback:ping>
      <pingback:server>http://www.pringle.net.nz/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.pringle.net.nz/blog/PermaLink,guid,d5d0f635-d211-47cd-a32a-0ea7387c9a8a.aspx</pingback:target>
      <dc:creator>Craig Pringle</dc:creator>
      <wfw:comment>http://www.pringle.net.nz/blog/CommentView,guid,d5d0f635-d211-47cd-a32a-0ea7387c9a8a.aspx</wfw:comment>
      <wfw:commentRss>http://www.pringle.net.nz/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=d5d0f635-d211-47cd-a32a-0ea7387c9a8a</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
 this looks like a really great device for the mobile masses.
</p>
        <blockquote>
          <p>
The ultimate in flexibility and portability, though, is being able to share that WWAN
broadband signal across WiFi for others to enjoy. <a href="http://www.cradlepointsolutions.com">Cradlepoint
Technologies</a> to the rescue. 
</p>
          <p>
            <a href="http://www.cradlepointsolutions.com/shopDetails.asp?CatId=13&amp;SubCatId=8&amp;ProductId=48">Cradlepoint
Technologies CTR350 Cellular Travel Router</a> ( $149 ) accepts USB based
WWAN modems and mobile phones, then shares that broadband connection over a 802.11
b/g WiFi signal. If a phone is being used as the cellular modem, then the router also
charges the phone. It is a great size and solution for traveling, and also
for home use. 
</p>
        </blockquote>
        <p>
Check out pot's <a title="full post" href="http://feeds.feedburner.com/~r/Gottabemobile/~3/176720444/GBMShortcutCradlepointTechnologiesCellularRouter.aspx">full
post</a> and <a href="http://blip.tv/file/get/Gottabemobile-CradlepointTechnologiesCellularRouter750.flv">video</a>.
</p>
        <img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=d5d0f635-d211-47cd-a32a-0ea7387c9a8a" />
      </body>
      <title>GBM Reviews Cradlepoint Technologies Cellular Router</title>
      <guid isPermaLink="false">http://www.pringle.net.nz/blog/PermaLink,guid,d5d0f635-d211-47cd-a32a-0ea7387c9a8a.aspx</guid>
      <link>http://www.pringle.net.nz/blog/PermaLink,guid,d5d0f635-d211-47cd-a32a-0ea7387c9a8a.aspx</link>
      <pubDate>Mon, 29 Oct 2007 21:10:45 GMT</pubDate>
      <description>&lt;p&gt;
&amp;nbsp;this looks like a really great device for the mobile masses.
&lt;/p&gt;
&lt;blockquote&gt; 
&lt;p&gt;
The ultimate in flexibility and portability, though, is being able to share that WWAN
broadband signal across WiFi for others to enjoy. &lt;a href="http://www.cradlepointsolutions.com"&gt;Cradlepoint
Technologies&lt;/a&gt; to the rescue. 
&lt;p&gt;
&lt;a href="http://www.cradlepointsolutions.com/shopDetails.asp?CatId=13&amp;amp;SubCatId=8&amp;amp;ProductId=48"&gt;Cradlepoint
Technologies CTR350 Cellular Travel Router&lt;/a&gt;&amp;nbsp;( $149 )&amp;nbsp;accepts USB based
WWAN modems and mobile phones, then shares that broadband connection over a 802.11
b/g WiFi signal. If a phone is being used as the cellular modem, then the router also
charges the phone. It is a great size&amp;nbsp;and solution&amp;nbsp;for traveling, and also
for home use. 
&lt;/p&gt;
&lt;/blockquote&gt; 
&lt;p&gt;
Check out pot's &lt;a title="full post" href="http://feeds.feedburner.com/~r/Gottabemobile/~3/176720444/GBMShortcutCradlepointTechnologiesCellularRouter.aspx"&gt;full
post&lt;/a&gt; and &lt;a href="http://blip.tv/file/get/Gottabemobile-CradlepointTechnologiesCellularRouter750.flv"&gt;video&lt;/a&gt;.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=d5d0f635-d211-47cd-a32a-0ea7387c9a8a" /&gt;</description>
      <comments>http://www.pringle.net.nz/blog/CommentView,guid,d5d0f635-d211-47cd-a32a-0ea7387c9a8a.aspx</comments>
      <category>Connectivity</category>
    </item>
    <item>
      <trackback:ping>http://www.pringle.net.nz/blog/Trackback.aspx?guid=24b0d8a5-feb6-45c8-b58b-0e225eab3bfc</trackback:ping>
      <pingback:server>http://www.pringle.net.nz/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.pringle.net.nz/blog/PermaLink,guid,24b0d8a5-feb6-45c8-b58b-0e225eab3bfc.aspx</pingback:target>
      <dc:creator>Craig Pringle</dc:creator>
      <wfw:comment>http://www.pringle.net.nz/blog/CommentView,guid,24b0d8a5-feb6-45c8-b58b-0e225eab3bfc.aspx</wfw:comment>
      <wfw:commentRss>http://www.pringle.net.nz/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=24b0d8a5-feb6-45c8-b58b-0e225eab3bfc</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
 Mauricio over at Geekzone points out that you can get free Wi-Fi with purchase
at some Esquires Cafés in NZ.
</p>
        <blockquote>
          <p>
I found out other day that you can get one hour (or 60 MB) of free Wi-Fi when you
purchase anything at some Esquires Coffee Houses around New Zealand.<br />
The wireless Internet access is being provided by <a href="http://www.tomizone.com/">Tomizone</a>.
You just have to buy something at Esquires and ask for your One Hour Pass card with
an access code. Connect to the Tomizone hotspot, enter the code and off you go...
</p>
        </blockquote>
        <p>
Good deal! Just <a href="http://www.pringle.net.nz/blog/PermaLink,guid,36338062-d110-483d-8e03-2f20be4aefd9.aspx">last
week I was looking for something similar is Sydney</a>. So far without luck. Sydney
- get your act together!
</p>
        <p>
Not all of the Esquires stores offer, but <a href="http://www.esquires.co.nz/store/locator/index">the
store locator</a> tells you if they do or not.
</p>
        <img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=24b0d8a5-feb6-45c8-b58b-0e225eab3bfc" />
      </body>
      <title>Free Wi-Fi with your coffee - in NZ</title>
      <guid isPermaLink="false">http://www.pringle.net.nz/blog/PermaLink,guid,24b0d8a5-feb6-45c8-b58b-0e225eab3bfc.aspx</guid>
      <link>http://www.pringle.net.nz/blog/PermaLink,guid,24b0d8a5-feb6-45c8-b58b-0e225eab3bfc.aspx</link>
      <pubDate>Tue, 09 Oct 2007 22:40:48 GMT</pubDate>
      <description>&lt;p&gt;
&amp;nbsp;Mauricio over at Geekzone points out that you can get free Wi-Fi with purchase
at some Esquires Cafés in NZ.
&lt;/p&gt;
&lt;blockquote&gt; 
&lt;p&gt;
I found out other day that you can get one hour (or 60 MB) of free Wi-Fi when you
purchase anything at some Esquires Coffee Houses around New Zealand.&lt;br&gt;
The wireless Internet access is being provided by &lt;a href="http://www.tomizone.com/"&gt;Tomizone&lt;/a&gt;.
You just have to buy something at Esquires and ask for your One Hour Pass card with
an access code. Connect to the Tomizone hotspot, enter the code and off you go...
&lt;/p&gt;
&lt;/blockquote&gt; 
&lt;p&gt;
Good deal! Just &lt;a href="http://www.pringle.net.nz/blog/PermaLink,guid,36338062-d110-483d-8e03-2f20be4aefd9.aspx"&gt;last
week I was looking for something similar is Sydney&lt;/a&gt;. So far without luck. Sydney
- get your act together!
&lt;/p&gt;
&lt;p&gt;
Not all of the Esquires stores offer, but &lt;a href="http://www.esquires.co.nz/store/locator/index"&gt;the
store locator&lt;/a&gt; tells you if they do or not.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=24b0d8a5-feb6-45c8-b58b-0e225eab3bfc" /&gt;</description>
      <comments>http://www.pringle.net.nz/blog/CommentView,guid,24b0d8a5-feb6-45c8-b58b-0e225eab3bfc.aspx</comments>
      <category>Connectivity</category>
      <category>General</category>
    </item>
    <item>
      <trackback:ping>http://www.pringle.net.nz/blog/Trackback.aspx?guid=9ac1a510-1b79-40b6-9c93-b81639a8b241</trackback:ping>
      <pingback:server>http://www.pringle.net.nz/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.pringle.net.nz/blog/PermaLink,guid,9ac1a510-1b79-40b6-9c93-b81639a8b241.aspx</pingback:target>
      <dc:creator>Craig Pringle</dc:creator>
      <wfw:comment>http://www.pringle.net.nz/blog/CommentView,guid,9ac1a510-1b79-40b6-9c93-b81639a8b241.aspx</wfw:comment>
      <wfw:commentRss>http://www.pringle.net.nz/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=9ac1a510-1b79-40b6-9c93-b81639a8b241</wfw:commentRss>
      <slash:comments>3</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
This is a post I have been meaning to write for a while.  
</p>
        <p>
There has been a lot of discussion of late about Vista and its readiness - or lack
of - for the public.  Lots of people have lamented that Vista is just not there
yet.  That it came out too soon.  That it is a failure.  Some have
even reverted back to Windows XP as they believe that it is more stable and performs
better.
</p>
        <p>
Lots of people have voiced opinions one way or the other.  James Kendrick was
one of the first to <a href="http://feeds.feedburner.com/~r/jkOnTheRun/~3/147667270/jk-opinion--vis.html">speak
out against Vista</a>, and his post  included most of the key gripes.
</p>
        <blockquote>
          <p>
First and foremost in the area of performance.  I have not seen adequate performance
running Vista on anything less than a Core 2 Duo processor.  Those are only available
in the larger Tablets so the UMPCs and smaller Tablets are out of luck.  Vista
also needs 2 GB of memory to run well and the smaller mobile devices usually are only
offered with 1 GB, which isn't enough. 
</p>
          <p>
...
</p>
          <p>
If you use Sleep and Resume you quickly fall victim to the dreaded Vista la-la land
where the device fails to resume properly.  Sometimes the device comes back fine
but without a screen which is oh so useful.  Other times it comes back but hangs
the entire device up in just a few seconds. 
</p>
          <p>
...
</p>
          <p>
One of the most beneficial things you can do to improve the mobile device experience
is use it with a dock.  Don't even get me started with how badly Vista handles
docking and undocking of these mobile devices, especially if you hang an external
monitor off the dock.
</p>
        </blockquote>
        <p>
Other general concerns are performance, battery life and mysterious disk thrashing. These
are all real and valid concerns.  However, they are not the end of the world
and they are not unique to Vista.  In fact - I believe that many of them are
not the fault of Vista at all.  
</p>
        <p>
I disagree with those that say that Vista is a dog and I will not be going back to
XP on any of my machines - ever.
</p>
        <p>
The first point I will make in Vista's defense is to point out that not everything
bad that happens in on a computer is the fault of the OS.  On every single computer
there are hundreds of device drivers and bits of software that could be the culprit
for some of the issues outlined above.  Specifically the resume from
sleep and docking station issues described above are most likely driver issues. 
XP has been around for a while and hardware manufacturers have had a lot of practice
writing nice, stable and functional drivers for the XP platform.  Vista is both
new and very different.  I am disappointed, but not very surprised, that driver
support is not that great.
</p>
        <p>
Secondly, none of this is new to Vista.  I am an IT consultant.  I worked
on a very early Windows XP deployment for a government client in New Zealand. 
And guess what?  Driver support was appalling across the board, but it was worse
for mobile PCs.  Performance was a joke.  There was no way Windows XP could
really run on a machine that just met the minimum specs.  Blue screens and hangs
were common.   When XP shipped it was worse than my experience working on
a project with Vista in the Technology Adoption Program using beta code.  The
released code is far and away more stable than Windows XP was at the same time in
the product lifecycle.  What is significantly different is that the flaming and
debate happened in the newsgroups rather than on the blogs we have today, which was
much more of a closed community.
</p>
        <p>
When Microsoft ships a new OS they tend to lead the hardware.  By that I mean
that it is the hardware that comes out 6 months after the OS that runs it really well. 
I think this is probably intentional - perhaps because it then extends what they can
include in the product at ship date, bearing in mind that it will need to be a viable
product for a couple of years.  I suspect that this will be the same for future
OS releases.
</p>
        <p>
The short version of all of that is that the issues we are seeing today are normal
for a new OS and they are much more complex than "Vista is Bad".  Some of the
blame rests with application developers.  Some rests with hardware manufacturers
and some rests with Microsoft, but it will all be fixed in the fullness of time.
</p>
        <p>
Until then I won't go back - simply because the benefits out weigh the pain. 
The tablet functionality is way better.  The networking is better.  The
Mobility Center is better.  Presentation mode rocks.  All of that functionality
is nothing compared to the security enhancements.  When XP shipped the world
was a different place.  The general public knew about viruses but had never heard
of root kits, malware or spyware.  The Internet was not the efficient distribution
system of nasties that it is today.  User Access Control (UAC) and protected
mode IE go a long way to preventing then initial infection and Windows Defender makes
it easier clean up after the fact.
</p>
        <p>
Vista is here to stay.  I'm not going back and the experience will get better
as the hardware catches up.
</p>
        <img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=9ac1a510-1b79-40b6-9c93-b81639a8b241" />
      </body>
      <title>Windows Vista is a vast improvement</title>
      <guid isPermaLink="false">http://www.pringle.net.nz/blog/PermaLink,guid,9ac1a510-1b79-40b6-9c93-b81639a8b241.aspx</guid>
      <link>http://www.pringle.net.nz/blog/PermaLink,guid,9ac1a510-1b79-40b6-9c93-b81639a8b241.aspx</link>
      <pubDate>Tue, 09 Oct 2007 11:30:18 GMT</pubDate>
      <description>&lt;p&gt;
This is a post I have been meaning to write for a while.&amp;nbsp; 
&lt;/p&gt;
&lt;p&gt;
There has been a lot of discussion of late about Vista and its readiness - or lack
of - for the public.&amp;nbsp; Lots of people have lamented that Vista is just not there
yet.&amp;nbsp; That it came out too soon.&amp;nbsp; That it is a failure.&amp;nbsp; Some have
even reverted back to Windows XP as they believe that it is more stable and performs
better.
&lt;/p&gt;
&lt;p&gt;
Lots of people have voiced opinions one way or the other.&amp;nbsp; James Kendrick was
one of the first to &lt;a href="http://feeds.feedburner.com/~r/jkOnTheRun/~3/147667270/jk-opinion--vis.html"&gt;speak
out against Vista&lt;/a&gt;, and his post&amp;nbsp; included most of the key gripes.
&lt;/p&gt;
&lt;blockquote&gt; 
&lt;p&gt;
First and foremost in the area of performance.&amp;nbsp; I have not seen adequate performance
running Vista on anything less than a Core 2 Duo processor.&amp;nbsp; Those are only available
in the larger Tablets so the UMPCs and smaller Tablets are out of luck.&amp;nbsp; Vista
also needs 2 GB of memory to run well and the smaller mobile devices usually are only
offered with 1 GB, which isn't enough.&amp;nbsp;
&lt;/p&gt;
&lt;p&gt;
...
&lt;/p&gt;
&lt;p&gt;
If you use Sleep and Resume you quickly fall victim to the dreaded Vista la-la land
where the device fails to resume properly.&amp;nbsp; Sometimes the device comes back fine
but without a screen which is oh so useful.&amp;nbsp; Other times it comes back but hangs
the entire device up in just a few seconds.&amp;nbsp;
&lt;/p&gt;
&lt;p&gt;
...
&lt;/p&gt;
&lt;p&gt;
One of the most beneficial things you can do to improve the mobile device experience
is use it with a dock.&amp;nbsp; Don't even get me started with how badly Vista handles
docking and undocking of these mobile devices, especially if you hang an external
monitor off the dock.
&lt;/p&gt;
&lt;/blockquote&gt; 
&lt;p&gt;
Other general concerns are performance, battery life and mysterious disk thrashing.&amp;nbsp;These
are all real and valid concerns.&amp;nbsp; However, they are not the end of the world
and they are not unique to Vista.&amp;nbsp; In fact - I believe that many of them are
not the fault of Vista at all.&amp;nbsp; 
&lt;/p&gt;
&lt;p&gt;
I disagree with those that say that Vista is a dog and I will not be going back to
XP on any of my machines - ever.
&lt;/p&gt;
&lt;p&gt;
The first point I will make in Vista's defense is to point out that not everything
bad that happens in on a computer is the fault of the OS.&amp;nbsp; On every single computer
there are hundreds of device drivers and bits of software that could be the culprit
for some of&amp;nbsp;the issues outlined above.&amp;nbsp; Specifically&amp;nbsp;the resume from
sleep and docking station issues described above are most likely driver issues.&amp;nbsp;
XP has been around for a while and hardware manufacturers have had a lot of practice
writing nice, stable and functional drivers for the XP platform.&amp;nbsp; Vista is both
new and very different.&amp;nbsp; I am disappointed, but not very surprised, that driver
support is not that great.
&lt;/p&gt;
&lt;p&gt;
Secondly, none of this is new to Vista.&amp;nbsp; I am an IT consultant.&amp;nbsp; I worked
on a very early Windows XP deployment for a government client in New Zealand.&amp;nbsp;
And guess what?&amp;nbsp; Driver support was appalling across the board, but it was worse
for mobile PCs.&amp;nbsp; Performance was a joke.&amp;nbsp; There was no way Windows XP could
really run on a machine that just met the minimum specs.&amp;nbsp; Blue screens and hangs
were common.&amp;nbsp;&amp;nbsp; When XP shipped it was worse than my experience working on
a project with Vista in the Technology Adoption Program using beta code.&amp;nbsp; The
released code is far and away more stable than Windows XP was at the same time in
the product lifecycle.&amp;nbsp; What is significantly different is that the flaming and
debate happened in the newsgroups rather than on the blogs we have today, which was
much more of a closed community.
&lt;/p&gt;
&lt;p&gt;
When Microsoft ships a new OS they tend to lead the hardware.&amp;nbsp; By that I mean
that it is the hardware that comes out 6 months after the OS that runs it really well.&amp;nbsp;
I think this is probably intentional - perhaps because it then extends what they can
include in the product at ship date, bearing in mind that it will need to be a viable
product for a couple of years.&amp;nbsp; I suspect that this will be the same for future
OS releases.
&lt;/p&gt;
&lt;p&gt;
The short version of all of that is that the issues we are seeing today are normal
for a new OS and they are much more complex than "Vista is Bad".&amp;nbsp; Some of the
blame rests with application developers.&amp;nbsp; Some rests with hardware manufacturers
and some rests with Microsoft, but it will all be fixed in the fullness of time.
&lt;/p&gt;
&lt;p&gt;
Until then I won't go back - simply because the benefits out weigh the pain.&amp;nbsp;
The tablet functionality is way better.&amp;nbsp; The networking is better.&amp;nbsp; The
Mobility Center is better.&amp;nbsp; Presentation mode rocks.&amp;nbsp; All of that functionality
is nothing compared to the security enhancements.&amp;nbsp; When XP shipped the world
was a different place.&amp;nbsp; The general public knew about viruses but had never heard
of root kits, malware or spyware.&amp;nbsp; The Internet was not the efficient distribution
system of nasties that it is today.&amp;nbsp; User Access Control (UAC) and protected
mode IE go a long way to preventing then initial infection and Windows Defender makes
it easier clean up after the fact.
&lt;/p&gt;
&lt;p&gt;
Vista is here to stay.&amp;nbsp; I'm not going back and the experience will get better
as the hardware catches up.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=9ac1a510-1b79-40b6-9c93-b81639a8b241" /&gt;</description>
      <comments>http://www.pringle.net.nz/blog/CommentView,guid,9ac1a510-1b79-40b6-9c93-b81639a8b241.aspx</comments>
      <category>Connectivity</category>
      <category>General</category>
      <category>TabletPC</category>
      <category>Vista</category>
    </item>
    <item>
      <trackback:ping>http://www.pringle.net.nz/blog/Trackback.aspx?guid=36338062-d110-483d-8e03-2f20be4aefd9</trackback:ping>
      <pingback:server>http://www.pringle.net.nz/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.pringle.net.nz/blog/PermaLink,guid,36338062-d110-483d-8e03-2f20be4aefd9.aspx</pingback:target>
      <dc:creator>Craig Pringle</dc:creator>
      <wfw:comment>http://www.pringle.net.nz/blog/CommentView,guid,36338062-d110-483d-8e03-2f20be4aefd9.aspx</wfw:comment>
      <wfw:commentRss>http://www.pringle.net.nz/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=36338062-d110-483d-8e03-2f20be4aefd9</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
looking for a venue for the previously mentioned <a href="http://www.pringle.net.nz/blog/PermaLink,guid,a345f56a-a16b-43d2-97bb-403f23993c4b.aspx">Geek
Coffee in Sydney</a>. Can anyone recommend a cafe in Sydney CBD that has WiFi? Not
a must have but nice to have...
</p>
        <img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=36338062-d110-483d-8e03-2f20be4aefd9" />
      </body>
      <title>Anyone know a cafe with good coffee and Wi-Fi?</title>
      <guid isPermaLink="false">http://www.pringle.net.nz/blog/PermaLink,guid,36338062-d110-483d-8e03-2f20be4aefd9.aspx</guid>
      <link>http://www.pringle.net.nz/blog/PermaLink,guid,36338062-d110-483d-8e03-2f20be4aefd9.aspx</link>
      <pubDate>Tue, 02 Oct 2007 20:51:44 GMT</pubDate>
      <description>&lt;p&gt;
looking for a venue for the previously mentioned &lt;a href="http://www.pringle.net.nz/blog/PermaLink,guid,a345f56a-a16b-43d2-97bb-403f23993c4b.aspx"&gt;Geek
Coffee in Sydney&lt;/a&gt;. Can anyone recommend a cafe in Sydney CBD that has WiFi? Not
a must have but nice to have...
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=36338062-d110-483d-8e03-2f20be4aefd9" /&gt;</description>
      <comments>http://www.pringle.net.nz/blog/CommentView,guid,36338062-d110-483d-8e03-2f20be4aefd9.aspx</comments>
      <category>Connectivity</category>
      <category>General</category>
      <category>TabletPC</category>
    </item>
    <item>
      <trackback:ping>http://www.pringle.net.nz/blog/Trackback.aspx?guid=9b7eeea1-4c3f-41a1-99de-6fccadf454d6</trackback:ping>
      <pingback:server>http://www.pringle.net.nz/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.pringle.net.nz/blog/PermaLink,guid,9b7eeea1-4c3f-41a1-99de-6fccadf454d6.aspx</pingback:target>
      <dc:creator>Craig Pringle</dc:creator>
      <wfw:comment>http://www.pringle.net.nz/blog/CommentView,guid,9b7eeea1-4c3f-41a1-99de-6fccadf454d6.aspx</wfw:comment>
      <wfw:commentRss>http://www.pringle.net.nz/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=9b7eeea1-4c3f-41a1-99de-6fccadf454d6</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
 Skype is claiming that the recent outage was caused by Windows Update: 
</p>
        <blockquote>
          <p>
On Thursday, 16th August 2007, the Skype peer-to-peer network became unstable and
suffered a critical disruption. The disruption was triggered by a massive restart
of our users' computers across the globe within a very short timeframe as they re-booted
after receiving a routine set of patches through Windows Update. The high number of
restarts affected Skype' s network resources. This caused a flood of log-in requests,
which, combined with the lack of peer-to-peer network resources, prompted a chain
reaction that had a critical impact.
</p>
        </blockquote>
        <p>
Loren the Incremental Blogger <a title="sounds a bit skeptical " href="http://journals.tuxreports.com/lch/archives/004404.html">sounds
a bit skeptical </a> and I agree.
</p>
        <blockquote>
          <p>
I thought that the Windows Updates weren't all done at once--I doubt Microsoft would
want the load either. I don't doubt Skype's word that there was a significant load
in their app being launched and then users signing on, but it sure would be interesting
to hear from Microsoft whether there was any unusual traffic from their perspective
that pacth Tuesday.
</p>
        </blockquote>
        <p>
I think this explanation from Skype is weak. We know the vast number of consumers
don't change the default settings, which are to automatically update at 3am in their
local timezone. This is going to cause the updates to be fairly well distributed over
a 24 hr period.
</p>
        <p>
A high number of login requests does not necessarily mean that lots of machines restarted.
Simply that they lost their connection with Skype. It would seem that if this were
to happen to a large number of users around the globe simultaneously the root cause
would most likely be at the one thing all these machines connect to - Skype itself.
</p>
        <img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=9b7eeea1-4c3f-41a1-99de-6fccadf454d6" />
      </body>
      <title>Skype outage blamed on Windows Update?</title>
      <guid isPermaLink="false">http://www.pringle.net.nz/blog/PermaLink,guid,9b7eeea1-4c3f-41a1-99de-6fccadf454d6.aspx</guid>
      <link>http://www.pringle.net.nz/blog/PermaLink,guid,9b7eeea1-4c3f-41a1-99de-6fccadf454d6.aspx</link>
      <pubDate>Tue, 21 Aug 2007 22:02:14 GMT</pubDate>
      <description>&lt;p&gt;
&amp;nbsp;Skype is claiming that the recent outage was caused by Windows Update: 
&lt;/p&gt;
&lt;blockquote&gt; 
&lt;p&gt;
On Thursday, 16th August 2007, the Skype peer-to-peer network became unstable and
suffered a critical disruption. The disruption was triggered by a massive restart
of our users' computers across the globe within a very short timeframe as they re-booted
after receiving a routine set of patches through Windows Update. The high number of
restarts affected Skype' s network resources. This caused a flood of log-in requests,
which, combined with the lack of peer-to-peer network resources, prompted a chain
reaction that had a critical impact.
&lt;/p&gt;
&lt;/blockquote&gt; 
&lt;p&gt;
Loren the Incremental Blogger &lt;a title="sounds a bit skeptical " href="http://journals.tuxreports.com/lch/archives/004404.html"&gt;sounds
a bit skeptical &lt;/a&gt; and I agree.
&lt;/p&gt;
&lt;blockquote&gt; 
&lt;p&gt;
I thought that the Windows Updates weren't all done at once--I doubt Microsoft would
want the load either. I don't doubt Skype's word that there was a significant load
in their app being launched and then users signing on, but it sure would be interesting
to hear from Microsoft whether there was any unusual traffic from their perspective
that pacth Tuesday.
&lt;/p&gt;
&lt;/blockquote&gt; 
&lt;p&gt;
I think this explanation from Skype is weak. We know the vast number of consumers
don't change the default settings, which are to automatically update at 3am in their
local timezone. This is going to cause the updates to be fairly well distributed over
a 24 hr period.
&lt;/p&gt;
&lt;p&gt;
A high number of login requests does not necessarily mean that lots of machines restarted.
Simply that they lost their connection with Skype. It would seem that if this were
to happen to a large number of users around the globe simultaneously the root cause
would most likely be at the one thing all these machines connect to - Skype itself.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=9b7eeea1-4c3f-41a1-99de-6fccadf454d6" /&gt;</description>
      <comments>http://www.pringle.net.nz/blog/CommentView,guid,9b7eeea1-4c3f-41a1-99de-6fccadf454d6.aspx</comments>
      <category>Connectivity</category>
      <category>General</category>
    </item>
    <item>
      <trackback:ping>http://www.pringle.net.nz/blog/Trackback.aspx?guid=cb4e9f3e-e12a-40c6-9e92-26b7b1fad4a5</trackback:ping>
      <pingback:server>http://www.pringle.net.nz/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.pringle.net.nz/blog/PermaLink,guid,cb4e9f3e-e12a-40c6-9e92-26b7b1fad4a5.aspx</pingback:target>
      <dc:creator>Craig Pringle</dc:creator>
      <wfw:comment>http://www.pringle.net.nz/blog/CommentView,guid,cb4e9f3e-e12a-40c6-9e92-26b7b1fad4a5.aspx</wfw:comment>
      <wfw:commentRss>http://www.pringle.net.nz/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=cb4e9f3e-e12a-40c6-9e92-26b7b1fad4a5</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
With a Windows Mobile 5 device, once it was paired with your Tablet you could create
a dial up connection on your computer that would connect to the Internet via whatever
data protocol your device uses (e.g. EVDO, GPRS or HSDPA).
</p>
        <p>
With Windows Mobile 6 you can still connect to the Internet using your SmartPhone
as a modem, but the process is slightly different and requires you to complete steps
on both the device and on your tablet.  The following steps outline the process. 
This assumes you have already paired your phone with the tablet.
</p>
        <p>
1) On the Windows Mobile 6 device select Internet Connection Sharing
</p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/UsingaWindowsMobile6DeviceasaBluetoothmo_11C96/ICS.jpg" atomicselection="true">
            <img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="237" alt="ICS" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/UsingaWindowsMobile6DeviceasaBluetoothmo_11C96/ICS_thumb.jpg" width="240" border="0" />
          </a>
        </p>
        <p>
2) Next click the Connect button.  This establishes the connection to the Internet
and readies the device to accept a connection from your tablet.
</p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/UsingaWindowsMobile6DeviceasaBluetoothmo_11C96/ICS2.jpg" atomicselection="true">
            <img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="180" alt="ICS2" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/UsingaWindowsMobile6DeviceasaBluetoothmo_11C96/ICS2_thumb.jpg" width="240" border="0" />
          </a>
        </p>
        <p>
Now that the mobile device is ready to accept the connection you need to go to the
tablet to establish the connection.  
</p>
        <p>
3) On the tablet right click the Bluetooth icon in the system tray and select join
a personal area network.
</p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/UsingaWindowsMobile6DeviceasaBluetoothmo_11C96/JoinPAN.png" atomicselection="true">
            <img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="196" alt="JoinPAN" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/UsingaWindowsMobile6DeviceasaBluetoothmo_11C96/JoinPAN_thumb.png" width="240" border="0" />
          </a>
        </p>
        <p>
4) In the <em>Bluetooth Personal Area Network Devices</em> dialog select your phone
in the Access Points area and then click connect.
</p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/UsingaWindowsMobile6DeviceasaBluetoothmo_11C96/JoinPan2.png" atomicselection="true">
            <img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="240" alt="JoinPan2" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/UsingaWindowsMobile6DeviceasaBluetoothmo_11C96/JoinPan2_thumb.png" width="202" border="0" />
          </a>
        </p>
        <p>
Viola - you are online!
</p>
        <img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=cb4e9f3e-e12a-40c6-9e92-26b7b1fad4a5" />
      </body>
      <title>Using a Windows Mobile 6 Device as a Bluetooth modem</title>
      <guid isPermaLink="false">http://www.pringle.net.nz/blog/PermaLink,guid,cb4e9f3e-e12a-40c6-9e92-26b7b1fad4a5.aspx</guid>
      <link>http://www.pringle.net.nz/blog/PermaLink,guid,cb4e9f3e-e12a-40c6-9e92-26b7b1fad4a5.aspx</link>
      <pubDate>Sun, 05 Aug 2007 10:14:52 GMT</pubDate>
      <description>&lt;p&gt;
With a Windows Mobile 5 device, once it was paired with your Tablet you could create
a dial up connection on your computer that would connect to the Internet via whatever
data protocol your device uses (e.g. EVDO, GPRS or HSDPA).
&lt;/p&gt;
&lt;p&gt;
With Windows Mobile 6 you can still connect to the Internet using your SmartPhone
as a modem, but the process is slightly different and requires you to complete steps
on both the device and on your tablet.&amp;nbsp; The following steps outline the process.&amp;nbsp;
This assumes you have already paired your phone with the tablet.
&lt;/p&gt;
&lt;p&gt;
1) On the Windows Mobile 6 device select Internet Connection Sharing
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/UsingaWindowsMobile6DeviceasaBluetoothmo_11C96/ICS.jpg" atomicselection="true"&gt;&lt;img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="237" alt="ICS" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/UsingaWindowsMobile6DeviceasaBluetoothmo_11C96/ICS_thumb.jpg" width="240" border="0"&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
2) Next click the Connect button.&amp;nbsp; This establishes the connection to the Internet
and readies the device to accept a connection from your tablet.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/UsingaWindowsMobile6DeviceasaBluetoothmo_11C96/ICS2.jpg" atomicselection="true"&gt;&lt;img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="180" alt="ICS2" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/UsingaWindowsMobile6DeviceasaBluetoothmo_11C96/ICS2_thumb.jpg" width="240" border="0"&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
Now that the mobile device is ready to accept the connection you need to go to the
tablet to establish the connection.&amp;nbsp; 
&lt;/p&gt;
&lt;p&gt;
3) On the tablet right click the Bluetooth icon in the system tray and select join
a personal area network.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/UsingaWindowsMobile6DeviceasaBluetoothmo_11C96/JoinPAN.png" atomicselection="true"&gt;&lt;img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="196" alt="JoinPAN" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/UsingaWindowsMobile6DeviceasaBluetoothmo_11C96/JoinPAN_thumb.png" width="240" border="0"&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
4) In the &lt;em&gt;Bluetooth Personal Area Network Devices&lt;/em&gt; dialog select your phone
in the Access Points area and then click connect.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/UsingaWindowsMobile6DeviceasaBluetoothmo_11C96/JoinPan2.png" atomicselection="true"&gt;&lt;img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="240" alt="JoinPan2" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/UsingaWindowsMobile6DeviceasaBluetoothmo_11C96/JoinPan2_thumb.png" width="202" border="0"&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
Viola - you are online!
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=cb4e9f3e-e12a-40c6-9e92-26b7b1fad4a5" /&gt;</description>
      <comments>http://www.pringle.net.nz/blog/CommentView,guid,cb4e9f3e-e12a-40c6-9e92-26b7b1fad4a5.aspx</comments>
      <category>Connectivity</category>
      <category>TabletPC</category>
      <category>Vista</category>
    </item>
    <item>
      <trackback:ping>http://www.pringle.net.nz/blog/Trackback.aspx?guid=4e1a702a-79e7-4540-904c-6ed272c93906</trackback:ping>
      <pingback:server>http://www.pringle.net.nz/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.pringle.net.nz/blog/PermaLink,guid,4e1a702a-79e7-4540-904c-6ed272c93906.aspx</pingback:target>
      <dc:creator>Craig Pringle</dc:creator>
      <wfw:comment>http://www.pringle.net.nz/blog/CommentView,guid,4e1a702a-79e7-4540-904c-6ed272c93906.aspx</wfw:comment>
      <wfw:commentRss>http://www.pringle.net.nz/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=4e1a702a-79e7-4540-904c-6ed272c93906</wfw:commentRss>
      <slash:comments>1</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Warner Crocker over on GBM has <a title="spotted a press release" href="http://feeds.feedburner.com/~r/Gottabemobile/~3/136965383/DoesThisLookTailorMadeForAMobilePC.aspx">spotted
a press release</a> from <a href="www.qantas.com.au">Qantas</a> announcing that it
will be offering Wi-fi and electrical outlets in the premium economy section on some
of their new fleet...
</p>
        <blockquote>
          <p>
Don’t you wish every airline would do this? No word on how much this will add to the
cost of the flight. 
</p>
          <p>
            <img alt="Qantas_270x274" hspace="5" src="http://www.gottabemobile.com/blogimages/qantas_270x274.jpg" vspace="10" border="0" />
          </p>
        </blockquote>
        <p>
While I don't know how much it will cost for PE on <a href="www.qantas.com.au">Qantas</a> I
do know that <a href="http://www.airnz.co.nz">Air New Zealand</a> has offered power
in their PE section for quite some time.  On a Auckland to LA flight booked at
the last minute I know that this adds about NZ$600 one way.  With the way the
NZ dollar is at the moment (about US$0.80) this equates to US$480.  If you are
travelling for work having power on an 11hr flight is well worth it.  As a bonus
you get more leg room and better food as well.  That said when I fly for work
they always stick me in (false) economy.  The only time I've flown premium was
when I upgraded on my airpoints. 
</p>
        <p>
Air New Zealand don't offer Wi-Fi though - I wonder how effective that is going to
be?  I am hanging out to try it.
</p>
        <img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=4e1a702a-79e7-4540-904c-6ed272c93906" />
      </body>
      <title>Does This Look Tailor Made for a Mobilei PC?</title>
      <guid isPermaLink="false">http://www.pringle.net.nz/blog/PermaLink,guid,4e1a702a-79e7-4540-904c-6ed272c93906.aspx</guid>
      <link>http://www.pringle.net.nz/blog/PermaLink,guid,4e1a702a-79e7-4540-904c-6ed272c93906.aspx</link>
      <pubDate>Tue, 24 Jul 2007 22:23:34 GMT</pubDate>
      <description>&lt;p&gt;
Warner Crocker over on GBM has &lt;a title="spotted a press release" href="http://feeds.feedburner.com/~r/Gottabemobile/~3/136965383/DoesThisLookTailorMadeForAMobilePC.aspx"&gt;spotted
a press release&lt;/a&gt; from &lt;a href="www.qantas.com.au"&gt;Qantas&lt;/a&gt; announcing that it
will be offering Wi-fi and electrical outlets in the premium economy section on some
of their new fleet...
&lt;/p&gt;
&lt;blockquote&gt; 
&lt;p&gt;
Don’t you wish every airline would do this? No word on how much this will add to the
cost of the flight. 
&lt;p&gt;
&lt;img alt="Qantas_270x274" hspace="5" src="http://www.gottabemobile.com/blogimages/qantas_270x274.jpg" vspace="10" border="0"&gt; 
&lt;/p&gt;
&lt;/blockquote&gt; 
&lt;p&gt;
While I don't know how much it will cost for PE on &lt;a href="www.qantas.com.au"&gt;Qantas&lt;/a&gt; I
do know that &lt;a href="http://www.airnz.co.nz"&gt;Air New Zealand&lt;/a&gt; has offered power
in their PE section for quite some time.&amp;nbsp; On a Auckland to LA flight booked at
the last minute I know that this adds about NZ$600 one way.&amp;nbsp; With the way the
NZ dollar is at the moment (about US$0.80) this equates to US$480.&amp;nbsp; If you are
travelling for work having power on an 11hr flight is well worth it.&amp;nbsp; As a bonus
you get more leg room and better food as well.&amp;nbsp; That said when I fly for work
they always stick me in (false) economy.&amp;nbsp; The only time I've flown premium was
when I upgraded on my airpoints. 
&lt;p&gt;
Air New Zealand don't offer Wi-Fi though - I wonder how effective that is going to
be?&amp;nbsp; I am hanging out to try it.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=4e1a702a-79e7-4540-904c-6ed272c93906" /&gt;</description>
      <comments>http://www.pringle.net.nz/blog/CommentView,guid,4e1a702a-79e7-4540-904c-6ed272c93906.aspx</comments>
      <category>Connectivity</category>
      <category>General</category>
      <category>TabletPC</category>
    </item>
    <item>
      <trackback:ping>http://www.pringle.net.nz/blog/Trackback.aspx?guid=9b0ae02a-8024-47b8-abff-17dba946ac12</trackback:ping>
      <pingback:server>http://www.pringle.net.nz/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.pringle.net.nz/blog/PermaLink,guid,9b0ae02a-8024-47b8-abff-17dba946ac12.aspx</pingback:target>
      <dc:creator>Craig Pringle</dc:creator>
      <wfw:comment>http://www.pringle.net.nz/blog/CommentView,guid,9b0ae02a-8024-47b8-abff-17dba946ac12.aspx</wfw:comment>
      <wfw:commentRss>http://www.pringle.net.nz/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=9b0ae02a-8024-47b8-abff-17dba946ac12</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Broadband at home again. I've been connectivity challenged since leaving NZ, but while
I was awayin the US our ADSLwas provisioned and ourcontainer arrived. I just finished
setting up our ADSL &amp; Wi-fi at home.
</p>
        <p>
Feeds, whenever I want! Yay!
</p>
        <img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=9b0ae02a-8024-47b8-abff-17dba946ac12" />
      </body>
      <title>Oh Bliss!</title>
      <guid isPermaLink="false">http://www.pringle.net.nz/blog/PermaLink,guid,9b0ae02a-8024-47b8-abff-17dba946ac12.aspx</guid>
      <link>http://www.pringle.net.nz/blog/PermaLink,guid,9b0ae02a-8024-47b8-abff-17dba946ac12.aspx</link>
      <pubDate>Wed, 13 Jun 2007 11:39:29 GMT</pubDate>
      <description>&lt;p&gt;
Broadband at home again. I've been connectivity challenged since leaving NZ, but while
I was awayin the US our ADSLwas provisioned and ourcontainer arrived. I just finished
setting up our ADSL &amp;amp; Wi-fi at home.
&lt;/p&gt;
&lt;p&gt;
Feeds, whenever I want! Yay!
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=9b0ae02a-8024-47b8-abff-17dba946ac12" /&gt;</description>
      <comments>http://www.pringle.net.nz/blog/CommentView,guid,9b0ae02a-8024-47b8-abff-17dba946ac12.aspx</comments>
      <category>Connectivity</category>
    </item>
    <item>
      <trackback:ping>http://www.pringle.net.nz/blog/Trackback.aspx?guid=5e56f051-573e-42d9-b216-7903794cb9a7</trackback:ping>
      <pingback:server>http://www.pringle.net.nz/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.pringle.net.nz/blog/PermaLink,guid,5e56f051-573e-42d9-b216-7903794cb9a7.aspx</pingback:target>
      <dc:creator>Craig Pringle</dc:creator>
      <wfw:comment>http://www.pringle.net.nz/blog/CommentView,guid,5e56f051-573e-42d9-b216-7903794cb9a7.aspx</wfw:comment>
      <wfw:commentRss>http://www.pringle.net.nz/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=5e56f051-573e-42d9-b216-7903794cb9a7</wfw:commentRss>
      <slash:comments>2</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
At TechEd, as you might imagine, there is a lot of wireless noise. There is the conference
wi-fi, but there are also a bunch of ad-hoc or computer to computer networks with
remarkably similar names. In the wireless list infrastructure and ad-hoc networks
have different icons. 
</p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/HideadhocwirelessnetworksinVista_CAAD/image%7B0%7D%5B1%5D.png" atomicselection="true">
            <img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="134" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/HideadhocwirelessnetworksinVista_CAAD/image%7B0%7D.png" width="240" border="0" />
          </a>
        </p>
        <p>
You have to question the motives of people trying to fists for wi-fi users like that.
while I know better than to go connecting to ad-hoc networks willy nilly, I wanted
to remove the risk of accidentally connecting to one with the same name.
</p>
        <p>
In Vista you can, via the command line, filter the list of available wireless networks.
To filter out ad-hoc networks run the following from a command line (running as admin,
all on one line)
</p>
        <p>
          <em>netsh wlan add filter permission=denyall networktype=adhoc</em>
        </p>
        <p>
to reverse this again run the following:
</p>
        <p>
          <em>netsh wlan del filter permission=denyall networktype=adhoc</em>
        </p>
        <img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=5e56f051-573e-42d9-b216-7903794cb9a7" />
      </body>
      <title>Hide ad-hoc wireless networks in Vista</title>
      <guid isPermaLink="false">http://www.pringle.net.nz/blog/PermaLink,guid,5e56f051-573e-42d9-b216-7903794cb9a7.aspx</guid>
      <link>http://www.pringle.net.nz/blog/PermaLink,guid,5e56f051-573e-42d9-b216-7903794cb9a7.aspx</link>
      <pubDate>Mon, 04 Jun 2007 18:25:33 GMT</pubDate>
      <description>&lt;p&gt;
At TechEd, as you might imagine, there is a lot of wireless noise. There is the conference
wi-fi, but there are also a bunch of ad-hoc or computer to computer networks with
remarkably similar names. In the wireless list infrastructure and ad-hoc networks
have different icons. 
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/HideadhocwirelessnetworksinVista_CAAD/image%7B0%7D%5B1%5D.png" atomicselection="true"&gt;&lt;img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="134" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/HideadhocwirelessnetworksinVista_CAAD/image%7B0%7D.png" width="240" border="0"&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
You have to question the motives of people trying to fists for wi-fi users like that.
while I know better than to go connecting to ad-hoc networks willy nilly, I wanted
to remove the risk of accidentally connecting to one with the same name.
&lt;/p&gt;
&lt;p&gt;
In Vista you can, via the command line, filter the list of available wireless networks.
To filter out ad-hoc networks run the following from a command line (running as admin,
all on one line)
&lt;/p&gt;
&lt;p&gt;
&lt;em&gt;netsh wlan add filter permission=denyall networktype=adhoc&lt;/em&gt;
&lt;/p&gt;
&lt;p&gt;
to reverse this again run the following:
&lt;/p&gt;
&lt;p&gt;
&lt;em&gt;netsh wlan del filter permission=denyall networktype=adhoc&lt;/em&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=5e56f051-573e-42d9-b216-7903794cb9a7" /&gt;</description>
      <comments>http://www.pringle.net.nz/blog/CommentView,guid,5e56f051-573e-42d9-b216-7903794cb9a7.aspx</comments>
      <category>Connectivity</category>
      <category>General</category>
      <category>Vista</category>
    </item>
    <item>
      <trackback:ping>http://www.pringle.net.nz/blog/Trackback.aspx?guid=2611cc42-9375-41f6-b193-a735c81d7aae</trackback:ping>
      <pingback:server>http://www.pringle.net.nz/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.pringle.net.nz/blog/PermaLink,guid,2611cc42-9375-41f6-b193-a735c81d7aae.aspx</pingback:target>
      <dc:creator>Craig Pringle</dc:creator>
      <wfw:comment>http://www.pringle.net.nz/blog/CommentView,guid,2611cc42-9375-41f6-b193-a735c81d7aae.aspx</wfw:comment>
      <wfw:commentRss>http://www.pringle.net.nz/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=2611cc42-9375-41f6-b193-a735c81d7aae</wfw:commentRss>
      <slash:comments>2</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
I'm trying out a Vodafone 3G Connect HSDPA modem for work. I found the 32-bit Vista
driver on the <a href="http://www.vodafone.com.au">Vodafone</a> Australia website.
Install under Vista took ages, but it was well worth it. I'm browsing my feeds and
so far it has not missed a beat. Very cool. I'll do a proper speed test later today
but for browsing at least it is quite snappy.
</p>
        <img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=2611cc42-9375-41f6-b193-a735c81d7aae" />
      </body>
      <title>Using 3G on the train</title>
      <guid isPermaLink="false">http://www.pringle.net.nz/blog/PermaLink,guid,2611cc42-9375-41f6-b193-a735c81d7aae.aspx</guid>
      <link>http://www.pringle.net.nz/blog/PermaLink,guid,2611cc42-9375-41f6-b193-a735c81d7aae.aspx</link>
      <pubDate>Thu, 24 May 2007 21:35:55 GMT</pubDate>
      <description>&lt;p&gt;
I'm trying out a Vodafone 3G Connect HSDPA modem for work. I found the 32-bit Vista
driver on the &lt;a href="http://www.vodafone.com.au"&gt;Vodafone&lt;/a&gt; Australia website.
Install under Vista took ages, but it was well worth it. I'm browsing my feeds and
so far it has not missed a beat. Very cool. I'll do a proper speed test later today
but for browsing at least it is quite snappy.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=2611cc42-9375-41f6-b193-a735c81d7aae" /&gt;</description>
      <comments>http://www.pringle.net.nz/blog/CommentView,guid,2611cc42-9375-41f6-b193-a735c81d7aae.aspx</comments>
      <category>Connectivity</category>
      <category>Vista</category>
    </item>
    <item>
      <trackback:ping>http://www.pringle.net.nz/blog/Trackback.aspx?guid=a786e60c-c675-4a7f-9884-c306f9ca60d4</trackback:ping>
      <pingback:server>http://www.pringle.net.nz/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.pringle.net.nz/blog/PermaLink,guid,a786e60c-c675-4a7f-9884-c306f9ca60d4.aspx</pingback:target>
      <dc:creator>Craig Pringle</dc:creator>
      <wfw:comment>http://www.pringle.net.nz/blog/CommentView,guid,a786e60c-c675-4a7f-9884-c306f9ca60d4.aspx</wfw:comment>
      <wfw:commentRss>http://www.pringle.net.nz/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=a786e60c-c675-4a7f-9884-c306f9ca60d4</wfw:commentRss>
      <slash:comments>1</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
On the floor @ CeBIT Australia I just came across the coolest Wi-fi access point for
travel. The <a href="http://www.level1.com.au/products/wap-0004.php">Level 1 WAP-0004</a>.
</p>
        <p>
 Pictured next to my LS800 you can see it is tiny.
</p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/TinyTravelAP_C321/HPIM0961%5B1%5D.jpg" atomicselection="true">
            <img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="180" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/TinyTravelAP_C321/HPIM0961.jpg" width="240" border="0" />
          </a>
        </p>
        <p>
Again, the RJ-45 connector in the back gives you on idea of scale.
</p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/TinyTravelAP_C321/HPIM0962%5B1%5D.jpg" atomicselection="true">
            <img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="182" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/TinyTravelAP_C321/HPIM0962.jpg" width="240" border="0" />
          </a>
        </p>
        <p>
This looks just great. very small and light. Can be powered off mains or USB I includes
a carry case &amp; cables and runs at just AU $99.95
</p>
        <img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=a786e60c-c675-4a7f-9884-c306f9ca60d4" />
      </body>
      <title>Tiny Travel AP</title>
      <guid isPermaLink="false">http://www.pringle.net.nz/blog/PermaLink,guid,a786e60c-c675-4a7f-9884-c306f9ca60d4.aspx</guid>
      <link>http://www.pringle.net.nz/blog/PermaLink,guid,a786e60c-c675-4a7f-9884-c306f9ca60d4.aspx</link>
      <pubDate>Thu, 03 May 2007 03:53:30 GMT</pubDate>
      <description>&lt;p&gt;
On the floor @ CeBIT Australia I just came across the coolest Wi-fi access point for
travel. The &lt;a href="http://www.level1.com.au/products/wap-0004.php"&gt;Level 1 WAP-0004&lt;/a&gt;.
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;Pictured next to my LS800 you can see it is tiny.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/TinyTravelAP_C321/HPIM0961%5B1%5D.jpg" atomicselection="true"&gt;&lt;img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="180" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/TinyTravelAP_C321/HPIM0961.jpg" width="240" border="0"&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
Again, the RJ-45 connector in the back gives you on idea of scale.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/TinyTravelAP_C321/HPIM0962%5B1%5D.jpg" atomicselection="true"&gt;&lt;img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="182" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/TinyTravelAP_C321/HPIM0962.jpg" width="240" border="0"&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
This looks just great. very small and light. Can be powered off mains or USB I includes
a carry case &amp;amp; cables and runs at just AU $99.95
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=a786e60c-c675-4a7f-9884-c306f9ca60d4" /&gt;</description>
      <comments>http://www.pringle.net.nz/blog/CommentView,guid,a786e60c-c675-4a7f-9884-c306f9ca60d4.aspx</comments>
      <category>Connectivity</category>
      <category>TabletPC</category>
    </item>
    <item>
      <trackback:ping>http://www.pringle.net.nz/blog/Trackback.aspx?guid=3b8f164f-0515-4799-9ae9-fba5f40cb42c</trackback:ping>
      <pingback:server>http://www.pringle.net.nz/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.pringle.net.nz/blog/PermaLink,guid,3b8f164f-0515-4799-9ae9-fba5f40cb42c.aspx</pingback:target>
      <dc:creator>Craig Pringle</dc:creator>
      <wfw:comment>http://www.pringle.net.nz/blog/CommentView,guid,3b8f164f-0515-4799-9ae9-fba5f40cb42c.aspx</wfw:comment>
      <wfw:commentRss>http://www.pringle.net.nz/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=3b8f164f-0515-4799-9ae9-fba5f40cb42c</wfw:commentRss>
      <slash:comments>3</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
So I have arrived today in Sydney and I'm in the process of looking for a house to
rent.
</p>
        <p>
Man it is hard to find good wi-fi in this city!  I'm not just talking about open
networks here, either.  I'm in the CBD and willing to pay for access, but it
is just hard to find.  I did find a Telstra hotspot in a McDonalds, but it would
not take the type of credit card I wanted to pay for it with.  
</p>
        <p>
I've been to Sydney many a time before, but for the last few years I have always been
roaming with my work provided EVDO phone and connectivity has not been a problem.
</p>
        <p>
This time however I had to hand back my work provided device and I only have a data
challenged pre-pay phone until I get into the office next week.  I thought no
problem, I'll just buy wi-fi for the weekend and then pick up my work phone on Monday. 
No joy there.
</p>
        <p>
This is quite a surprising contrast to Wellington - which has the CBD fairly well
blanketed by CafeNET, with the odd Telecom hotspot thrown in for luck.  
</p>
        <p>
Frankly I would expect more from any city the size of Sydney.  The crazy thing
is that there appears to be demand.  I'm staying at a backpackers in town. 
I went up to the common room and asked the people there if they knew where to get
access.  They have been having the same issues and directed me to Everywhere
Internet. I finally found it and that at least gives me a wired connection for
my own device.  But the place is packed!  There has to be a business opportunity
here for someone ;-)
</p>
        <img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=3b8f164f-0515-4799-9ae9-fba5f40cb42c" />
      </body>
      <title>First Impression - Sydney is Wi-Fi Challenged</title>
      <guid isPermaLink="false">http://www.pringle.net.nz/blog/PermaLink,guid,3b8f164f-0515-4799-9ae9-fba5f40cb42c.aspx</guid>
      <link>http://www.pringle.net.nz/blog/PermaLink,guid,3b8f164f-0515-4799-9ae9-fba5f40cb42c.aspx</link>
      <pubDate>Sat, 28 Apr 2007 06:40:10 GMT</pubDate>
      <description>&lt;p&gt;
So I have arrived today in Sydney and I'm in the process of looking for a house to
rent.
&lt;/p&gt;
&lt;p&gt;
Man it is hard to find good wi-fi in this city!&amp;nbsp; I'm not just talking about open
networks here, either.&amp;nbsp; I'm in the CBD and willing to pay for access, but it
is just hard to find.&amp;nbsp; I did find a Telstra hotspot in a McDonalds, but it would
not take the type of credit card I wanted to pay for it with.&amp;nbsp; 
&lt;/p&gt;
&lt;p&gt;
I've been to Sydney many a time before, but for the last few years I have always been
roaming with my work provided EVDO phone and connectivity has not been a problem.
&lt;/p&gt;
&lt;p&gt;
This time however I had to hand back my work provided device and I only have a data
challenged pre-pay phone until I get into the office next week.&amp;nbsp; I thought no
problem, I'll just buy wi-fi for the weekend and then pick up my work phone on Monday.&amp;nbsp;
No joy there.
&lt;/p&gt;
&lt;p&gt;
This is quite a surprising contrast to Wellington - which has the CBD fairly well
blanketed by CafeNET, with the odd Telecom hotspot thrown in for luck.&amp;nbsp; 
&lt;/p&gt;
&lt;p&gt;
Frankly I would expect more from any city the size of Sydney.&amp;nbsp; The crazy thing
is that there appears to be demand.&amp;nbsp; I'm staying at a backpackers in town.&amp;nbsp;
I went up to the common room and asked the people there if they knew where to get
access.&amp;nbsp; They have been having the same issues and directed me to Everywhere
Internet. I finally found it and&amp;nbsp;that at least gives me a wired connection for
my own device.&amp;nbsp; But the place is packed!&amp;nbsp; There has to be a business opportunity
here for someone ;-)
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=3b8f164f-0515-4799-9ae9-fba5f40cb42c" /&gt;</description>
      <comments>http://www.pringle.net.nz/blog/CommentView,guid,3b8f164f-0515-4799-9ae9-fba5f40cb42c.aspx</comments>
      <category>Connectivity</category>
      <category>General</category>
    </item>
    <item>
      <trackback:ping>http://www.pringle.net.nz/blog/Trackback.aspx?guid=096a2c67-3fe1-4934-90e4-d14e47a589c7</trackback:ping>
      <pingback:server>http://www.pringle.net.nz/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.pringle.net.nz/blog/PermaLink,guid,096a2c67-3fe1-4934-90e4-d14e47a589c7.aspx</pingback:target>
      <dc:creator>Craig Pringle</dc:creator>
      <wfw:comment>http://www.pringle.net.nz/blog/CommentView,guid,096a2c67-3fe1-4934-90e4-d14e47a589c7.aspx</wfw:comment>
      <wfw:commentRss>http://www.pringle.net.nz/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=096a2c67-3fe1-4934-90e4-d14e47a589c7</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Among the things in my backlog of "things I should be blogging about but have not
had the time" are a couple of new gadgets that I have acquired of late.
</p>
        <p>
First up is a Zune that I purchased while in the US recently.  
</p>
        <p>
          <a href="http://www.pringle.net.nz/Blog/content/binary/WindowsLiveWriter/Newtrinketsinmygadgetbag_1419F/file_127%5B1%5D.jpg" atomicselection="true">
            <img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="224" src="http://www.pringle.net.nz/Blog/content/binary/WindowsLiveWriter/Newtrinketsinmygadgetbag_1419F/file_127.jpg" width="240" border="0" />
          </a>
        </p>
        <p>
So far I am quite happy with it - apart from the absolute debacle of trying to install
the software on my tablet while I was in Seattle.  Both my "Documents" and "Pictures"
folders were offline copies of a network drive.  This is not something that
the Zune software could cope with - it would error out with an error with words to
the effect that the drive was invalid.  
</p>
        <p>
Being a long time media centre user who has never owned an iPod I find the interface
exceptionally easy to use.  I have yet to "squirt" anyone yet as I only know
one other person with a Zune in Wellington.
</p>
        <p>
The other device I picked up is a Samsung Q1P that has been provided for evaluation
(of hardware and software).  This is running Windows Vista Ultimate and has a
bunch of evaluation software - much of which is of little use to me outside the US
unfortunately.  This warrants a whole series of posts but suffice to say for
now that I am having a pretty good Vista-gami experience on the Q1P at the moment.
</p>
        <img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=096a2c67-3fe1-4934-90e4-d14e47a589c7" />
      </body>
      <title>New trinkets in my gadget bag</title>
      <guid isPermaLink="false">http://www.pringle.net.nz/blog/PermaLink,guid,096a2c67-3fe1-4934-90e4-d14e47a589c7.aspx</guid>
      <link>http://www.pringle.net.nz/blog/PermaLink,guid,096a2c67-3fe1-4934-90e4-d14e47a589c7.aspx</link>
      <pubDate>Mon, 02 Apr 2007 10:52:49 GMT</pubDate>
      <description>&lt;p&gt;
Among the things in my backlog of "things I should be blogging about but have not
had the time" are a couple of new gadgets that I have acquired of late.
&lt;/p&gt;
&lt;p&gt;
First up is a Zune that I purchased while in the US recently.&amp;nbsp; 
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/Blog/content/binary/WindowsLiveWriter/Newtrinketsinmygadgetbag_1419F/file_127%5B1%5D.jpg" atomicselection="true"&gt;&lt;img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="224" src="http://www.pringle.net.nz/Blog/content/binary/WindowsLiveWriter/Newtrinketsinmygadgetbag_1419F/file_127.jpg" width="240" border="0"&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
So far I am quite happy with it - apart from the absolute debacle of trying to install
the software on my tablet while I was in Seattle.&amp;nbsp; Both my "Documents" and "Pictures"
folders were offline copies of&amp;nbsp;a network drive.&amp;nbsp; This is not something that
the Zune software could cope with - it would error out with an error with words to
the effect that the drive was invalid.&amp;nbsp; 
&lt;/p&gt;
&lt;p&gt;
Being a long time media centre user who has never owned an iPod I find the interface
exceptionally easy to use.&amp;nbsp; I have yet to "squirt" anyone yet as I only know
one other person with a Zune in Wellington.
&lt;/p&gt;
&lt;p&gt;
The other device I picked up is a Samsung Q1P that has been provided for evaluation
(of hardware and software).&amp;nbsp; This is running Windows Vista Ultimate and has a
bunch of evaluation software - much of which is of little use to me outside the US
unfortunately.&amp;nbsp; This warrants a whole series of posts but suffice to say for
now that I am having a pretty good Vista-gami experience on the Q1P at the moment.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=096a2c67-3fe1-4934-90e4-d14e47a589c7" /&gt;</description>
      <comments>http://www.pringle.net.nz/blog/CommentView,guid,096a2c67-3fe1-4934-90e4-d14e47a589c7.aspx</comments>
      <category>Connectivity</category>
      <category>General</category>
      <category>TabletPC</category>
      <category>Vista</category>
    </item>
    <item>
      <trackback:ping>http://www.pringle.net.nz/blog/Trackback.aspx?guid=26d264f8-95fc-4b70-8b41-7c3620264994</trackback:ping>
      <pingback:server>http://www.pringle.net.nz/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.pringle.net.nz/blog/PermaLink,guid,26d264f8-95fc-4b70-8b41-7c3620264994.aspx</pingback:target>
      <dc:creator />
      <wfw:comment>http://www.pringle.net.nz/blog/CommentView,guid,26d264f8-95fc-4b70-8b41-7c3620264994.aspx</wfw:comment>
      <wfw:commentRss>http://www.pringle.net.nz/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=26d264f8-95fc-4b70-8b41-7c3620264994</wfw:commentRss>
      <title>EVDO Rev A launched in Wellington</title>
      <guid isPermaLink="false">http://www.pringle.net.nz/blog/PermaLink,guid,26d264f8-95fc-4b70-8b41-7c3620264994.aspx</guid>
      <link>http://www.pringle.net.nz/blog/PermaLink,guid,26d264f8-95fc-4b70-8b41-7c3620264994.aspx</link>
      <pubDate>Thu, 22 Feb 2007 07:56:22 GMT</pubDate>
      <description>

&lt;div class=Section1&gt;
&lt;p class=MsoNormal&gt;
Mauricio from &lt;a href="http://www.geekzone.co.nz/"&gt;Geekzone&lt;/a&gt; reports that &lt;a href="http://www.geekzone.co.nz/content.asp?contentid=7047"&gt;EVDO
Rev A has been launched in Wellington&lt;/a&gt;.&lt;o:p&gt;&lt;/o:p&gt;
&lt;/p&gt;
&lt;p class=MsoNormal&gt;
As if that is not enough good news for one day &lt;a href="http://www.geekzone.co.nz/freitasm/2328"&gt;he
has also found that there are signed, 64-bit drivers&lt;/a&gt; for the Sierra Wireless Aircard
595 on Windows Update. Too cool!&lt;o:p&gt;&lt;/o:p&gt;
&lt;/p&gt;
&lt;p class=MsoNormal&gt;
Eagle-eyed readers will notice that Mauricio makes reference to more good things to
come. 
&lt;o:p&gt;&lt;/o:p&gt;
&lt;/p&gt;
&lt;p class=MsoNormal style='margin-left:36.0pt'&gt;
Currently users are able to connect to the service by using a Sierra Wireless Aircard
595, which requires a PC Card slot on a PC. In the near future other options such
as Express Cards and USB modems will be avaialble.&lt;o:p&gt;&lt;/o:p&gt;
&lt;/p&gt;
&lt;p class=MsoNormal&gt;
As a LS800 user (no PC Card slot) I can hardly contain my excitement at the thought
of a USB, Rev A modem!&lt;o:p&gt;&lt;/o:p&gt;
&lt;/p&gt;
&lt;/div&gt;
&lt;img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=26d264f8-95fc-4b70-8b41-7c3620264994" /&gt;</description>
      <comments>http://www.pringle.net.nz/blog/CommentView,guid,26d264f8-95fc-4b70-8b41-7c3620264994.aspx</comments>
      <category>Connectivity</category>
      <category>Vista</category>
    </item>
    <item>
      <trackback:ping>http://www.pringle.net.nz/blog/Trackback.aspx?guid=a1114d52-a627-4df5-8b72-bdf06536b446</trackback:ping>
      <pingback:server>http://www.pringle.net.nz/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.pringle.net.nz/blog/PermaLink,guid,a1114d52-a627-4df5-8b72-bdf06536b446.aspx</pingback:target>
      <dc:creator>Craig Pringle</dc:creator>
      <wfw:comment>http://www.pringle.net.nz/blog/CommentView,guid,a1114d52-a627-4df5-8b72-bdf06536b446.aspx</wfw:comment>
      <wfw:commentRss>http://www.pringle.net.nz/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=a1114d52-a627-4df5-8b72-bdf06536b446</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
When I first posted about the <a href="http://www.pringle.net.nz/Blog/PermaLink,guid,a6571e69-3ac5-4dfa-b88f-903947c10f2c.aspx">release
of the new EVDO bump case</a> for the LS800, Suzanne McClure from <a href="http://www.elegantpackaging.com">Elegant
Packaging</a> offered to send me one to review.  Naturally I jumped at the opportunity.  
</p>
        <p>
The case came via Motion Computing's Australian office - so it took a while to get
here, but it arrived this morning.
</p>
        <p>
For evaluation I have borrowed a <a href="http://www.pringle.net.nz/Blog/PermaLink,guid,e61f49d0-787e-4f0f-ba0d-9c5ab0efcb8e.aspx">MiniMax
USB EVDO modem</a>, which is distributed by Telecom (my employer) here in New Zealand.
</p>
        <p>
The case is an updated version of the standard bump case (which I also own so I have
something to compare it to) that includes an elastic loop on the front and internal
cable routing to support a USB EVDO modem.  Pictured below is the case with both
the LS800 and the MiniMax fitted.
</p>
        <p>
          <a href="http://www.pringle.net.nz/Blog/content/binary/WindowsLiveWriter/ReviewingtheEVDObumpcasefortheLS800_131F6/HPIM0728%5B1%5D.jpg" atomicselection="true">
            <img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="240" src="http://www.pringle.net.nz/Blog/content/binary/WindowsLiveWriter/ReviewingtheEVDObumpcasefortheLS800_131F6/HPIM0728.jpg" width="223" border="0" />
          </a>
        </p>
        <p>
The elastic loop and the moulded padding around the modem hold the modem snugly in
place.  It is certainly not going to dislodge easily.  Close up of the EVDO
modem.
</p>
        <p>
          <a href="http://www.pringle.net.nz/Blog/content/binary/WindowsLiveWriter/ReviewingtheEVDObumpcasefortheLS800_131F6/HPIM0729%5B1%5D.jpg" atomicselection="true">
            <img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="180" src="http://www.pringle.net.nz/Blog/content/binary/WindowsLiveWriter/ReviewingtheEVDObumpcasefortheLS800_131F6/HPIM0729.jpg" width="240" border="0" />
          </a>
        </p>
        <p>
In fron of the elastic loop is a nylon flap that velcros down to secure any excess
USB cable.  This flap also covers the slot that lets you take the cabling inside
the case.
</p>
        <p>
          <a href="http://www.pringle.net.nz/Blog/content/binary/WindowsLiveWriter/ReviewingtheEVDObumpcasefortheLS800_131F6/HPIM0730%5B1%5D.jpg" atomicselection="true">
            <img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="141" src="http://www.pringle.net.nz/Blog/content/binary/WindowsLiveWriter/ReviewingtheEVDObumpcasefortheLS800_131F6/HPIM0730.jpg" width="240" border="0" />
          </a>
        </p>
        <p>
The cable can then be routed out the top left corner of the case for a straight drop
down to the USB port.  This could be tidied up further by using a USB cable that
has a right angle connector on this end of the cable, but I did not have one available.
</p>
        <p>
          <a href="http://www.pringle.net.nz/Blog/content/binary/WindowsLiveWriter/ReviewingtheEVDObumpcasefortheLS800_131F6/HPIM0731%5B1%5D.jpg" atomicselection="true">
            <img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="240" src="http://www.pringle.net.nz/Blog/content/binary/WindowsLiveWriter/ReviewingtheEVDObumpcasefortheLS800_131F6/HPIM0731.jpg" width="138" border="0" />
          </a>
        </p>
        <p>
This case shipped with an adjustable shoulder strap that attaches to two D-rings on
either side of the carry handle.  Attaching the strap gives you perhaps one of
the geekiest geek bags one can have :)
</p>
        <p>
          <a href="http://www.pringle.net.nz/Blog/content/binary/WindowsLiveWriter/ReviewingtheEVDObumpcasefortheLS800_131F6/HPIM0732%5B1%5D.jpg" atomicselection="true">
            <img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="180" src="http://www.pringle.net.nz/Blog/content/binary/WindowsLiveWriter/ReviewingtheEVDObumpcasefortheLS800_131F6/HPIM0732.jpg" width="240" border="0" />
          </a>
        </p>
        <p>
Like the original bump case the EVDO version includes an integrated wire stand that
can be set at a fairly wide range of angles by adjusting a velcro strap.  The
same velcro strap can be cinched tight to keep the stand tucked in place when it is
not required.
</p>
        <p>
          <a href="http://www.pringle.net.nz/Blog/content/binary/WindowsLiveWriter/ReviewingtheEVDObumpcasefortheLS800_131F6/HPIM0734%5B1%5D.jpg" atomicselection="true">
            <img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="240" src="http://www.pringle.net.nz/Blog/content/binary/WindowsLiveWriter/ReviewingtheEVDObumpcasefortheLS800_131F6/HPIM0734.jpg" width="165" border="0" />
          </a>
        </p>
        <p>
Another nice improvment of the EVDO bump case over the original is that it will fit
the LS800 with either the standard or <a href="http://www.pringle.net.nz/Blog/PermaLink,guid,e070db3f-2ede-41dc-aead-9baffd151b33.aspx">extended
battery</a> fitted.  To be fair the extended battery didn't exist when I got
my first bump case so I can't fault the old version too much.  This is achieved
with the help of a removable insert that attaches to the inside of the top flap of
the case via velcro.  The insert is simply removed when the LS800 is used with
the extended battery.
</p>
        <p>
          <a href="http://www.pringle.net.nz/Blog/content/binary/WindowsLiveWriter/ReviewingtheEVDObumpcasefortheLS800_131F6/HPIM0736%5B1%5D.jpg" atomicselection="true">
            <img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="240" src="http://www.pringle.net.nz/Blog/content/binary/WindowsLiveWriter/ReviewingtheEVDObumpcasefortheLS800_131F6/HPIM0736.jpg" width="224" border="0" />
          </a>
        </p>
        <p>
Over all the case looks very well constructed.  My other case has held up very
well over time and I have every reason to expect this one to do the same.  Like
the original the EVDO case is well designed and provides complete access to almost
all of the ports, buttons and inputs on the device.  My one compaint here is
that one of the USB ports is covered and one is not.  I would prefer to have
both ports uncovered as it would save me having to use a USB hub if I wanted to setup <a href="http://www.pringle.net.nz/Blog/PermaLink,guid,2a5974db-9c4b-4b94-b1cd-5ce82c1de3aa.aspx">my
mobile desktop</a> and use both my BenQ mouse and the EVDO modem.
</p>
        <p>
Finally, I have heard from a colleague that he recieved a case where the wire poked
out of the piping on the edge of the case.  There is no evidence of that with
the unit I recieved.  I suggested that he return the case and ask for a new one. 
Based on my one I would think that his one was an annomolly. 
</p>
        <p>
Full disclosure - I do not have to return the case.  I use an LS800 as one of
my main PCs so I will be keeping it.
</p>
        <img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=a1114d52-a627-4df5-8b72-bdf06536b446" />
      </body>
      <title>Reviewing the EVDO bump case for the LS800</title>
      <guid isPermaLink="false">http://www.pringle.net.nz/blog/PermaLink,guid,a1114d52-a627-4df5-8b72-bdf06536b446.aspx</guid>
      <link>http://www.pringle.net.nz/blog/PermaLink,guid,a1114d52-a627-4df5-8b72-bdf06536b446.aspx</link>
      <pubDate>Mon, 29 Jan 2007 07:58:17 GMT</pubDate>
      <description>&lt;p&gt;
When I first posted about the &lt;a href="http://www.pringle.net.nz/Blog/PermaLink,guid,a6571e69-3ac5-4dfa-b88f-903947c10f2c.aspx"&gt;release
of the new EVDO bump case&lt;/a&gt; for the LS800, Suzanne McClure from &lt;a href="http://www.elegantpackaging.com"&gt;Elegant
Packaging&lt;/a&gt; offered to send me one to review.&amp;nbsp; Naturally I jumped at the opportunity.&amp;nbsp; 
&lt;/p&gt;
&lt;p&gt;
The case came via Motion Computing's Australian office - so it took a while to get
here, but it arrived this morning.
&lt;/p&gt;
&lt;p&gt;
For evaluation I have borrowed a &lt;a href="http://www.pringle.net.nz/Blog/PermaLink,guid,e61f49d0-787e-4f0f-ba0d-9c5ab0efcb8e.aspx"&gt;MiniMax
USB EVDO modem&lt;/a&gt;, which is distributed by Telecom (my employer) here in New Zealand.
&lt;/p&gt;
&lt;p&gt;
The case is an updated version of the standard bump case (which I also own so I have
something to compare it to) that includes an elastic loop on the front and internal
cable routing to support a USB EVDO modem.&amp;nbsp; Pictured below is the case with both
the LS800 and the MiniMax fitted.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/Blog/content/binary/WindowsLiveWriter/ReviewingtheEVDObumpcasefortheLS800_131F6/HPIM0728%5B1%5D.jpg" atomicselection="true"&gt;&lt;img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="240" src="http://www.pringle.net.nz/Blog/content/binary/WindowsLiveWriter/ReviewingtheEVDObumpcasefortheLS800_131F6/HPIM0728.jpg" width="223" border="0"&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
The elastic loop and the moulded padding around the modem hold the modem snugly in
place.&amp;nbsp; It is certainly not going to dislodge easily.&amp;nbsp; Close up of the EVDO
modem.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/Blog/content/binary/WindowsLiveWriter/ReviewingtheEVDObumpcasefortheLS800_131F6/HPIM0729%5B1%5D.jpg" atomicselection="true"&gt;&lt;img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="180" src="http://www.pringle.net.nz/Blog/content/binary/WindowsLiveWriter/ReviewingtheEVDObumpcasefortheLS800_131F6/HPIM0729.jpg" width="240" border="0"&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
In fron of the elastic loop is a nylon flap that velcros down to secure any excess
USB cable.&amp;nbsp; This flap also covers the slot that lets you take the cabling inside
the case.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/Blog/content/binary/WindowsLiveWriter/ReviewingtheEVDObumpcasefortheLS800_131F6/HPIM0730%5B1%5D.jpg" atomicselection="true"&gt;&lt;img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="141" src="http://www.pringle.net.nz/Blog/content/binary/WindowsLiveWriter/ReviewingtheEVDObumpcasefortheLS800_131F6/HPIM0730.jpg" width="240" border="0"&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
The cable can then be routed out the top left corner of the case for a straight drop
down to the USB port.&amp;nbsp; This could be tidied up further by using a USB cable that
has a right angle connector on this end of the cable, but I did not have one available.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/Blog/content/binary/WindowsLiveWriter/ReviewingtheEVDObumpcasefortheLS800_131F6/HPIM0731%5B1%5D.jpg" atomicselection="true"&gt;&lt;img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="240" src="http://www.pringle.net.nz/Blog/content/binary/WindowsLiveWriter/ReviewingtheEVDObumpcasefortheLS800_131F6/HPIM0731.jpg" width="138" border="0"&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
This case shipped with an adjustable shoulder strap that attaches to two D-rings on
either side of the carry handle.&amp;nbsp; Attaching the strap gives you perhaps one of
the geekiest geek bags one can have :)
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/Blog/content/binary/WindowsLiveWriter/ReviewingtheEVDObumpcasefortheLS800_131F6/HPIM0732%5B1%5D.jpg" atomicselection="true"&gt;&lt;img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="180" src="http://www.pringle.net.nz/Blog/content/binary/WindowsLiveWriter/ReviewingtheEVDObumpcasefortheLS800_131F6/HPIM0732.jpg" width="240" border="0"&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
Like the original bump case the EVDO version includes an integrated wire stand that
can be set at a fairly wide range of angles by adjusting a velcro strap.&amp;nbsp; The
same velcro strap can be cinched tight to keep the stand tucked in place when it is
not required.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/Blog/content/binary/WindowsLiveWriter/ReviewingtheEVDObumpcasefortheLS800_131F6/HPIM0734%5B1%5D.jpg" atomicselection="true"&gt;&lt;img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="240" src="http://www.pringle.net.nz/Blog/content/binary/WindowsLiveWriter/ReviewingtheEVDObumpcasefortheLS800_131F6/HPIM0734.jpg" width="165" border="0"&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
Another nice improvment of the EVDO bump case over the original is that it will fit
the LS800 with either the standard or &lt;a href="http://www.pringle.net.nz/Blog/PermaLink,guid,e070db3f-2ede-41dc-aead-9baffd151b33.aspx"&gt;extended
battery&lt;/a&gt; fitted.&amp;nbsp; To be fair the extended battery didn't exist when I got
my first bump case so I can't fault the old version too much.&amp;nbsp; This is achieved
with the help of a removable insert that attaches to the inside of the top flap of
the case via velcro.&amp;nbsp; The insert is simply removed when the LS800 is used with
the extended battery.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/Blog/content/binary/WindowsLiveWriter/ReviewingtheEVDObumpcasefortheLS800_131F6/HPIM0736%5B1%5D.jpg" atomicselection="true"&gt;&lt;img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="240" src="http://www.pringle.net.nz/Blog/content/binary/WindowsLiveWriter/ReviewingtheEVDObumpcasefortheLS800_131F6/HPIM0736.jpg" width="224" border="0"&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
Over all the case looks very well constructed.&amp;nbsp; My other case has held up very
well over time and I have every reason to expect this one to do the same.&amp;nbsp; Like
the original the EVDO case is well designed and provides complete access to almost
all of the ports, buttons and inputs on the device.&amp;nbsp; My one compaint here is
that one of the USB ports is covered and one is not.&amp;nbsp; I would prefer to have
both ports uncovered as it would save me having to use a USB hub if I wanted to setup &lt;a href="http://www.pringle.net.nz/Blog/PermaLink,guid,2a5974db-9c4b-4b94-b1cd-5ce82c1de3aa.aspx"&gt;my
mobile desktop&lt;/a&gt; and use both my BenQ mouse and the EVDO modem.
&lt;/p&gt;
&lt;p&gt;
Finally, I have heard from a colleague that he recieved a case where the wire poked
out of the piping on the edge of the case.&amp;nbsp; There is no evidence of that with
the unit I recieved.&amp;nbsp; I suggested that he return the case and ask for a new one.&amp;nbsp;
Based on my one&amp;nbsp;I would think that his one was an annomolly. 
&lt;/p&gt;
&lt;p&gt;
Full disclosure - I do not have to return the case.&amp;nbsp; I use an LS800 as one of
my main PCs so I will be keeping it.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=a1114d52-a627-4df5-8b72-bdf06536b446" /&gt;</description>
      <comments>http://www.pringle.net.nz/blog/CommentView,guid,a1114d52-a627-4df5-8b72-bdf06536b446.aspx</comments>
      <category>Connectivity</category>
      <category>TabletPC</category>
    </item>
    <item>
      <trackback:ping>http://www.pringle.net.nz/blog/Trackback.aspx?guid=d1e69768-79ba-48ca-a6d3-8f239844a910</trackback:ping>
      <pingback:server>http://www.pringle.net.nz/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.pringle.net.nz/blog/PermaLink,guid,d1e69768-79ba-48ca-a6d3-8f239844a910.aspx</pingback:target>
      <dc:creator>Craig Pringle</dc:creator>
      <wfw:comment>http://www.pringle.net.nz/blog/CommentView,guid,d1e69768-79ba-48ca-a6d3-8f239844a910.aspx</wfw:comment>
      <wfw:commentRss>http://www.pringle.net.nz/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=d1e69768-79ba-48ca-a6d3-8f239844a910</wfw:commentRss>
      <slash:comments>1</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
 This had me cracking up.  A very cool use of mobile tech that only a true
geek would think of.  That's not an insult - I am safe in the knowledge that
true geeks don't mind being called geeks.
</p>
        <blockquote>
          <p>
...the problem: <strong>how the heck can I tell what eyeglass frames look good on
me</strong>? Truth is: <strong>I can't because the frames have clear glass in them,
which obviously does nothing for my eyesight</strong>. I usually bring someone with
some fashion sense with me, but today I couldn't. What to do, what to do...... 
</p>
          <p>
The answer hit me while I was waiting to be helped. I had my XV 6700 Windows Mobile
phone with me and it has a 1.3 Megapixel camera in it, right? I decided to snap pics
of myself in potential frames, and then put my glasses on to view the actual pics.
Heck, if I wanted to, I could have do a whole little fashion show and recorded a video! 
</p>
          <p>
So that solved the majority of my dilemma. Using the camera, I could take pics and
then review them with my corrected vision. The other issue I had was getting a second
opinion on my choices. Barb couldn't join me at the store, but once I had the pics,
it was a simple matter of sending her the pics in an e-mail via the EV-DO connection.
Sure enough: I got the thumbs up in about 3 minutes.
</p>
        </blockquote>
        <p>
Good to see that you also check with your fashon advisor ;-)
</p>
        <p>
Source: <a href="http://jkontherun.blogs.com/jkontherun/2007/01/mobile_tech_jus.html">Mobile
tech just solved a 28 year old problem</a><br />
Originally published on Thu, 04 Jan 2007 20:18:50 GMT by Kevin C. Tofel 
</p>
        <img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=d1e69768-79ba-48ca-a6d3-8f239844a910" />
      </body>
      <title>Kevin uses mobile tech to shop for glasses</title>
      <guid isPermaLink="false">http://www.pringle.net.nz/blog/PermaLink,guid,d1e69768-79ba-48ca-a6d3-8f239844a910.aspx</guid>
      <link>http://www.pringle.net.nz/blog/PermaLink,guid,d1e69768-79ba-48ca-a6d3-8f239844a910.aspx</link>
      <pubDate>Fri, 05 Jan 2007 01:39:17 GMT</pubDate>
      <description>&lt;p&gt;
&amp;nbsp;This had me cracking up.&amp;nbsp; A very cool use of mobile tech that only a true
geek would think of.&amp;nbsp; That's not an insult - I am safe in the knowledge that
true geeks don't mind being called geeks.
&lt;/p&gt;
&lt;blockquote&gt; 
&lt;p&gt;
...the problem: &lt;strong&gt;how the heck can I tell what eyeglass frames look good on
me&lt;/strong&gt;? Truth is: &lt;strong&gt;I can't because the frames have clear glass in them,
which obviously does nothing for my eyesight&lt;/strong&gt;. I usually bring someone with
some fashion sense with me, but today I couldn't. What to do, what to do...... 
&lt;p&gt;
The answer hit me while I was waiting to be helped. I had my XV 6700 Windows Mobile
phone with me and it has a 1.3 Megapixel camera in it, right? I decided to snap pics
of myself in potential frames, and then put my glasses on to view the actual pics.
Heck, if I wanted to, I could have do a whole little fashion show and recorded a video! 
&lt;p&gt;
So that solved the majority of my dilemma. Using the camera, I could take pics and
then review them with my corrected vision. The other issue I had was getting a second
opinion on my choices. Barb couldn't join me at the store, but once I had the pics,
it was a simple matter of sending her the pics in an e-mail via the EV-DO connection.
Sure enough: I got the thumbs up in about 3 minutes.
&lt;/p&gt;
&lt;/blockquote&gt; 
&lt;p&gt;
Good to see that you also check with your fashon advisor ;-)
&lt;/p&gt;
&lt;p&gt;
Source: &lt;a href="http://jkontherun.blogs.com/jkontherun/2007/01/mobile_tech_jus.html"&gt;Mobile
tech just solved a 28 year old problem&lt;/a&gt; 
&lt;br&gt;
Originally published on Thu, 04 Jan 2007 20:18:50 GMT by Kevin C. Tofel 
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=d1e69768-79ba-48ca-a6d3-8f239844a910" /&gt;</description>
      <comments>http://www.pringle.net.nz/blog/CommentView,guid,d1e69768-79ba-48ca-a6d3-8f239844a910.aspx</comments>
      <category>Connectivity</category>
      <category>General</category>
    </item>
    <item>
      <trackback:ping>http://www.pringle.net.nz/blog/Trackback.aspx?guid=c5512dcc-af92-47a3-997b-b6ea1b1eaf32</trackback:ping>
      <pingback:server>http://www.pringle.net.nz/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.pringle.net.nz/blog/PermaLink,guid,c5512dcc-af92-47a3-997b-b6ea1b1eaf32.aspx</pingback:target>
      <dc:creator>Craig Pringle</dc:creator>
      <wfw:comment>http://www.pringle.net.nz/blog/CommentView,guid,c5512dcc-af92-47a3-997b-b6ea1b1eaf32.aspx</wfw:comment>
      <wfw:commentRss>http://www.pringle.net.nz/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=c5512dcc-af92-47a3-997b-b6ea1b1eaf32</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
A couple posts recently, including <a href="http://feeds.feedburner.com/~r/zdnet/Orchant/~3/54203784/">this
one</a> from Marc Orchant and <a href="http://www.gottabemobile.com/TellUsAboutYourMobileSetup.aspx">this
one</a> from Rob Bushway have asked readers to delve into their gadget bags and reveal
what is inside.  I try to always walk the line of taking everything I need and
nothing extra.  As such I have a couple of different setups that I use, depending
on where I am going and what I am doing.
</p>
        <p>
This post is the first in a series exploring my mobile setups that I use.  Today
I am looking at my lightest mobile computing load.
</p>
        <p>
My Lite Load is what I take with me when I'm popping out of the office for up to 2
hours.  I use this when I am going out to client meetings, meeting colleagues
for coffee or lunch and scooting around the office.
</p>
        <p>
The surprising thing about my Lite Load gadget bag is that there is not actually a
bag - here's what I take with me as a bare minimum.
</p>
        <p>
          <a href="http://www.pringle.net.nz/Blog/content/binary/WindowsLiveWriter/Whatsinmygadgetbagpart1TravelingLight_12567/GadgetBag1%5B1%5D.jpg" atomicselection="true">
            <img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="202" src="http://www.pringle.net.nz/Blog/content/binary/WindowsLiveWriter/Whatsinmygadgetbagpart1TravelingLight_12567/GadgetBag1.jpg" width="240" border="0" />
          </a>
        </p>
        <p>
That's it.  There is the LS800 in it's bump case and my <a href="http://www.telecom.co.nz/content/0,8748,204935-201930,00.html">Telecom
HTC Apache</a> (which is the NZ version of the <a href="http://www.sprint.com/business/products/phones/ppc6700_allPcsPhones.html?origref=http%3A%2F%2Fwww.google.com%2Fsearch%3Fq%3Dsprint%2B6700%26rls%3Dcom.microsoft%3A*%26ie%3DUTF-8%26oe%3DUTF-8%26startIndex%3D%26startPage%3D1">Sprint
PPC 6700</a>).
</p>
        <p>
The Apache is used as a Bluetooth modem if connectivity is required and there is no
wi-fi coverage handy.  Because this burns battery, especially on the phone, I
tend to work offline and only connect if I need to get something or feel like synchronizing. 
The main application I use that needs to sync is of course Outlook.  I always
work in cached Exchange mode, so working offline is completely seamless.  As
soon as I go on line or dock the tablet any emails I have composed offline are sent
and calendar or contacts added are synchronized with the server.
</p>
        <p>
Actually to be fair there is also usually a 512MB Swissbit Victorinox in my pocket
as well, but that is more habit than planning!
</p>
        <img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=c5512dcc-af92-47a3-997b-b6ea1b1eaf32" />
      </body>
      <title>What's in my gadget bag part 1: Traveling Light</title>
      <guid isPermaLink="false">http://www.pringle.net.nz/blog/PermaLink,guid,c5512dcc-af92-47a3-997b-b6ea1b1eaf32.aspx</guid>
      <link>http://www.pringle.net.nz/blog/PermaLink,guid,c5512dcc-af92-47a3-997b-b6ea1b1eaf32.aspx</link>
      <pubDate>Tue, 02 Jan 2007 07:41:17 GMT</pubDate>
      <description>&lt;p&gt;
A couple posts recently, including &lt;a href="http://feeds.feedburner.com/~r/zdnet/Orchant/~3/54203784/"&gt;this
one&lt;/a&gt; from Marc Orchant and &lt;a href="http://www.gottabemobile.com/TellUsAboutYourMobileSetup.aspx"&gt;this
one&lt;/a&gt; from Rob Bushway have asked readers to delve into their gadget bags and reveal
what is inside.&amp;nbsp; I try to always walk the line of taking everything I need and
nothing extra.&amp;nbsp; As such I have a couple of different setups that I use, depending
on where I am going and what I am doing.
&lt;/p&gt;
&lt;p&gt;
This post is the first in a series exploring my mobile setups that I use.&amp;nbsp; Today
I am looking at my lightest mobile computing load.
&lt;/p&gt;
&lt;p&gt;
My Lite Load is what I take with me when I'm popping out of the office for up to 2
hours.&amp;nbsp; I use this when I am going out to client meetings, meeting colleagues
for coffee or lunch and scooting around the office.
&lt;/p&gt;
&lt;p&gt;
The surprising thing about my Lite Load gadget bag is that there is not actually a
bag - here's what I take with me as a bare minimum.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/Blog/content/binary/WindowsLiveWriter/Whatsinmygadgetbagpart1TravelingLight_12567/GadgetBag1%5B1%5D.jpg" atomicselection="true"&gt;&lt;img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="202" src="http://www.pringle.net.nz/Blog/content/binary/WindowsLiveWriter/Whatsinmygadgetbagpart1TravelingLight_12567/GadgetBag1.jpg" width="240" border="0"&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
That's it.&amp;nbsp; There is the LS800 in it's bump case and my &lt;a href="http://www.telecom.co.nz/content/0,8748,204935-201930,00.html"&gt;Telecom
HTC Apache&lt;/a&gt; (which is the NZ version of the &lt;a href="http://www.sprint.com/business/products/phones/ppc6700_allPcsPhones.html?origref=http%3A%2F%2Fwww.google.com%2Fsearch%3Fq%3Dsprint%2B6700%26rls%3Dcom.microsoft%3A*%26ie%3DUTF-8%26oe%3DUTF-8%26startIndex%3D%26startPage%3D1"&gt;Sprint
PPC 6700&lt;/a&gt;).
&lt;/p&gt;
&lt;p&gt;
The Apache is used as a Bluetooth modem if connectivity is required and there is no
wi-fi coverage handy.&amp;nbsp; Because this burns battery, especially on the phone, I
tend to work offline and only connect if I need to get something or feel like synchronizing.&amp;nbsp;
The main application I use that needs to sync is of course Outlook.&amp;nbsp; I always
work in cached Exchange mode, so working offline is completely seamless.&amp;nbsp; As
soon as I go on line or dock the tablet any emails I have composed offline are sent
and calendar or contacts added are synchronized with the server.
&lt;/p&gt;
&lt;p&gt;
Actually to be fair there is also usually a 512MB Swissbit Victorinox&amp;nbsp;in my pocket
as well, but that is more habit than planning!
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=c5512dcc-af92-47a3-997b-b6ea1b1eaf32" /&gt;</description>
      <comments>http://www.pringle.net.nz/blog/CommentView,guid,c5512dcc-af92-47a3-997b-b6ea1b1eaf32.aspx</comments>
      <category>Connectivity</category>
      <category>TabletPC</category>
    </item>
    <item>
      <trackback:ping>http://www.pringle.net.nz/blog/Trackback.aspx?guid=cb8fcf48-211c-42a3-8c43-e0963b2e89c3</trackback:ping>
      <pingback:server>http://www.pringle.net.nz/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.pringle.net.nz/blog/PermaLink,guid,cb8fcf48-211c-42a3-8c43-e0963b2e89c3.aspx</pingback:target>
      <dc:creator>Craig Pringle</dc:creator>
      <wfw:comment>http://www.pringle.net.nz/blog/CommentView,guid,cb8fcf48-211c-42a3-8c43-e0963b2e89c3.aspx</wfw:comment>
      <wfw:commentRss>http://www.pringle.net.nz/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=cb8fcf48-211c-42a3-8c43-e0963b2e89c3</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
If you have been using Windows Vista and you have set up a connection to a wireless
network you may have noticed – as I did – the text at the bottom that reads "If you
have a USB Flash drive with Network Settings for XXXXXX, insert it now." 
</p>
        <p>
          <img src="http://www.pringle.net.nz/blog/content/binary/121206_0842_SavingWirel1.png" alt="" />
        </p>
        <p>
This caught my attention the first time I saw it and I had even made a couple of cursory
attempts to figure out how to save settings onto a USB key – to no avail. Today I
decided to try and figure it out once and for all. 
</p>
        <p>
I started out by searching Google and found nothing of much use – though it did lead
me to the Windows Vista online help. I searched through the online help and that was
not much help at all. So I decided to do it the old fashioned way and have a good
hunt around... and I figured it out! Here's how you save Wireless network settings
onto a USB Flash drive in Windows Vista. (If you already have the network configured
on your Vista machine – delete it before you begin.) 
</p>
        <ol style="margin-left: 37pt">
          <li>
Start by right clicking the network icon in the System tray and selecting <em>Connect
to a network</em>. 
</li>
          <li>
In the <em>Connect to a network</em> dialog click on the link down the bottom that
reads "<em>Set up a connection or network</em>"<br /><img src="http://www.pringle.net.nz/blog/content/binary/121206_0842_SavingWirel2.png" alt="" /></li>
          <li>
On the <em>Choose a connection option </em>page click on <em>Set up a wireless router
or access point </em>and click Next.<em><br /><img src="http://www.pringle.net.nz/blog/content/binary/121206_0842_SavingWirel3.png" alt="" /></em></li>
          <li>
You then get this welcome screen that tells you what the Wizard is going to do – click
Next<br /><img src="http://www.pringle.net.nz/blog/content/binary/121206_0842_SavingWirel4.png" alt="" /></li>
          <li>
After a short detection process (which for me did not detect anything – YMMV) you
are presented with an option to <em>Create wireless network settings and save to a
USB Flash drive</em> – click on that and click Next.<br /><img src="http://www.pringle.net.nz/blog/content/binary/121206_0842_SavingWirel5.png" alt="" /></li>
          <li>
On the network name dialog you need to enter the SSID of you wireless network. Unless
you have not yet configured you wireless access point <strong>do not</strong> just
accept the default here – the SSID must match what is configured on your AP.<br /><img src="http://www.pringle.net.nz/blog/content/binary/121206_0842_SavingWirel6.png" alt="" /></li>
          <li>
After that you need to enter the network pass phrase. Again – the settings entered
here need to match those configured on you AP. Enter the key and click next.<br /><img src="http://www.pringle.net.nz/blog/content/binary/121206_0842_SavingWirel7.png" alt="" /></li>
          <li>
You then get an option to configure sharing – or you can choose not to enable sharing
for this connection – you can always change it on the client later.<br /><img src="http://www.pringle.net.nz/blog/content/binary/121206_0842_SavingWirel8.png" alt="" /></li>
          <li>
            <div>You then get a save settings dialog that will allow you to save to a USB key.
Insert a USB key and make sure it is selected in the dropdown, then click next. 
</div>
            <p>
              <img src="http://www.pringle.net.nz/blog/content/binary/121206_0842_SavingWirel9.png" alt="" />
            </p>
          </li>
          <li>
On the final screen you get instructions on how to transfer these settings to other
machines. 
</li>
        </ol>
        <p>
          <img src="http://www.pringle.net.nz/blog/content/binary/121206_0842_SavingWirel10.png" alt="" />
        </p>
        <p>
Basically you just insert the USB key into a Windows XP or Windows Vista client machine
and – assuming auto run is enabled - you will be prompted to run the Wireless Network
Setup Wizard. 
</p>
        <p>
          <img src="http://www.pringle.net.nz/blog/content/binary/121206_0842_SavingWirel11.png" alt="" />
        </p>
        <p>
The setup Wizard is so easy I did not even bother to screen shot it. There are two
dialogs. The first one asks if you want to setup XYZ network. The second confirms
that is succeeded. Too easy.
</p>
        <img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=cb8fcf48-211c-42a3-8c43-e0963b2e89c3" />
      </body>
      <title>Saving Wireless Network Settings on a USB Key in Vista</title>
      <guid isPermaLink="false">http://www.pringle.net.nz/blog/PermaLink,guid,cb8fcf48-211c-42a3-8c43-e0963b2e89c3.aspx</guid>
      <link>http://www.pringle.net.nz/blog/PermaLink,guid,cb8fcf48-211c-42a3-8c43-e0963b2e89c3.aspx</link>
      <pubDate>Tue, 12 Dec 2006 08:35:05 GMT</pubDate>
      <description>&lt;p&gt;
If you have been using Windows Vista and you have set up a connection to a wireless
network you may have noticed – as I did – the text at the bottom that reads "If you
have a USB Flash drive with Network Settings for XXXXXX, insert it now." 
&lt;/p&gt;
&lt;p&gt;
&lt;img src="http://www.pringle.net.nz/blog/content/binary/121206_0842_SavingWirel1.png" alt="" /&gt; 
&lt;/p&gt;
&lt;p&gt;
This caught my attention the first time I saw it and I had even made a couple of cursory
attempts to figure out how to save settings onto a USB key – to no avail. Today I
decided to try and figure it out once and for all. 
&lt;/p&gt;
&lt;p&gt;
I started out by searching Google and found nothing of much use – though it did lead
me to the Windows Vista online help. I searched through the online help and that was
not much help at all. So I decided to do it the old fashioned way and have a good
hunt around... and I figured it out! Here's how you save Wireless network settings
onto a USB Flash drive in Windows Vista. (If you already have the network configured
on your Vista machine – delete it before you begin.) 
&lt;/p&gt;
&lt;ol style="margin-left: 37pt"&gt;
&lt;li&gt;
Start by right clicking the network icon in the System tray and selecting &lt;em&gt;Connect
to a network&lt;/em&gt;. 
&lt;/li&gt;
&lt;li&gt;
In the &lt;em&gt;Connect to a network&lt;/em&gt; dialog click on the link down the bottom that
reads "&lt;em&gt;Set up a connection or network&lt;/em&gt;"&lt;br /&gt;
&lt;img src="http://www.pringle.net.nz/blog/content/binary/121206_0842_SavingWirel2.png" alt="" /&gt; 
&lt;/li&gt;
&lt;li&gt;
On the &lt;em&gt;Choose a connection option &lt;/em&gt;page click on &lt;em&gt;Set up a wireless router
or access point &lt;/em&gt;and click Next.&lt;em&gt;
&lt;br /&gt;
&lt;img src="http://www.pringle.net.nz/blog/content/binary/121206_0842_SavingWirel3.png" alt="" /&gt;&lt;/em&gt; 
&lt;/li&gt;
&lt;li&gt;
You then get this welcome screen that tells you what the Wizard is going to do – click
Next&lt;br /&gt;
&lt;img src="http://www.pringle.net.nz/blog/content/binary/121206_0842_SavingWirel4.png" alt="" /&gt; 
&lt;/li&gt;
&lt;li&gt;
After a short detection process (which for me did not detect anything – YMMV) you
are presented with an option to &lt;em&gt;Create wireless network settings and save to a
USB Flash drive&lt;/em&gt; – click on that and click Next.&lt;br /&gt;
&lt;img src="http://www.pringle.net.nz/blog/content/binary/121206_0842_SavingWirel5.png" alt="" /&gt; 
&lt;/li&gt;
&lt;li&gt;
On the network name dialog you need to enter the SSID of you wireless network. Unless
you have not yet configured you wireless access point &lt;strong&gt;do not&lt;/strong&gt; just
accept the default here – the SSID must match what is configured on your AP.&lt;br /&gt;
&lt;img src="http://www.pringle.net.nz/blog/content/binary/121206_0842_SavingWirel6.png" alt="" /&gt; 
&lt;/li&gt;
&lt;li&gt;
After that you need to enter the network pass phrase. Again – the settings entered
here need to match those configured on you AP. Enter the key and click next.&lt;br /&gt;
&lt;img src="http://www.pringle.net.nz/blog/content/binary/121206_0842_SavingWirel7.png" alt="" /&gt; 
&lt;/li&gt;
&lt;li&gt;
You then get an option to configure sharing – or you can choose not to enable sharing
for this connection – you can always change it on the client later.&lt;br /&gt;
&lt;img src="http://www.pringle.net.nz/blog/content/binary/121206_0842_SavingWirel8.png" alt="" /&gt; 
&lt;/li&gt;
&lt;li&gt;
&lt;div&gt;You then get a save settings dialog that will allow you to save to a USB key.
Insert a USB key and make sure it is selected in the dropdown, then click next. 
&lt;/div&gt;
&lt;p&gt;
&lt;img src="http://www.pringle.net.nz/blog/content/binary/121206_0842_SavingWirel9.png" alt="" /&gt; 
&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
On the final screen you get instructions on how to transfer these settings to other
machines. 
&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;
&lt;img src="http://www.pringle.net.nz/blog/content/binary/121206_0842_SavingWirel10.png" alt="" /&gt; 
&lt;/p&gt;
&lt;p&gt;
Basically you just insert the USB key into a Windows XP or Windows Vista client machine
and – assuming auto run is enabled - you will be prompted to run the Wireless Network
Setup Wizard. 
&lt;/p&gt;
&lt;p&gt;
&lt;img src="http://www.pringle.net.nz/blog/content/binary/121206_0842_SavingWirel11.png" alt="" /&gt; 
&lt;/p&gt;
&lt;p&gt;
The setup Wizard is so easy I did not even bother to screen shot it. There are two
dialogs. The first one asks if you want to setup XYZ network. The second confirms
that is succeeded. Too easy.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=cb8fcf48-211c-42a3-8c43-e0963b2e89c3" /&gt;</description>
      <comments>http://www.pringle.net.nz/blog/CommentView,guid,cb8fcf48-211c-42a3-8c43-e0963b2e89c3.aspx</comments>
      <category>Connectivity</category>
      <category>Vista</category>
    </item>
    <item>
      <trackback:ping>http://www.pringle.net.nz/blog/Trackback.aspx?guid=8a822b5f-1589-4a24-8717-339e522a256b</trackback:ping>
      <pingback:server>http://www.pringle.net.nz/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.pringle.net.nz/blog/PermaLink,guid,8a822b5f-1589-4a24-8717-339e522a256b.aspx</pingback:target>
      <dc:creator />
      <wfw:comment>http://www.pringle.net.nz/blog/CommentView,guid,8a822b5f-1589-4a24-8717-339e522a256b.aspx</wfw:comment>
      <wfw:commentRss>http://www.pringle.net.nz/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=8a822b5f-1589-4a24-8717-339e522a256b</wfw:commentRss>
      <title>JK is really on the run with his P1610</title>
      <guid isPermaLink="false">http://www.pringle.net.nz/blog/PermaLink,guid,8a822b5f-1589-4a24-8717-339e522a256b.aspx</guid>
      <link>http://www.pringle.net.nz/blog/PermaLink,guid,8a822b5f-1589-4a24-8717-339e522a256b.aspx</link>
      <pubDate>Tue, 21 Nov 2006 08:56:10 GMT</pubDate>
      <description>

&lt;div class=Section1&gt;
&lt;p class=MsoNormal&gt;
JK is blogging from a wi-fi challenged cafe in Houston using &lt;a href="http://jkontherun.blogs.com/jkontherun/2006/11/evdo and the fu.html"&gt;an
EVDO card in a Fujitsu P1610&lt;/a&gt;.&amp;nbsp; Am I jealous? Heck yeah &amp;#8211; not only is
it a really cool device (I would love to review one of those for the NZ market) but
checkout the screenshot in the post!&amp;nbsp; I love my EVDO, but we have not been REV
A&amp;#8217;d yet and don&amp;#8217;t get anywhere near that kind of speed (yet &amp;#8211; it
is coming soon).&lt;o:p&gt;&lt;/o:p&gt;
&lt;/p&gt;
&lt;/div&gt;
&lt;img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=8a822b5f-1589-4a24-8717-339e522a256b" /&gt;</description>
      <comments>http://www.pringle.net.nz/blog/CommentView,guid,8a822b5f-1589-4a24-8717-339e522a256b.aspx</comments>
      <category>TabletPC</category>
      <category>Connectivity</category>
    </item>
    <item>
      <trackback:ping>http://www.pringle.net.nz/blog/Trackback.aspx?guid=54e1fa0f-c4e6-4991-909f-0d889b593eee</trackback:ping>
      <pingback:server>http://www.pringle.net.nz/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.pringle.net.nz/blog/PermaLink,guid,54e1fa0f-c4e6-4991-909f-0d889b593eee.aspx</pingback:target>
      <dc:creator>Craig Pringle</dc:creator>
      <wfw:comment>http://www.pringle.net.nz/blog/CommentView,guid,54e1fa0f-c4e6-4991-909f-0d889b593eee.aspx</wfw:comment>
      <wfw:commentRss>http://www.pringle.net.nz/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=54e1fa0f-c4e6-4991-909f-0d889b593eee</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
If you are looking at deploying Vista into your corporate environment and you have
an Active Directory based domain you can now use Group Policy to configure Wreless
networking settigns on the clients.  To do this you need to extend the schema
to accomidate the additional attributes requried by the policies.
</p>
        <p>
          <a href="http://www.microsoft.com/technet/itsolutions/network/wifi/vista_ad_ext.mspx">This
white paper</a> explans what you can manage and describes the process of extending
the schema to support GPO management of Wireless settings.
</p>
        <img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=54e1fa0f-c4e6-4991-909f-0d889b593eee" />
      </body>
      <title>Group Policy Management of Wireless Settings in Vista</title>
      <guid isPermaLink="false">http://www.pringle.net.nz/blog/PermaLink,guid,54e1fa0f-c4e6-4991-909f-0d889b593eee.aspx</guid>
      <link>http://www.pringle.net.nz/blog/PermaLink,guid,54e1fa0f-c4e6-4991-909f-0d889b593eee.aspx</link>
      <pubDate>Tue, 07 Nov 2006 09:33:13 GMT</pubDate>
      <description>&lt;p&gt;
If you are looking at deploying Vista into your corporate environment and you have
an Active Directory based domain you can now use Group Policy to configure Wreless
networking settigns on the clients.&amp;nbsp; To do this you need to extend the schema
to accomidate the additional attributes requried by the policies.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.microsoft.com/technet/itsolutions/network/wifi/vista_ad_ext.mspx"&gt;This
white paper&lt;/a&gt; explans what you can manage and describes the process of extending
the schema to support GPO management of Wireless settings.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=54e1fa0f-c4e6-4991-909f-0d889b593eee" /&gt;</description>
      <comments>http://www.pringle.net.nz/blog/CommentView,guid,54e1fa0f-c4e6-4991-909f-0d889b593eee.aspx</comments>
      <category>Connectivity</category>
      <category>Vista</category>
    </item>
    <item>
      <trackback:ping>http://www.pringle.net.nz/blog/Trackback.aspx?guid=e61f49d0-787e-4f0f-ba0d-9c5ab0efcb8e</trackback:ping>
      <pingback:server>http://www.pringle.net.nz/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.pringle.net.nz/blog/PermaLink,guid,e61f49d0-787e-4f0f-ba0d-9c5ab0efcb8e.aspx</pingback:target>
      <dc:creator>Craig Pringle</dc:creator>
      <wfw:comment>http://www.pringle.net.nz/blog/CommentView,guid,e61f49d0-787e-4f0f-ba0d-9c5ab0efcb8e.aspx</wfw:comment>
      <wfw:commentRss>http://www.pringle.net.nz/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=e61f49d0-787e-4f0f-ba0d-9c5ab0efcb8e</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
The other day I managed to get hold of a MiniMax EVDO modem for a short time. 
Although I can find it anywhere on <a href="http://www.telecom.co.nz/">their website</a> this
EVDO modem is available through Telecom NZ.  If you're interested in purchasing
one you can contact your local Telecom store.  I was keen to get a chance to
try it in Windows Vista.
</p>
        <p>
I connected to the modem to my LS800 using the USB cable provided.  I then tucked
the modem in behind the strap on my LS800's bump case.
</p>
        <p>
          <img src="http://www.pringle.net.nz/Blog/content/binary/Apache%20031.jpg" border="0" />
        </p>
        <p>
Although the device driver was not available via Windows Update I was able to do and
he windows XP driver to install and function correctly.  The dialer application
shown below was intuitive and easy-to-use.
</p>
        <p>
          <img src="http://www.pringle.net.nz/Blog/content/binary/MinimaxDialler.JPG" border="0" />
        </p>
        <p>
I only time to do a quick speed test, which gave me a download speed of just under
300 kilobytes per second.  I have arranged to get one for a longer period of
time when I get my <a href="http://www.pringle.net.nz/Blog/PermaLink,guid,a6571e69-3ac5-4dfa-b88f-903947c10f2c.aspx">EVDO
bump case for my LS800.</a>  At that time I will do further speed testing and
report back on the impact on batterylife.
</p>
        <img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=e61f49d0-787e-4f0f-ba0d-9c5ab0efcb8e" />
      </body>
      <title>Maxthon MiniMax EVDO modem</title>
      <guid isPermaLink="false">http://www.pringle.net.nz/blog/PermaLink,guid,e61f49d0-787e-4f0f-ba0d-9c5ab0efcb8e.aspx</guid>
      <link>http://www.pringle.net.nz/blog/PermaLink,guid,e61f49d0-787e-4f0f-ba0d-9c5ab0efcb8e.aspx</link>
      <pubDate>Fri, 27 Oct 2006 07:48:29 GMT</pubDate>
      <description>&lt;p&gt;
The other day I managed to get hold of a MiniMax EVDO modem for a short time.&amp;nbsp;
Although I can find it anywhere on &lt;a href="http://www.telecom.co.nz/"&gt;their website&lt;/a&gt; this
EVDO modem is available through Telecom NZ.&amp;nbsp; If you're interested in purchasing
one you can contact your local Telecom store.&amp;nbsp; I was keen to get a chance to
try it in Windows Vista.
&lt;/p&gt;
&lt;p&gt;
I connected to the modem to my LS800 using the USB cable provided.&amp;nbsp; I then tucked
the modem in behind the strap on my LS800's bump case.
&lt;/p&gt;
&lt;p&gt;
&lt;img src="http://www.pringle.net.nz/Blog/content/binary/Apache%20031.jpg" border=0&gt;
&lt;/p&gt;
&lt;p&gt;
Although the device driver was not available via Windows Update I was able to do and
he windows XP driver to install and function correctly.&amp;nbsp; The dialer application
shown below was intuitive and easy-to-use.
&lt;/p&gt;
&lt;p&gt;
&lt;img src="http://www.pringle.net.nz/Blog/content/binary/MinimaxDialler.JPG" border=0&gt;
&lt;/p&gt;
&lt;p&gt;
I only time to do a quick speed test, which gave me a download speed of just under
300 kilobytes per second.&amp;nbsp; I have arranged to get one for a longer period of
time when I get my &lt;a href="http://www.pringle.net.nz/Blog/PermaLink,guid,a6571e69-3ac5-4dfa-b88f-903947c10f2c.aspx"&gt;EVDO
bump case for my LS800.&lt;/a&gt;&amp;nbsp; At that time I will do further speed testing and
report back on the impact on batterylife.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=e61f49d0-787e-4f0f-ba0d-9c5ab0efcb8e" /&gt;</description>
      <comments>http://www.pringle.net.nz/blog/CommentView,guid,e61f49d0-787e-4f0f-ba0d-9c5ab0efcb8e.aspx</comments>
      <category>Connectivity</category>
      <category>TabletPC</category>
    </item>
    <item>
      <trackback:ping>http://www.pringle.net.nz/blog/Trackback.aspx?guid=3eb53658-8138-4a3a-86fe-8dd41f8f0cc6</trackback:ping>
      <pingback:server>http://www.pringle.net.nz/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.pringle.net.nz/blog/PermaLink,guid,3eb53658-8138-4a3a-86fe-8dd41f8f0cc6.aspx</pingback:target>
      <dc:creator>Craig Pringle</dc:creator>
      <wfw:comment>http://www.pringle.net.nz/blog/CommentView,guid,3eb53658-8138-4a3a-86fe-8dd41f8f0cc6.aspx</wfw:comment>
      <wfw:commentRss>http://www.pringle.net.nz/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=3eb53658-8138-4a3a-86fe-8dd41f8f0cc6</wfw:commentRss>
      <slash:comments>2</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
I'm using Vista on my Toshiba M400 now and a couple of people have asked me how I
got the EV-DO card to work in Vista.  the answer is very well thankyou :)
</p>
        <p>
The card in question is a Sierra Wireless Aircard 580 and this is what I did to make
it work.
</p>
        <ol>
          <li>
Install Vista</li>
          <li>
            <strong>Do not install the manufacturer's XP software. </strong> This has
not been updated for Vista (yet)</li>
          <li>
With Vista running and connected to the internet insert the Aircard.</li>
          <li>
When prompted search for a driver.</li>
          <li>
Vista will pull down a driver from Windows Update.</li>
          <li>
Once all the componets have installed create a new dial-up connection with the Sierra
Wireless Aircard selected as the modem.  The following settings are for Telecom
New Zealand - these are not secret, they are on the web site if you look hard enough. 
Check with your provider for their settings.<br />
Dial up number: #777<br />
Username: <a href="mailto:mobile@jamamobile">mobile@jamamobile</a><br />
Password: telecom</li>
          <li>
That's it. Dial that connection and within a few seconds you will have a nice, fast
EV-DO connection to the internet.</li>
        </ol>
        <img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=3eb53658-8138-4a3a-86fe-8dd41f8f0cc6" />
      </body>
      <title>Getting the Sierra Wireless Aircard 580 to work in Vista</title>
      <guid isPermaLink="false">http://www.pringle.net.nz/blog/PermaLink,guid,3eb53658-8138-4a3a-86fe-8dd41f8f0cc6.aspx</guid>
      <link>http://www.pringle.net.nz/blog/PermaLink,guid,3eb53658-8138-4a3a-86fe-8dd41f8f0cc6.aspx</link>
      <pubDate>Tue, 05 Sep 2006 03:50:11 GMT</pubDate>
      <description>&lt;p&gt;
I'm using Vista on my Toshiba M400 now and a couple of people have asked me how I
got the EV-DO card to work in Vista.&amp;nbsp; the answer is very well thankyou :)
&lt;/p&gt;
&lt;p&gt;
The card in question is a Sierra Wireless Aircard 580 and this is what I did to make
it work.
&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
Install Vista&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Do not install the manufacturer's XP software.&amp;nbsp;&lt;/strong&gt;&amp;nbsp;This has
not been updated for Vista (yet)&lt;/li&gt;
&lt;li&gt;
With Vista running and connected to the internet insert the Aircard.&lt;/li&gt;
&lt;li&gt;
When prompted search for a driver.&lt;/li&gt;
&lt;li&gt;
Vista will pull down a driver from Windows Update.&lt;/li&gt;
&lt;li&gt;
Once all the componets have installed create a new dial-up connection with the Sierra
Wireless Aircard selected as the modem.&amp;nbsp; The following settings are for Telecom
New Zealand - these are not secret, they are on the web site if you look hard enough.&amp;nbsp;
Check with your provider for their settings.&lt;br&gt;
Dial up number: #777&lt;br&gt;
Username: &lt;a href="mailto:mobile@jamamobile"&gt;mobile@jamamobile&lt;/a&gt;
&lt;br&gt;
Password: telecom&lt;/li&gt;
&lt;li&gt;
That's it. Dial that connection and within a few seconds you will have a nice, fast
EV-DO connection to the internet.&lt;/li&gt;
&lt;/ol&gt;
&lt;img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=3eb53658-8138-4a3a-86fe-8dd41f8f0cc6" /&gt;</description>
      <comments>http://www.pringle.net.nz/blog/CommentView,guid,3eb53658-8138-4a3a-86fe-8dd41f8f0cc6.aspx</comments>
      <category>Connectivity</category>
      <category>TabletPC</category>
    </item>
    <item>
      <trackback:ping>http://www.pringle.net.nz/blog/Trackback.aspx?guid=4770240f-aaff-4ae1-a865-098b4f51574d</trackback:ping>
      <pingback:server>http://www.pringle.net.nz/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.pringle.net.nz/blog/PermaLink,guid,4770240f-aaff-4ae1-a865-098b4f51574d.aspx</pingback:target>
      <dc:creator>Craig Pringle</dc:creator>
      <wfw:comment>http://www.pringle.net.nz/blog/CommentView,guid,4770240f-aaff-4ae1-a865-098b4f51574d.aspx</wfw:comment>
      <wfw:commentRss>http://www.pringle.net.nz/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=4770240f-aaff-4ae1-a865-098b4f51574d</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">On Saturday I blogged <a href="http://www.pringle.net.nz/blog/PermaLink,guid,772471ff-f03a-432b-9032-21fba745d457.aspx"><u>Telecom
NZ to show tablets with EVDO</u></a><br />
Now <a href="http://www.geekzone.co.nz/content.asp?ContentId=6311"><u>Vodafone and
Lenovo New Zealand Partner to Deliver Embedded 3G Connectivity</u></a><br />
One thing for sure, NZ is a great place to be a Mobile Computer user! 
<br />
Via Geekzone 
<br /><img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=4770240f-aaff-4ae1-a865-098b4f51574d" /></body>
      <title>Vodafone and Lenovo New Zealand launching Laptops and Tablets with embedded 3G</title>
      <guid isPermaLink="false">http://www.pringle.net.nz/blog/PermaLink,guid,4770240f-aaff-4ae1-a865-098b4f51574d.aspx</guid>
      <link>http://www.pringle.net.nz/blog/PermaLink,guid,4770240f-aaff-4ae1-a865-098b4f51574d.aspx</link>
      <pubDate>Mon, 22 May 2006 05:14:26 GMT</pubDate>
      <description>On Saturday I blogged &lt;a href="http://www.pringle.net.nz/blog/PermaLink,guid,772471ff-f03a-432b-9032-21fba745d457.aspx"&gt;&lt;u&gt;Telecom
NZ to show tablets with EVDO&lt;/u&gt;&lt;/a&gt;
&lt;br /&gt;
Now &lt;a href="http://www.geekzone.co.nz/content.asp?ContentId=6311"&gt;&lt;u&gt;Vodafone and
Lenovo New Zealand Partner to Deliver Embedded 3G Connectivity&lt;/u&gt;&lt;/a&gt;
&lt;br /&gt;
One thing for sure, NZ is a great place to be a Mobile Computer user! 
&lt;br /&gt;
Via Geekzone 
&lt;br /&gt;
&gt;&lt;img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=4770240f-aaff-4ae1-a865-098b4f51574d" /&gt;</description>
      <comments>http://www.pringle.net.nz/blog/CommentView,guid,4770240f-aaff-4ae1-a865-098b4f51574d.aspx</comments>
      <category>Connectivity</category>
      <category>TabletPC</category>
    </item>
    <item>
      <trackback:ping>http://www.pringle.net.nz/blog/Trackback.aspx?guid=772471ff-f03a-432b-9032-21fba745d457</trackback:ping>
      <pingback:server>http://www.pringle.net.nz/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.pringle.net.nz/blog/PermaLink,guid,772471ff-f03a-432b-9032-21fba745d457.aspx</pingback:target>
      <dc:creator>Craig Pringle</dc:creator>
      <wfw:comment>http://www.pringle.net.nz/blog/CommentView,guid,772471ff-f03a-432b-9032-21fba745d457.aspx</wfw:comment>
      <wfw:commentRss>http://www.pringle.net.nz/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=772471ff-f03a-432b-9032-21fba745d457</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <font face="Microsoft Sans Serif" size="2.125" color="#000000">Maurico
over at Geekzone reports that Telecom is going to have notebooks and tablets with
embedded EVDO modules on show at Convergence Oceania '06 which will be held at Te
Papa in Wellington on the 25th of May.</font>
        <br />
        <font face="Times New Roman" size="3" color="#000000">"One of the notebooks being
shown is the Toshiba M400 Tablet PC, embedded with Telecom</font>
        <font face="Times New Roman" size="3" color="#000000">s
CDMA EV-DO Mobile Broadband cards, allowing users to do away with data cards and connect
as soon as they turn their notebooks on."</font>
        <br />
        <img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=772471ff-f03a-432b-9032-21fba745d457" />
      </body>
      <title>Telecom NZ to show tablets with EVDO</title>
      <guid isPermaLink="false">http://www.pringle.net.nz/blog/PermaLink,guid,772471ff-f03a-432b-9032-21fba745d457.aspx</guid>
      <link>http://www.pringle.net.nz/blog/PermaLink,guid,772471ff-f03a-432b-9032-21fba745d457.aspx</link>
      <pubDate>Sat, 20 May 2006 08:48:18 GMT</pubDate>
      <description>&lt;font face='Microsoft Sans Serif' size='2.125' color='#000000'&gt;Maurico over at Geekzone
reports that Telecom is going to have notebooks and tablets with embedded EVDO modules
on show at Convergence Oceania '06 which will be held at Te Papa in Wellington on
the 25th of May.&lt;/font&gt;
&lt;br /&gt;
&lt;font face='Times New Roman' size='3' color='#000000'&gt;"One of the notebooks being
shown is the Toshiba M400 Tablet PC, embedded with Telecom&lt;/font&gt;&lt;font face='Times New Roman' size='3' color='#000000'&gt;s
CDMA EV-DO Mobile Broadband cards, allowing users to do away with data cards and connect
as soon as they turn their notebooks on."&lt;/font&gt;
&lt;br /&gt;
&gt;&lt;img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=772471ff-f03a-432b-9032-21fba745d457" /&gt;</description>
      <comments>http://www.pringle.net.nz/blog/CommentView,guid,772471ff-f03a-432b-9032-21fba745d457.aspx</comments>
      <category>Connectivity</category>
      <category>TabletPC</category>
    </item>
    <item>
      <trackback:ping>http://www.pringle.net.nz/blog/Trackback.aspx?guid=5ae79fe6-31be-4062-8248-010b50f93e1f</trackback:ping>
      <pingback:server>http://www.pringle.net.nz/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.pringle.net.nz/blog/PermaLink,guid,5ae79fe6-31be-4062-8248-010b50f93e1f.aspx</pingback:target>
      <dc:creator>Craig Pringle</dc:creator>
      <wfw:comment>http://www.pringle.net.nz/blog/CommentView,guid,5ae79fe6-31be-4062-8248-010b50f93e1f.aspx</wfw:comment>
      <wfw:commentRss>http://www.pringle.net.nz/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=5ae79fe6-31be-4062-8248-010b50f93e1f</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
I seem to have exceeded my monthly download limit and my broadband connection has
been throttled back to dial-up speeds - ouch!  :(  That's the terms of the
plan I selected - I would rather be throttled than hit with a hefty excess usage bill.
</p>
        <p>
It's my own fault for not monitoring my usage.  Downloading 2 different Vista
builds in this billing cycle was enough to push me well over the edge.  Oh well
- my billing cycle ends on Monday - I'm sure I can cope for 2 days.  After all
I do have an EVDO card as well :)
</p>
        <img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=5ae79fe6-31be-4062-8248-010b50f93e1f" />
      </body>
      <title>Oops - I'm on a go slow for the weekend</title>
      <guid isPermaLink="false">http://www.pringle.net.nz/blog/PermaLink,guid,5ae79fe6-31be-4062-8248-010b50f93e1f.aspx</guid>
      <link>http://www.pringle.net.nz/blog/PermaLink,guid,5ae79fe6-31be-4062-8248-010b50f93e1f.aspx</link>
      <pubDate>Fri, 05 May 2006 22:10:04 GMT</pubDate>
      <description>&lt;p&gt;
I seem to have exceeded my monthly download limit and my broadband connection has
been throttled back to dial-up speeds - ouch!&amp;nbsp; :(&amp;nbsp; That's the terms of the
plan I selected - I would rather be throttled than hit with a hefty excess usage bill.
&lt;/p&gt;
&lt;p&gt;
It's my own fault for not monitoring my usage.&amp;nbsp; Downloading 2 different Vista
builds in this billing cycle was enough to push me well over the edge.&amp;nbsp; Oh well
- my billing cycle ends on Monday - I'm sure I can cope for 2 days.&amp;nbsp; After all
I do have an EVDO card as well :)
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=5ae79fe6-31be-4062-8248-010b50f93e1f" /&gt;</description>
      <comments>http://www.pringle.net.nz/blog/CommentView,guid,5ae79fe6-31be-4062-8248-010b50f93e1f.aspx</comments>
      <category>Connectivity</category>
      <category>General</category>
    </item>
    <item>
      <trackback:ping>http://www.pringle.net.nz/blog/Trackback.aspx?guid=8e841401-f64e-4072-a21c-a6a363e1fb51</trackback:ping>
      <pingback:server>http://www.pringle.net.nz/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.pringle.net.nz/blog/PermaLink,guid,8e841401-f64e-4072-a21c-a6a363e1fb51.aspx</pingback:target>
      <dc:creator>Craig Pringle</dc:creator>
      <wfw:comment>http://www.pringle.net.nz/blog/CommentView,guid,8e841401-f64e-4072-a21c-a6a363e1fb51.aspx</wfw:comment>
      <wfw:commentRss>http://www.pringle.net.nz/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=8e841401-f64e-4072-a21c-a6a363e1fb51</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
The latest <a href="http://www.vodafone.co.nz">Vodafone</a> add caught my attention
for two reasons.  The first reason is that it includes what appears to be a <a href="http://catalog2.panasonic.com/webapp/wcs/stores/servlet/ModelDetail?displayTab=O&amp;storeId=11201&amp;catalogId=13051&amp;itemId=68952&amp;catGroupId=12871&amp;modelNo=Toughbook-18&amp;surfModel=Toughbook-18">Panasonic
Toughbook CF-18</a> touchscreen tablet in use in the field.
</p>
        <p>
          <img src="http://www.pringle.net.nz/blog/content/binary/vodacf-18.gif" border="0" />
        </p>
        <p>
The tablet is in use as part of a solution on an America's Cup race yacht.  Under
the rules of the Americas Cup all there can't be communications gear on the yacht
during the race.  In order to start the race with the best possible information
the crews keep these GSM connected devices onboard to get the latest weather information
then put them in a baggie and throw them over the side seconds before crossing the
start line.
</p>
        <p>
The other thing that caught my eye is that - IMO - it is not the best solution. 
Before I explain why, let me state my bias.  I work for <a href="http://www.telecom.co.nz">Telecom
NZ</a> which is a competitor of Vodafone NZ.  That said everything on this blog
is my opinion and may or may not be the opinion of my employer (as per the disclaimer).
</p>
        <p>
The reason I say it is not the best solution is that they are trying to get data from
the teams weather boat to the race boat.  Both boats are in the same general
area and there are several other team boats in the area.  Why pay cellular data
charges when you could easily set up a moving wireless mesh network with a node on
each of the support boats.  This would give bandwidth measured in 10s of megabits
rather than 100s of kilobits and much lower latency.  In addition, out on the
water you are somewhat removed from land based cell sites, however conditions are
excellent for a localized mesh!
</p>
        <p>
This is a good example of why going forward a company such as Telecom, which was a
telco but has purchased IT capability, has a distinct advantage over competitors that
are purely telcos.  In a situation where cellular voice and data don't make sense
they either have to pushin a less-than-optimal solution or walk away.  If they
do the former they risk damaging their reputation and/or the relationship with the
customer.  If they do the later they don't make any money.  The converged
company, by contrast, can still put in a good solution AND make money.  Win for
the customer and the company.
</p>
        <p>
If you are interested the Vodafone ad can be viewed <a href="http://www.vodafone.co.nz/business/case_studies/VFX_WMV_256.wmv">here</a> (WMV
format).
</p>
        <img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=8e841401-f64e-4072-a21c-a6a363e1fb51" />
      </body>
      <title>Toughbook Touch Tablet in Vodafone Ad</title>
      <guid isPermaLink="false">http://www.pringle.net.nz/blog/PermaLink,guid,8e841401-f64e-4072-a21c-a6a363e1fb51.aspx</guid>
      <link>http://www.pringle.net.nz/blog/PermaLink,guid,8e841401-f64e-4072-a21c-a6a363e1fb51.aspx</link>
      <pubDate>Mon, 13 Feb 2006 08:45:23 GMT</pubDate>
      <description>&lt;p&gt;
The latest &lt;a href="http://www.vodafone.co.nz"&gt;Vodafone&lt;/a&gt; add caught my attention
for two reasons.&amp;nbsp; The first reason is that it includes what appears to be a &lt;a href="http://catalog2.panasonic.com/webapp/wcs/stores/servlet/ModelDetail?displayTab=O&amp;amp;storeId=11201&amp;amp;catalogId=13051&amp;amp;itemId=68952&amp;amp;catGroupId=12871&amp;amp;modelNo=Toughbook-18&amp;amp;surfModel=Toughbook-18"&gt;Panasonic
Toughbook CF-18&lt;/a&gt; touchscreen tablet in use in the field.
&lt;/p&gt;
&lt;p&gt;
&lt;img src="http://www.pringle.net.nz/blog/content/binary/vodacf-18.gif" border=0&gt;
&lt;/p&gt;
&lt;p&gt;
The tablet is in use as part of a solution on an America's Cup race yacht.&amp;nbsp; Under
the rules of the Americas Cup all there can't be communications gear on the yacht
during the race.&amp;nbsp; In order to start the race with the best possible information
the crews keep these GSM connected devices onboard to get the latest weather information
then put them in a baggie and throw them over the side seconds before crossing the
start line.
&lt;/p&gt;
&lt;p&gt;
The other thing that caught my eye is that - IMO - it is not the best solution.&amp;nbsp;
Before I explain why, let me state my bias.&amp;nbsp; I work for &lt;a href="http://www.telecom.co.nz"&gt;Telecom
NZ&lt;/a&gt; which is a competitor of Vodafone NZ.&amp;nbsp; That said everything on this blog
is my opinion and may or may not be the opinion of my employer (as per the disclaimer).
&lt;/p&gt;
&lt;p&gt;
The reason I say it is not the best solution is that they are trying to get data from
the teams weather boat to the race boat.&amp;nbsp; Both boats are in the same general
area and there are several other team boats in the area.&amp;nbsp; Why pay cellular data
charges when you could easily set up a moving wireless mesh network with a node on
each of the support boats.&amp;nbsp; This would give bandwidth measured in 10s of megabits
rather than 100s of kilobits and much lower latency.&amp;nbsp; In addition, out on the
water you are somewhat removed from land based cell sites, however conditions are
excellent for a localized mesh!
&lt;/p&gt;
&lt;p&gt;
This is a good example of why going forward a company such as Telecom, which was a
telco but has purchased IT capability, has a distinct advantage over competitors that
are purely telcos.&amp;nbsp; In a situation where cellular voice and data don't make sense
they either have to pushin a less-than-optimal solution or walk away.&amp;nbsp; If they
do the former they risk damaging their reputation and/or the relationship with the
customer.&amp;nbsp; If they do the later they don't make any money.&amp;nbsp; The converged
company, by contrast, can still put in a good solution AND make money.&amp;nbsp; Win for
the customer and the company.
&lt;/p&gt;
&lt;p&gt;
If you are interested the Vodafone ad can be viewed &lt;a href="http://www.vodafone.co.nz/business/case_studies/VFX_WMV_256.wmv"&gt;here&lt;/a&gt;&amp;nbsp;(WMV
format).
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=8e841401-f64e-4072-a21c-a6a363e1fb51" /&gt;</description>
      <comments>http://www.pringle.net.nz/blog/CommentView,guid,8e841401-f64e-4072-a21c-a6a363e1fb51.aspx</comments>
      <category>Connectivity</category>
      <category>General</category>
      <category>TabletPC</category>
    </item>
    <item>
      <trackback:ping>http://www.pringle.net.nz/blog/Trackback.aspx?guid=f055f186-f315-4add-b0c0-c3c953cde973</trackback:ping>
      <pingback:server>http://www.pringle.net.nz/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.pringle.net.nz/blog/PermaLink,guid,f055f186-f315-4add-b0c0-c3c953cde973.aspx</pingback:target>
      <dc:creator>Craig Pringle</dc:creator>
      <wfw:comment>http://www.pringle.net.nz/blog/CommentView,guid,f055f186-f315-4add-b0c0-c3c953cde973.aspx</wfw:comment>
      <wfw:commentRss>http://www.pringle.net.nz/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=f055f186-f315-4add-b0c0-c3c953cde973</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
James Kendrick points to a <a href="http://jkontherun.blogs.com/jkontherun/2006/01/google_mobilize.html">very
useful tool</a> if you ever try to navigate the web on a mobile device such as a PDA,
a phone, or some lovechild of the two...
</p>
        <p>
          <a href="http://www.google.com/gwt/n">Google Mobilizer</a> provides a minimalist interface
that allows the user to enter a url.  Mobilizer will fetch the content and present
it in a mobile device friendly format - optionally without pictures.  Very cool
- add it to your mobile favorites.
</p>
        <img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=f055f186-f315-4add-b0c0-c3c953cde973" />
      </body>
      <title>View any site on a mobile device - Google Mobilizer</title>
      <guid isPermaLink="false">http://www.pringle.net.nz/blog/PermaLink,guid,f055f186-f315-4add-b0c0-c3c953cde973.aspx</guid>
      <link>http://www.pringle.net.nz/blog/PermaLink,guid,f055f186-f315-4add-b0c0-c3c953cde973.aspx</link>
      <pubDate>Tue, 17 Jan 2006 09:25:52 GMT</pubDate>
      <description>&lt;p&gt;
James Kendrick points to a &lt;a href="http://jkontherun.blogs.com/jkontherun/2006/01/google_mobilize.html"&gt;very
useful tool&lt;/a&gt; if you ever try to navigate the web on a mobile device such as a PDA,
a phone, or some lovechild of the two...
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.google.com/gwt/n"&gt;Google Mobilizer&lt;/a&gt; provides a minimalist interface
that allows the user to enter a url.&amp;nbsp; Mobilizer will fetch the content and present
it in a mobile device friendly format - optionally without pictures.&amp;nbsp; Very cool
- add it to your mobile favorites.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=f055f186-f315-4add-b0c0-c3c953cde973" /&gt;</description>
      <comments>http://www.pringle.net.nz/blog/CommentView,guid,f055f186-f315-4add-b0c0-c3c953cde973.aspx</comments>
      <category>Connectivity</category>
      <category>General</category>
    </item>
    <item>
      <trackback:ping>http://www.pringle.net.nz/blog/Trackback.aspx?guid=1bbd28d3-be2f-4ce8-9633-066aaf130e8f</trackback:ping>
      <pingback:server>http://www.pringle.net.nz/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.pringle.net.nz/blog/PermaLink,guid,1bbd28d3-be2f-4ce8-9633-066aaf130e8f.aspx</pingback:target>
      <dc:creator>Craig Pringle</dc:creator>
      <wfw:comment>http://www.pringle.net.nz/blog/CommentView,guid,1bbd28d3-be2f-4ce8-9633-066aaf130e8f.aspx</wfw:comment>
      <wfw:commentRss>http://www.pringle.net.nz/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=1bbd28d3-be2f-4ce8-9633-066aaf130e8f</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
I recently <a href="http://www.pringle.net.nz/blog/PermaLink,guid,872b343d-89b1-4fa9-9ec9-40e37edbcfbe.aspx">blogged
about the very clever DotSurfer EVDO card</a> that has a built in USB connection,
allowing it to be used with devices without a PC Card slot.
</p>
        <p>
This is available in New Zealand through Telecom, but AFAIK not in the US.  This
left several readers asking "What about us?"
</p>
        <p>
Now there is an answer (other than move to NZ) that will be available in the US in
Feburary 2006.
</p>
        <p>
          <a href="http://jkontherun.blogs.com/jkontherun/2005/12/finally_a_usb_a.html">James
Kendrick points</a> to the very cool Elan Digital Systems <a href="http://www.elandigitalsystems.com/usb/u132.php">U132</a> -
an apadtor specifically designed for portable devices without a PCMCIA slot.
</p>
        <p>
"<em>What makes the introduction of the U132 so exciting is the list of 3G cards the
company is listing as compatible:</em></p>
        <ul>
          <li>
            <em>Alltel CDMA, USA (Kyocera Wireless Passport KPC650) </em>
          </li>
          <li>
            <em>Iusacell CDMA, Mexico (Kyocera Wireless Passport KPC650) </em>
          </li>
          <li>
            <em>MTN Mobile Office Fusion Card, South Africa (Option Fusion) </em>
          </li>
          <li>
            <em>Movistar CDMA, Argentina (Kyocera Wireless Passport KPC650) </em>
          </li>
          <li>
            <em>Optimus Telecommunications, Portugal (Huawei E600) </em>
          </li>
          <li>
            <em>Orange Mobile Office Fusion Card, UK + France (Option Fusion) </em>
          </li>
          <li>
            <em>Sprint CDMA, USA (Novatel Wireless S620) </em>
          </li>
          <li>
            <em>T-Mobile, Germany + Austria (Option Fusion) </em>
          </li>
          <li>
            <em>Verizon CDMA, USA (Kyocera Wireless Passport KPC650) </em>
          </li>
          <li>
            <em>Verizon CDMA, USA (Novatel Wireless V620) </em>
          </li>
          <li>
            <em>Vivo CDMA, Brazil (Kyocera Wireless Passport KPC650) </em>
          </li>
          <li>
            <em>Vodacom UMTS, South Africa (Fusion Card) </em>
          </li>
          <li>
            <em>Vodafone UMTS, UK (Mobile Connect Card)"</em>
          </li>
        </ul>
        <img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=1bbd28d3-be2f-4ce8-9633-066aaf130e8f" />
      </body>
      <title>A USB 3G option for the rest of the world</title>
      <guid isPermaLink="false">http://www.pringle.net.nz/blog/PermaLink,guid,1bbd28d3-be2f-4ce8-9633-066aaf130e8f.aspx</guid>
      <link>http://www.pringle.net.nz/blog/PermaLink,guid,1bbd28d3-be2f-4ce8-9633-066aaf130e8f.aspx</link>
      <pubDate>Mon, 26 Dec 2005 21:49:19 GMT</pubDate>
      <description>&lt;p&gt;
I recently &lt;a href="http://www.pringle.net.nz/blog/PermaLink,guid,872b343d-89b1-4fa9-9ec9-40e37edbcfbe.aspx"&gt;blogged
about the very clever DotSurfer EVDO card&lt;/a&gt; that has a built in USB connection,
allowing it to be used with devices without a PC Card slot.
&lt;/p&gt;
&lt;p&gt;
This is available in New Zealand through Telecom, but AFAIK not in the US.&amp;nbsp; This
left several readers asking "What about us?"
&lt;/p&gt;
&lt;p&gt;
Now there is an answer (other than move to NZ) that will be available in the US in
Feburary 2006.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://jkontherun.blogs.com/jkontherun/2005/12/finally_a_usb_a.html"&gt;James
Kendrick points&lt;/a&gt; to the very cool Elan Digital Systems &lt;a href="http://www.elandigitalsystems.com/usb/u132.php"&gt;U132&lt;/a&gt;&amp;nbsp;-
an apadtor specifically designed for portable devices without a PCMCIA slot.
&lt;/p&gt;
&lt;p&gt;
"&lt;em&gt;What makes the introduction of the U132 so exciting is the list of 3G cards the
company is listing as compatible:&lt;/em&gt;
&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;em&gt;Alltel CDMA, USA (Kyocera Wireless Passport KPC650) &lt;/em&gt; 
&lt;li&gt;
&lt;em&gt;Iusacell CDMA, Mexico (Kyocera Wireless Passport KPC650) &lt;/em&gt; 
&lt;li&gt;
&lt;em&gt;MTN Mobile Office Fusion Card, South Africa (Option Fusion) &lt;/em&gt; 
&lt;li&gt;
&lt;em&gt;Movistar CDMA, Argentina (Kyocera Wireless Passport KPC650) &lt;/em&gt; 
&lt;li&gt;
&lt;em&gt;Optimus Telecommunications, Portugal (Huawei E600) &lt;/em&gt; 
&lt;li&gt;
&lt;em&gt;Orange Mobile Office Fusion Card, UK + France (Option Fusion) &lt;/em&gt; 
&lt;li&gt;
&lt;em&gt;Sprint CDMA, USA (Novatel Wireless S620) &lt;/em&gt; 
&lt;li&gt;
&lt;em&gt;T-Mobile, Germany + Austria (Option Fusion) &lt;/em&gt; 
&lt;li&gt;
&lt;em&gt;Verizon CDMA, USA (Kyocera Wireless Passport KPC650) &lt;/em&gt; 
&lt;li&gt;
&lt;em&gt;Verizon CDMA, USA (Novatel Wireless V620) &lt;/em&gt; 
&lt;li&gt;
&lt;em&gt;Vivo CDMA, Brazil (Kyocera Wireless Passport KPC650) &lt;/em&gt; 
&lt;li&gt;
&lt;em&gt;Vodacom UMTS, South Africa (Fusion Card) &lt;/em&gt; 
&lt;li&gt;
&lt;em&gt;Vodafone UMTS, UK (Mobile Connect Card)"&lt;/em&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=1bbd28d3-be2f-4ce8-9633-066aaf130e8f" /&gt;</description>
      <comments>http://www.pringle.net.nz/blog/CommentView,guid,1bbd28d3-be2f-4ce8-9633-066aaf130e8f.aspx</comments>
      <category>Connectivity</category>
    </item>
    <item>
      <trackback:ping>http://www.pringle.net.nz/blog/Trackback.aspx?guid=be44c1c7-481f-4bb8-a8dd-050465ac0c2b</trackback:ping>
      <pingback:server>http://www.pringle.net.nz/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.pringle.net.nz/blog/PermaLink,guid,be44c1c7-481f-4bb8-a8dd-050465ac0c2b.aspx</pingback:target>
      <dc:creator>Craig Pringle</dc:creator>
      <wfw:comment>http://www.pringle.net.nz/blog/CommentView,guid,be44c1c7-481f-4bb8-a8dd-050465ac0c2b.aspx</wfw:comment>
      <wfw:commentRss>http://www.pringle.net.nz/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=be44c1c7-481f-4bb8-a8dd-050465ac0c2b</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
This looks like a great addition to any mobli-geek's kit bag.  The WiFlyer is
a portable wi-fi access point that can allow you to use your hotel broadband away
from the desk.  And if the hotel does not have broadband all is not lost. 
From the GeekZone review:
</p>
        <p>
"<em>In addition to being a wireless access point, the WiFlier also has an ethernet
adapter, so you can plug a non-wireless capable computer directly to the small box.<br /><br />
But what is really interesting is its ability to connect to a phone line and dial-up
to your ISP, as a modem - a wireless modem for that matter. It comes with a built-in
V.92/V.90 compatible modem, with digital PBX protection, as an alternative connection</em>"
</p>
        <p>
Check out the <a href="http://www.geekzone.co.nz/content.asp?ContentId=5647">full
review here</a>.  
</p>
        <img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=be44c1c7-481f-4bb8-a8dd-050465ac0c2b" />
      </body>
      <title>WiFlyer - travel Access Point that Does Dial-up</title>
      <guid isPermaLink="false">http://www.pringle.net.nz/blog/PermaLink,guid,be44c1c7-481f-4bb8-a8dd-050465ac0c2b.aspx</guid>
      <link>http://www.pringle.net.nz/blog/PermaLink,guid,be44c1c7-481f-4bb8-a8dd-050465ac0c2b.aspx</link>
      <pubDate>Mon, 26 Dec 2005 07:02:00 GMT</pubDate>
      <description>&lt;p&gt;
This looks like a great addition to any mobli-geek's kit bag.&amp;nbsp; The WiFlyer is
a portable wi-fi access point that can allow you to use your hotel broadband away
from the desk.&amp;nbsp; And if the hotel does not have broadband all is not lost.&amp;nbsp;
From the GeekZone review:
&lt;/p&gt;
&lt;p&gt;
"&lt;em&gt;In addition to being a wireless access point, the WiFlier also has an ethernet
adapter, so you can plug a non-wireless capable computer directly to the small box.&lt;br&gt;
&lt;br&gt;
But what is really interesting is its ability to connect to a phone line and dial-up
to your ISP, as a modem - a wireless modem for that matter. It comes with a built-in
V.92/V.90 compatible modem, with digital PBX protection, as an alternative connection&lt;/em&gt;"
&lt;/p&gt;
&lt;p&gt;
Check out the &lt;a href="http://www.geekzone.co.nz/content.asp?ContentId=5647"&gt;full
review here&lt;/a&gt;.&amp;nbsp; 
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=be44c1c7-481f-4bb8-a8dd-050465ac0c2b" /&gt;</description>
      <comments>http://www.pringle.net.nz/blog/CommentView,guid,be44c1c7-481f-4bb8-a8dd-050465ac0c2b.aspx</comments>
      <category>Connectivity</category>
    </item>
    <item>
      <trackback:ping>http://www.pringle.net.nz/blog/Trackback.aspx?guid=872b343d-89b1-4fa9-9ec9-40e37edbcfbe</trackback:ping>
      <pingback:server>http://www.pringle.net.nz/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.pringle.net.nz/blog/PermaLink,guid,872b343d-89b1-4fa9-9ec9-40e37edbcfbe.aspx</pingback:target>
      <dc:creator>Craig Pringle</dc:creator>
      <wfw:comment>http://www.pringle.net.nz/blog/CommentView,guid,872b343d-89b1-4fa9-9ec9-40e37edbcfbe.aspx</wfw:comment>
      <wfw:commentRss>http://www.pringle.net.nz/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=872b343d-89b1-4fa9-9ec9-40e37edbcfbe</wfw:commentRss>
      <title>An EVDO solution for the LS800</title>
      <guid isPermaLink="false">http://www.pringle.net.nz/blog/PermaLink,guid,872b343d-89b1-4fa9-9ec9-40e37edbcfbe.aspx</guid>
      <link>http://www.pringle.net.nz/blog/PermaLink,guid,872b343d-89b1-4fa9-9ec9-40e37edbcfbe.aspx</link>
      <pubDate>Wed, 21 Dec 2005 08:32:29 GMT</pubDate>
      <description>&lt;p class=MsoNormal style="MARGIN: 0cm 0cm 0pt"&gt;
&lt;span style="mso-ansi-language: EN-NZ"&gt;&lt;font color=#000000&gt;&lt;font face=Arial&gt;One of
the frequently mentioned limitations of the petit LS800 from Motion Computing is that
without a PCMCIA slot you can’t use an EVDO card for connectivity on the go.&lt;span style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/span&gt;While
I continue to hope that EVDO will be embedded in mobile computers in the near future
I was looking for a solution for these devices today.&lt;span style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/span&gt;Enter
the GTran Wireless DotSurfer 6210 dual band CDMA/EVDO card.&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;
&lt;/p&gt;
&lt;p class=MsoNormal style="MARGIN: 0cm 0cm 0pt"&gt;
&lt;span style="mso-ansi-language: EN-NZ"&gt;&lt;font color=#000000&gt;&lt;font face=Arial&gt;&lt;?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /&gt;
&lt;o:p&gt;&lt;/o:p&gt;
&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&amp;nbsp;&lt;img src="http://www.pringle.net.nz/blog/content/binary/HPIM0057.JPG" border=0&gt;
&lt;/p&gt;
&lt;p class=MsoNormal style="MARGIN: 0cm 0cm 0pt"&gt;
&lt;span style="mso-ansi-language: EN-NZ"&gt;&lt;font color=#000000&gt;&lt;font face=Arial&gt;In addition
to being a fully functional PCMCIA card in it’s own right the 6210 is something else.&lt;span style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/span&gt;On
one end of the DotSurfer card is a standard PCMCIA interface.&lt;span style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/span&gt;On
the other end is an antenna and a rubber cap that covers an interface for a USB cable.&lt;span style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;
&lt;/p&gt;
&lt;p class=MsoNormal style="MARGIN: 0cm 0cm 0pt"&gt;
&lt;span style="mso-ansi-language: EN-NZ"&gt;&lt;font color=#000000&gt;&lt;font face=Arial&gt;&lt;span style="mso-spacerun: yes"&gt;&lt;/span&gt;
&lt;o:p&gt;&lt;/o:p&gt;
&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&amp;nbsp;&lt;img src="http://www.pringle.net.nz/blog/content/binary/HPIM0058.JPG" border=0&gt;
&lt;/p&gt;
&lt;p class=MsoNormal style="MARGIN: 0cm 0cm 0pt"&gt;
&lt;span style="mso-ansi-language: EN-NZ"&gt;&lt;font color=#000000&gt;&lt;font face=Arial&gt;This allows
you to connect the DotSurfer 6210 card to any computer with a USB port and surf at
EVDO speeds wherever there is coverage.&lt;span style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/span&gt;This
is an excellent solution for the LS800.&lt;o:p&gt;&lt;/o:p&gt;
&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;
&lt;/p&gt;
&lt;p class=MsoNormal style="MARGIN: 0cm 0cm 0pt"&gt;
&lt;span style="mso-ansi-language: EN-NZ"&gt;&lt;font color=#000000&gt;&lt;font face=Arial&gt;The picture
below shows the DotSurfer card connected to the LS800.&lt;span style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;
&lt;/p&gt;
&lt;p class=MsoNormal style="MARGIN: 0cm 0cm 0pt"&gt;
&lt;span style="mso-ansi-language: EN-NZ"&gt;&lt;font color=#000000&gt;&lt;font face=Arial&gt;&lt;span style="mso-spacerun: yes"&gt;&lt;/span&gt;
&lt;o:p&gt;&lt;/o:p&gt;
&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&amp;nbsp;&lt;img src="http://www.pringle.net.nz/blog/content/binary/HPIM0055.JPG" border=0&gt;
&lt;/p&gt;
&lt;p class=MsoNormal style="MARGIN: 0cm 0cm 0pt"&gt;
&lt;span style="mso-ansi-language: EN-NZ"&gt;&lt;font color=#000000&gt;&lt;font face=Arial&gt;If you
are looking for a more portable solution then you can tuck the card and the excess
cable behind the strap on the bump case as shown below.&lt;span style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;
&lt;/p&gt;
&lt;p class=MsoNormal style="MARGIN: 0cm 0cm 0pt"&gt;
&lt;span style="mso-ansi-language: EN-NZ"&gt;&lt;font color=#000000&gt;&lt;font face=Arial&gt;&lt;span style="mso-spacerun: yes"&gt;&lt;/span&gt;
&lt;o:p&gt;&lt;/o:p&gt;
&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&amp;nbsp;&lt;img src="http://www.pringle.net.nz/blog/content/binary/HPIM0056.JPG" border=0&gt;
&lt;/p&gt;
&lt;p class=MsoNormal style="MARGIN: 0cm 0cm 0pt"&gt;
&lt;span style="mso-ansi-language: EN-NZ"&gt;&lt;font color=#000000&gt;&lt;font face=Arial&gt;&lt;?xml:namespace prefix = st1 ns = "urn:schemas-microsoft-com:office:smarttags" /&gt;The
DotSurfer 6210 is available through Telecom in 
&lt;st1:country-region w:st="on"&gt;
&lt;st1:place w:st="on"&gt;New Zealand&lt;/st1:place&gt;
&lt;/st1:country-region&gt;
.&lt;span style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/span&gt;A great option if you need EVDO on
a device without a PC Card slot.&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=872b343d-89b1-4fa9-9ec9-40e37edbcfbe" /&gt;</description>
      <comments>http://www.pringle.net.nz/blog/CommentView,guid,872b343d-89b1-4fa9-9ec9-40e37edbcfbe.aspx</comments>
      <category>Connectivity</category>
      <category>TabletPC</category>
    </item>
    <item>
      <trackback:ping>http://www.pringle.net.nz/blog/Trackback.aspx?guid=b68f02b0-0b9a-41d2-bce5-dede2ffb28ef</trackback:ping>
      <pingback:server>http://www.pringle.net.nz/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.pringle.net.nz/blog/PermaLink,guid,b68f02b0-0b9a-41d2-bce5-dede2ffb28ef.aspx</pingback:target>
      <dc:creator>Craig Pringle</dc:creator>
      <wfw:comment>http://www.pringle.net.nz/blog/CommentView,guid,b68f02b0-0b9a-41d2-bce5-dede2ffb28ef.aspx</wfw:comment>
      <wfw:commentRss>http://www.pringle.net.nz/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=b68f02b0-0b9a-41d2-bce5-dede2ffb28ef</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Check out this very cool mini USB EVDO modem from <a href="http://www.maxon.com.au/ProductDetails.asp?ID=MM-5500U&amp;Type=10">Maxon </a>in
Australia.  Just what one needs if they have an ultra-mobile tablet without a
PC Card slot...  Like the very small Motion <a href="http://www.pringle.net.nz/blog/PermaLink,guid,bb18b5c7-e058-46f1-9375-8797beb076f9.aspx">LS800 I'm
playing with</a> this this weekend.
</p>
        <p>
          <img style="WIDTH: 160px; HEIGHT: 127px" alt="" hspace="0" src="http://www.pringle.net.nz/blog/content/binary/minimax.jpg" border="0" />
        </p>
        <p>
Features and Benefits
</p>
        <ul>
          <li>
EVDO with backwards compatibility to IS-95A/B and 1xRTT 
</li>
          <li>
Wireless Internet anytime anywhere 
</li>
          <li>
Data (Packet / Circuit )  Voice, SMS &amp; Fax 
</li>
          <li>
Direct connection to desktop PC’s &amp; notebook computers 
</li>
          <li>
Windows 2000, Windows XP, Mac OS (10.3.7 and later) 
</li>
          <li>
Exceptional price and performance 
</li>
          <li>
Open hardware interface via USB</li>
        </ul>
        <img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=b68f02b0-0b9a-41d2-bce5-dede2ffb28ef" />
      </body>
      <title>Mini USB EVDO Modem</title>
      <guid isPermaLink="false">http://www.pringle.net.nz/blog/PermaLink,guid,b68f02b0-0b9a-41d2-bce5-dede2ffb28ef.aspx</guid>
      <link>http://www.pringle.net.nz/blog/PermaLink,guid,b68f02b0-0b9a-41d2-bce5-dede2ffb28ef.aspx</link>
      <pubDate>Fri, 19 Aug 2005 08:23:12 GMT</pubDate>
      <description>&lt;p&gt;
Check out this very cool mini USB EVDO modem from &lt;a href="http://www.maxon.com.au/ProductDetails.asp?ID=MM-5500U&amp;amp;Type=10"&gt;Maxon &lt;/a&gt;in
Australia.&amp;nbsp; Just what one needs if they have an ultra-mobile tablet without a
PC Card slot...&amp;nbsp; Like the very small Motion &lt;a href="http://www.pringle.net.nz/blog/PermaLink,guid,bb18b5c7-e058-46f1-9375-8797beb076f9.aspx"&gt;LS800&amp;nbsp;I'm
playing with&lt;/a&gt; this this weekend.
&lt;/p&gt;
&lt;p&gt;
&lt;img style="WIDTH: 160px; HEIGHT: 127px" alt="" hspace=0 src="http://www.pringle.net.nz/blog/content/binary/minimax.jpg" border=0&gt;
&lt;/p&gt;
&lt;p&gt;
Features and Benefits
&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
EVDO with backwards compatibility to IS-95A/B and 1xRTT 
&lt;li&gt;
Wireless Internet anytime anywhere 
&lt;li&gt;
Data (Packet / Circuit )&amp;nbsp; Voice, SMS &amp;amp; Fax 
&lt;li&gt;
Direct connection to desktop PC’s &amp;amp; notebook computers 
&lt;li&gt;
Windows 2000, Windows XP, Mac OS (10.3.7 and later) 
&lt;li&gt;
Exceptional price and performance 
&lt;li&gt;
Open hardware interface via USB&lt;/li&gt;
&lt;/ul&gt;
&lt;img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=b68f02b0-0b9a-41d2-bce5-dede2ffb28ef" /&gt;</description>
      <comments>http://www.pringle.net.nz/blog/CommentView,guid,b68f02b0-0b9a-41d2-bce5-dede2ffb28ef.aspx</comments>
      <category>Connectivity</category>
    </item>
  </channel>
</rss>