<?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 - Windows 7</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 - Windows 7</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=b7ef4ddf-f27e-494b-9080-45d8d01778da</trackback:ping>
      <pingback:server>http://www.pringle.net.nz/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.pringle.net.nz/blog/PermaLink,guid,b7ef4ddf-f27e-494b-9080-45d8d01778da.aspx</pingback:target>
      <dc:creator>Craig Pringle</dc:creator>
      <wfw:comment>http://www.pringle.net.nz/blog/CommentView,guid,b7ef4ddf-f27e-494b-9080-45d8d01778da.aspx</wfw:comment>
      <wfw:commentRss>http://www.pringle.net.nz/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=b7ef4ddf-f27e-494b-9080-45d8d01778da</wfw:commentRss>
      <slash:comments>3</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
A couple weeks ago the OS informed me that the extended battery for my Motion LS800
had issues and should be replaced.  Not really surprising as the battery is 3
or 4 years old and has been heavily used.  
</p>
        <p>
I swapped back to the standard battery and now woe is me – it too tells me that it
needs to be replaced.  This battery is actually even older than the Extended
battery.
</p>
        <p>
This could spell the end for my much loved Motion LS800, which is a real shame. 
Worse than that it is my only tablet that is a slate.  And if I were to replace
it – what would I replace it with?
</p>
        <p>
Motion seem to have focused on vertical markets and as such all the new devices they
are releasing are ruggudised, specialised or both.  Who makes a nice corporate
Slate these days?  
</p>
        <p>
Electrovaya and the <a href="http://shop.5click.com/evstore/directory.cfm?CategoryID=3">Scribbler
SC 4000</a> still seem to be around, but they have never made it downunder AFAIK.
</p>
        <p>
The <a href="http://www.tabletkiosk.com/products/sahara/i400s_pp.asp">Tablet Kiosk
Sahara range</a> is probably the most comprehensive, but there has been little development
in the year or so since I looked at it last.
</p>
        <p>
Fujitsu have had an on again, off again affair with the slate form factor.
</p>
        <p>
Why isn’t anyone building cool new slates these days?  Do you think we’ll see
any new slates hitting the market when Windows 7 ships?
</p>
        <img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=b7ef4ddf-f27e-494b-9080-45d8d01778da" />
      </body>
      <title>End of the Slate Era?</title>
      <guid isPermaLink="false">http://www.pringle.net.nz/blog/PermaLink,guid,b7ef4ddf-f27e-494b-9080-45d8d01778da.aspx</guid>
      <link>http://www.pringle.net.nz/blog/PermaLink,guid,b7ef4ddf-f27e-494b-9080-45d8d01778da.aspx</link>
      <pubDate>Mon, 11 May 2009 12:24:13 GMT</pubDate>
      <description>&lt;p&gt;
A couple weeks ago the OS informed me that the extended battery for my Motion LS800
had issues and should be replaced.&amp;#160; Not really surprising as the battery is 3
or 4 years old and has been heavily used.&amp;#160; 
&lt;/p&gt;
&lt;p&gt;
I swapped back to the standard battery and now woe is me – it too tells me that it
needs to be replaced.&amp;#160; This battery is actually even older than the Extended
battery.
&lt;/p&gt;
&lt;p&gt;
This could spell the end for my much loved Motion LS800, which is a real shame.&amp;#160;
Worse than that it is my only tablet that is a slate.&amp;#160; And if I were to replace
it – what would I replace it with?
&lt;/p&gt;
&lt;p&gt;
Motion seem to have focused on vertical markets and as such all the new devices they
are releasing are ruggudised, specialised or both.&amp;#160; Who makes a nice corporate
Slate these days?&amp;#160; 
&lt;/p&gt;
&lt;p&gt;
Electrovaya and the &lt;a href="http://shop.5click.com/evstore/directory.cfm?CategoryID=3"&gt;Scribbler
SC 4000&lt;/a&gt; still seem to be around, but they have never made it downunder AFAIK.
&lt;/p&gt;
&lt;p&gt;
The &lt;a href="http://www.tabletkiosk.com/products/sahara/i400s_pp.asp"&gt;Tablet Kiosk
Sahara range&lt;/a&gt; is probably the most comprehensive, but there has been little development
in the year or so since I looked at it last.
&lt;/p&gt;
&lt;p&gt;
Fujitsu have had an on again, off again affair with the slate form factor.
&lt;/p&gt;
&lt;p&gt;
Why isn’t anyone building cool new slates these days?&amp;#160; Do you think we’ll see
any new slates hitting the market when Windows 7 ships?
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=b7ef4ddf-f27e-494b-9080-45d8d01778da" /&gt;</description>
      <comments>http://www.pringle.net.nz/blog/CommentView,guid,b7ef4ddf-f27e-494b-9080-45d8d01778da.aspx</comments>
      <category>LS800</category>
      <category>Slate</category>
      <category>TabletPC</category>
      <category>Touch</category>
      <category>Windows 7</category>
    </item>
    <item>
      <trackback:ping>http://www.pringle.net.nz/blog/Trackback.aspx?guid=040f7637-49d2-4b74-b1ed-3b3c8c34bc06</trackback:ping>
      <pingback:server>http://www.pringle.net.nz/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.pringle.net.nz/blog/PermaLink,guid,040f7637-49d2-4b74-b1ed-3b3c8c34bc06.aspx</pingback:target>
      <dc:creator>Craig Pringle</dc:creator>
      <wfw:comment>http://www.pringle.net.nz/blog/CommentView,guid,040f7637-49d2-4b74-b1ed-3b3c8c34bc06.aspx</wfw:comment>
      <wfw:commentRss>http://www.pringle.net.nz/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=040f7637-49d2-4b74-b1ed-3b3c8c34bc06</wfw:commentRss>
      <slash:comments>1</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Previously I blogged about <a href="http://www.pringle.net.nz/blog/PermaLink,guid,2ab15ebc-195e-45f7-a5fa-6b3f42c51bc0.aspx">an
issue I first encountered with the Windows 7 M3</a> build (the one that was released
at PDC) and my hosted Exchange provider.<a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/Windows7RCResolvesHostedExchangeIssue_12E81/outlook_logo_2.jpg"><img style="border-bottom: 0px; border-left: 0px; display: inline; margin-left: 0px; border-top: 0px; margin-right: 0px; border-right: 0px" title="outlook_logo" border="0" alt="outlook_logo" align="right" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/Windows7RCResolvesHostedExchangeIssue_12E81/outlook_logo_thumb.jpg" width="150" height="196" /></a></p>
        <p>
In short when running the M3 build and the public beta I was unable to authenticate
to my hosted Exchange provider using my email address and password.  Instead
I had to find out the domain name and enter credentials in the format DOMAIN\username
in order for outlook to connect to Exchange.  This was a bit of a pain.
</p>
        <p>
The good news is that the Windows 7 Release Candidate resolves this issue and I can
now authenticate with my email address as I could under Windows Vista.
</p>
        <img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=040f7637-49d2-4b74-b1ed-3b3c8c34bc06" />
      </body>
      <title>Windows 7 RC Resolves Hosted Exchange Issue</title>
      <guid isPermaLink="false">http://www.pringle.net.nz/blog/PermaLink,guid,040f7637-49d2-4b74-b1ed-3b3c8c34bc06.aspx</guid>
      <link>http://www.pringle.net.nz/blog/PermaLink,guid,040f7637-49d2-4b74-b1ed-3b3c8c34bc06.aspx</link>
      <pubDate>Mon, 11 May 2009 11:30:46 GMT</pubDate>
      <description>&lt;p&gt;
Previously I blogged about &lt;a href="http://www.pringle.net.nz/blog/PermaLink,guid,2ab15ebc-195e-45f7-a5fa-6b3f42c51bc0.aspx"&gt;an
issue I first encountered with the Windows 7 M3&lt;/a&gt; build (the one that was released
at PDC) and my hosted Exchange provider.&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/Windows7RCResolvesHostedExchangeIssue_12E81/outlook_logo_2.jpg"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; margin-left: 0px; border-top: 0px; margin-right: 0px; border-right: 0px" title="outlook_logo" border="0" alt="outlook_logo" align="right" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/Windows7RCResolvesHostedExchangeIssue_12E81/outlook_logo_thumb.jpg" width="150" height="196" /&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
In short when running the M3 build and the public beta I was unable to authenticate
to my hosted Exchange provider using my email address and password.&amp;#160; Instead
I had to find out the domain name and enter credentials in the format DOMAIN\username
in order for outlook to connect to Exchange.&amp;#160; This was a bit of a pain.
&lt;/p&gt;
&lt;p&gt;
The good news is that the Windows 7 Release Candidate resolves this issue and I can
now authenticate with my email address as I could under Windows Vista.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=040f7637-49d2-4b74-b1ed-3b3c8c34bc06" /&gt;</description>
      <comments>http://www.pringle.net.nz/blog/CommentView,guid,040f7637-49d2-4b74-b1ed-3b3c8c34bc06.aspx</comments>
      <category>Outlook</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=e9f9935d-7bee-4212-ada0-1ca41377736f</trackback:ping>
      <pingback:server>http://www.pringle.net.nz/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.pringle.net.nz/blog/PermaLink,guid,e9f9935d-7bee-4212-ada0-1ca41377736f.aspx</pingback:target>
      <dc:creator>Craig Pringle</dc:creator>
      <wfw:comment>http://www.pringle.net.nz/blog/CommentView,guid,e9f9935d-7bee-4212-ada0-1ca41377736f.aspx</wfw:comment>
      <wfw:commentRss>http://www.pringle.net.nz/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=e9f9935d-7bee-4212-ada0-1ca41377736f</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
There is a new user group coming to town and starting the right way – with touch related
demos and fresh Windows 7 goodness.
</p>
        <p>
          <a href="http://nicholasrayner.com/blog">Nicholas Rayner</a> and <a href="http://craigbailey.net/">Craig
Bailey</a> have joined forces to create the <a href="http://windowsusergroup.com/">Sydney
Windows User Group</a>.  From the site:
</p>
        <blockquote>
          <p>
The aim of the SWUG is to support and provide advice to consumers, power users and
small business in regards to the Microsoft Windows Operating System and related products.
The user group will showcase the Windows Operating System and provide demonstrations
of key components of Windows can be used both at home and in your business.
</p>
          <p>
The User Group will also focus on related Microsoft Products including Windows Mobile,
Windows Home Server, Microsoft Office, Windows Live and XBOX 360 and how they can
be used to enhance the Windows user experience.
</p>
        </blockquote>
        <p>
The first meeting will be at Microsoft in Sydney on the 13th of May, 2009.  Here’s
the details.
</p>
        <blockquote>
          <p>
            <b>Meeting details</b>
          </p>
          <p>
Date: Wednesday 13<sup>th</sup> May 2009
</p>
          <p>
Time: 6pm – 9pm
</p>
          <p>
Venue: <a href="http://maps.live.com.au/?action=location&amp;location=1%20epping%20road%2C%20north%20ryde">Microsoft
Australia - 1 Epping Road, North Ryde</a></p>
          <p>
            <b>Agenda:</b>
          </p>
          <p>
            <b>6:00pm</b> – Introduction
</p>
          <p>
            <b>6:10pm</b> – News with Q&amp;A session
</p>
          <p>
            <b>6:30pm</b> – Windows 7 RC Demonstration
</p>
          <p>
            <b>7:20pm</b> – Break
</p>
          <p>
            <b>7:40pm</b> – Windows Touch including a demonstration on the HP Touchsmart PC
</p>
          <p>
            <b>8:20pm</b> – Close
</p>
          <p>
If you can make it to the first meeting, please RSVP to <a href="mailto:nicholas@windowsusergroup.com">nicholas@windowsusergroup.com</a></p>
        </blockquote>
        <p>
I’ve already put it in my calendar so if you can make it I’ll be seeing you there. 
You may also want to add the <a href="http://feeds2.feedburner.com/SydneyWindowsUserGroup">RSS
Feed from the SWUG blog</a> to your feed reader, so you can keep tabs on future meetings.
</p>
        <img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=e9f9935d-7bee-4212-ada0-1ca41377736f" />
      </body>
      <title>Announcing: Sydney Windows User Group</title>
      <guid isPermaLink="false">http://www.pringle.net.nz/blog/PermaLink,guid,e9f9935d-7bee-4212-ada0-1ca41377736f.aspx</guid>
      <link>http://www.pringle.net.nz/blog/PermaLink,guid,e9f9935d-7bee-4212-ada0-1ca41377736f.aspx</link>
      <pubDate>Sun, 26 Apr 2009 12:22:14 GMT</pubDate>
      <description>&lt;p&gt;
There is a new user group coming to town and starting the right way – with touch related
demos and fresh Windows 7 goodness.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://nicholasrayner.com/blog"&gt;Nicholas Rayner&lt;/a&gt; and &lt;a href="http://craigbailey.net/"&gt;Craig
Bailey&lt;/a&gt; have joined forces to create the &lt;a href="http://windowsusergroup.com/"&gt;Sydney
Windows User Group&lt;/a&gt;.&amp;#160; From the site:
&lt;/p&gt;
&lt;blockquote&gt; 
&lt;p&gt;
The aim of the SWUG is to support and provide advice to consumers, power users and
small business in regards to the Microsoft Windows Operating System and related products.
The user group will showcase the Windows Operating System and provide demonstrations
of key components of Windows can be used both at home and in your business.
&lt;/p&gt;
&lt;p&gt;
The User Group will also focus on related Microsoft Products including Windows Mobile,
Windows Home Server, Microsoft Office, Windows Live and XBOX 360 and how they can
be used to enhance the Windows user experience.
&lt;/p&gt;
&lt;/blockquote&gt; 
&lt;p&gt;
The first meeting will be at Microsoft in Sydney on the 13th of May, 2009.&amp;#160; Here’s
the details.
&lt;/p&gt;
&lt;blockquote&gt; 
&lt;p&gt;
&lt;b&gt;Meeting details&lt;/b&gt;
&lt;/p&gt;
&lt;p&gt;
Date: Wednesday 13&lt;sup&gt;th&lt;/sup&gt; May 2009
&lt;/p&gt;
&lt;p&gt;
Time: 6pm – 9pm
&lt;/p&gt;
&lt;p&gt;
Venue: &lt;a href="http://maps.live.com.au/?action=location&amp;amp;location=1%20epping%20road%2C%20north%20ryde"&gt;Microsoft
Australia - 1 Epping Road, North Ryde&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;b&gt;Agenda:&lt;/b&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;b&gt;6:00pm&lt;/b&gt; – Introduction
&lt;/p&gt;
&lt;p&gt;
&lt;b&gt;6:10pm&lt;/b&gt; – News with Q&amp;amp;A session
&lt;/p&gt;
&lt;p&gt;
&lt;b&gt;6:30pm&lt;/b&gt; – Windows 7 RC Demonstration
&lt;/p&gt;
&lt;p&gt;
&lt;b&gt;7:20pm&lt;/b&gt; – Break
&lt;/p&gt;
&lt;p&gt;
&lt;b&gt;7:40pm&lt;/b&gt; – Windows Touch including a demonstration on the HP Touchsmart PC
&lt;/p&gt;
&lt;p&gt;
&lt;b&gt;8:20pm&lt;/b&gt; – Close
&lt;/p&gt;
&lt;p&gt;
If you can make it to the first meeting, please RSVP to &lt;a href="mailto:nicholas@windowsusergroup.com"&gt;nicholas@windowsusergroup.com&lt;/a&gt;
&lt;/p&gt;
&lt;/blockquote&gt; 
&lt;p&gt;
I’ve already put it in my calendar so if you can make it I’ll be seeing you there.&amp;#160;
You may also want to add the &lt;a href="http://feeds2.feedburner.com/SydneyWindowsUserGroup"&gt;RSS
Feed from the SWUG blog&lt;/a&gt; to your feed reader, so you can keep tabs on future meetings.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=e9f9935d-7bee-4212-ada0-1ca41377736f" /&gt;</description>
      <comments>http://www.pringle.net.nz/blog/CommentView,guid,e9f9935d-7bee-4212-ada0-1ca41377736f.aspx</comments>
      <category>General</category>
      <category>SWUG</category>
      <category>Touch</category>
      <category>Windows 7</category>
    </item>
    <item>
      <trackback:ping>http://www.pringle.net.nz/blog/Trackback.aspx?guid=12fbb58f-5951-4d59-9194-d450cf88fcaa</trackback:ping>
      <pingback:server>http://www.pringle.net.nz/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.pringle.net.nz/blog/PermaLink,guid,12fbb58f-5951-4d59-9194-d450cf88fcaa.aspx</pingback:target>
      <dc:creator>Craig Pringle</dc:creator>
      <wfw:comment>http://www.pringle.net.nz/blog/CommentView,guid,12fbb58f-5951-4d59-9194-d450cf88fcaa.aspx</wfw:comment>
      <wfw:commentRss>http://www.pringle.net.nz/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=12fbb58f-5951-4d59-9194-d450cf88fcaa</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
My friend Chris recently took the plunge and installed Windows 7 on his Lenovo T61
notebook.  He had managed to get the fingerprint reader working on it and has <a href="http://www.cgoosen.com/2009/03/lenovo-t61-biometric-device-on-windows-7/">documented
the process in great detail</a>.  
</p>
        <blockquote>
          <p>
After rebuilding my trusty T61 with Windows 7 about a week ago, the only device that
was not functioning correctly was the “biometric coprocessor”. I tried installing
the software using ThinkVantage Productivity Center, but this did not work. After
asking google, I found that the device was manufactured by UPEK and that they have
released a Windows 7 driver on their site.
</p>
        </blockquote>
        <p>
Chris’ post is a great reference on <a href="http://www.cgoosen.com/2009/03/lenovo-t61-biometric-device-on-windows-7/">how
to install and configure the Lenovo T61 fingerprint reader in Windows 7</a>. 
Check it out.
</p>
        <img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=12fbb58f-5951-4d59-9194-d450cf88fcaa" />
      </body>
      <title>Windows 7, Fingerprints and a T61</title>
      <guid isPermaLink="false">http://www.pringle.net.nz/blog/PermaLink,guid,12fbb58f-5951-4d59-9194-d450cf88fcaa.aspx</guid>
      <link>http://www.pringle.net.nz/blog/PermaLink,guid,12fbb58f-5951-4d59-9194-d450cf88fcaa.aspx</link>
      <pubDate>Thu, 12 Mar 2009 10:27:14 GMT</pubDate>
      <description>&lt;p&gt;
My friend Chris recently took the plunge and installed Windows 7 on his Lenovo T61
notebook.&amp;#160; He had managed to get the fingerprint reader working on it and has &lt;a href="http://www.cgoosen.com/2009/03/lenovo-t61-biometric-device-on-windows-7/"&gt;documented
the process in great detail&lt;/a&gt;.&amp;#160; 
&lt;/p&gt;
&lt;blockquote&gt; 
&lt;p&gt;
After rebuilding my trusty T61 with Windows 7 about a week ago, the only device that
was not functioning correctly was the “biometric coprocessor”. I tried installing
the software using ThinkVantage Productivity Center, but this did not work. After
asking google, I found that the device was manufactured by UPEK and that they have
released a Windows 7 driver on their site.
&lt;/p&gt;
&lt;/blockquote&gt; 
&lt;p&gt;
Chris’ post is a great reference on &lt;a href="http://www.cgoosen.com/2009/03/lenovo-t61-biometric-device-on-windows-7/"&gt;how
to install and configure the Lenovo T61 fingerprint reader in Windows 7&lt;/a&gt;.&amp;#160;
Check it out.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=12fbb58f-5951-4d59-9194-d450cf88fcaa" /&gt;</description>
      <comments>http://www.pringle.net.nz/blog/CommentView,guid,12fbb58f-5951-4d59-9194-d450cf88fcaa.aspx</comments>
      <category>Lenovo</category>
      <category>Security</category>
      <category>Windows 7</category>
    </item>
    <item>
      <trackback:ping>http://www.pringle.net.nz/blog/Trackback.aspx?guid=069b336e-a4e2-4c37-a9a1-bfb69327883b</trackback:ping>
      <pingback:server>http://www.pringle.net.nz/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.pringle.net.nz/blog/PermaLink,guid,069b336e-a4e2-4c37-a9a1-bfb69327883b.aspx</pingback:target>
      <dc:creator>Craig Pringle</dc:creator>
      <wfw:comment>http://www.pringle.net.nz/blog/CommentView,guid,069b336e-a4e2-4c37-a9a1-bfb69327883b.aspx</wfw:comment>
      <wfw:commentRss>http://www.pringle.net.nz/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=069b336e-a4e2-4c37-a9a1-bfb69327883b</wfw:commentRss>
      <slash:comments>1</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
OK – here’s the scenario.  You work for company that has a few thousand employees. 
The standard desktop currently has Windows XP on it.  And you wonder – should
I start migrating to Vista now, or should I just wait until Windows 7 is released
and deploy that?  After all, Vista got slated in the press but Windows 7 is getting
rave reviews – surely that is a better move?
</p>
        <p>
For my money no.  The short answer I give customers today is to ensure that they
are buying Software Assurance so they are licensed for Windows 7 when it releases,
but start deploying Vista where it adds value today.
</p>
        <p>
There are two may reasons advice.
</p>
        <ol>
          <li>
There are features in Vista that some of your users would benefit from today. 
Starting your deployment with these low hanging fruit adds immediate value.</li>
          <li>
Your transition to Windows 7 will be eased significantly if you have already rolled
out at least some Vista machines.</li>
        </ol>
        <p>
Lets look at those in more detail.
</p>
        <p>
          <strong>Add Value for the Low Hanging Fruit</strong>
        </p>
        <p>
Firstly – let me be clear.  Being a low hanging fruit is in no way a bad thing. 
In our company I’m one!  What I mean by this is that there are some features
in Vista that add immediate value to some users in most organisations.  For example
I am a highly mobile tablet user with some commercially sensitive data on my machine. 
As such the improved power management, fast sleep and resume, much improve handwriting
recognition and BitLocker are quick wins for users like me in most organisations.
</p>
        <p>
          <strong>Easing Your Transition to Windows 7</strong>
        </p>
        <p>
The transition to Windows 7 will be easier from Vista than for Windows XP. Under the
hood there was a significant change between Windows XP and Windows Vista.  The
change between Windows Vista and Windows 7, however is relatively minor.  
</p>
        <p>
Architectural changes in the operating system lead to driver and application issues. 
As the architectural changes are cumulative the jump from XP to Windows 7 is slightly
larger than from XP to Vista.  But if you start the transition to Windows Vista
now, you can address the application compatibility, driver and hardware issues you
will probably have now.  If you get all your applications running on Windows
Vista then for the most part they will also run on Windows 7.  With a few exceptions
if there is a Vista driver for your hardware it will work on Windows 7.  If your
hardware will run Windows Vista it will run Windows 7.
</p>
        <p>
The last point to note is that if you are planning for a Windows 7 deployment you
can put  in place Microsoft Deployment Toolkit environment based on the MDT 2010
beta to deploy Vista and use this same infrastructure to deploy Windows 7 when it
releases. This would allow you to build the skills to create, maintain and deploy
standard builds and these skills would be transferable to your Windows 7 deployment
</p>
        <p>
          <strong>In Conclusion</strong>
        </p>
        <p>
Don’t wait.  If you are on Windows XP now, start deploying Vista to those who
will benefit most.  This will add immediate value to your business and ease your
transition to Windows 7 when it is released.
</p>
        <img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=069b336e-a4e2-4c37-a9a1-bfb69327883b" />
      </body>
      <title>Should Companies Wait for Windows 7?</title>
      <guid isPermaLink="false">http://www.pringle.net.nz/blog/PermaLink,guid,069b336e-a4e2-4c37-a9a1-bfb69327883b.aspx</guid>
      <link>http://www.pringle.net.nz/blog/PermaLink,guid,069b336e-a4e2-4c37-a9a1-bfb69327883b.aspx</link>
      <pubDate>Thu, 12 Mar 2009 10:21:21 GMT</pubDate>
      <description>&lt;p&gt;
OK – here’s the scenario.&amp;#160; You work for company that has a few thousand employees.&amp;#160;
The standard desktop currently has Windows XP on it.&amp;#160; And you wonder – should
I start migrating to Vista now, or should I just wait until Windows 7 is released
and deploy that?&amp;#160; After all, Vista got slated in the press but Windows 7 is getting
rave reviews – surely that is a better move?
&lt;/p&gt;
&lt;p&gt;
For my money no.&amp;#160; The short answer I give customers today is to ensure that they
are buying Software Assurance so they are licensed for Windows 7 when it releases,
but start deploying Vista where it adds value today.
&lt;/p&gt;
&lt;p&gt;
There are two may reasons advice.
&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
There are features in Vista that some of your users would benefit from today.&amp;#160;
Starting your deployment with these low hanging fruit adds immediate value.&lt;/li&gt;
&lt;li&gt;
Your transition to Windows 7 will be eased significantly if you have already rolled
out at least some Vista machines.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;
Lets look at those in more detail.
&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;Add Value for the Low Hanging Fruit&lt;/strong&gt;
&lt;/p&gt;
&lt;p&gt;
Firstly – let me be clear.&amp;#160; Being a low hanging fruit is in no way a bad thing.&amp;#160;
In our company I’m one!&amp;#160; What I mean by this is that there are some features
in Vista that add immediate value to some users in most organisations.&amp;#160; For example
I am a highly mobile tablet user with some commercially sensitive data on my machine.&amp;#160;
As such the improved power management, fast sleep and resume, much improve handwriting
recognition and BitLocker are quick wins for users like me in most organisations.
&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;Easing Your Transition to Windows 7&lt;/strong&gt;
&lt;/p&gt;
&lt;p&gt;
The transition to Windows 7 will be easier from Vista than for Windows XP. Under the
hood there was a significant change between Windows XP and Windows Vista.&amp;#160; The
change between Windows Vista and Windows 7, however is relatively minor.&amp;#160; 
&lt;/p&gt;
&lt;p&gt;
Architectural changes in the operating system lead to driver and application issues.&amp;#160;
As the architectural changes are cumulative the jump from XP to Windows 7 is slightly
larger than from XP to Vista.&amp;#160; But if you start the transition to Windows Vista
now, you can address the application compatibility, driver and hardware issues you
will probably have now.&amp;#160; If you get all your applications running on Windows
Vista then for the most part they will also run on Windows 7.&amp;#160; With a few exceptions
if there is a Vista driver for your hardware it will work on Windows 7.&amp;#160; If your
hardware will run Windows Vista it will run Windows 7.
&lt;/p&gt;
&lt;p&gt;
The last point to note is that if you are planning for a Windows 7 deployment you
can put&amp;#160; in place Microsoft Deployment Toolkit environment based on the MDT 2010
beta to deploy Vista and use this same infrastructure to deploy Windows 7 when it
releases. This would allow you to build the skills to create, maintain and deploy
standard builds and these skills would be transferable to your Windows 7 deployment
&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;In Conclusion&lt;/strong&gt;
&lt;/p&gt;
&lt;p&gt;
Don’t wait.&amp;#160; If you are on Windows XP now, start deploying Vista to those who
will benefit most.&amp;#160; This will add immediate value to your business and ease your
transition to Windows 7 when it is released.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=069b336e-a4e2-4c37-a9a1-bfb69327883b" /&gt;</description>
      <comments>http://www.pringle.net.nz/blog/CommentView,guid,069b336e-a4e2-4c37-a9a1-bfb69327883b.aspx</comments>
      <category>Deployment</category>
      <category>TabletPC</category>
      <category>Vista</category>
      <category>Windows 7</category>
    </item>
    <item>
      <trackback:ping>http://www.pringle.net.nz/blog/Trackback.aspx?guid=2fb41904-e202-4222-88d5-40f948c8c397</trackback:ping>
      <pingback:server>http://www.pringle.net.nz/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.pringle.net.nz/blog/PermaLink,guid,2fb41904-e202-4222-88d5-40f948c8c397.aspx</pingback:target>
      <dc:creator>Craig Pringle</dc:creator>
      <wfw:comment>http://www.pringle.net.nz/blog/CommentView,guid,2fb41904-e202-4222-88d5-40f948c8c397.aspx</wfw:comment>
      <wfw:commentRss>http://www.pringle.net.nz/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=2fb41904-e202-4222-88d5-40f948c8c397</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
I’ve been using Slysoft’s Virtual Clone Drive to mount ISOs on Windows 7 and I recently
stumbled across <a href="http://utvv.blogspot.com/2009/01/mount-iso-image-on-windows-7.html" target="_blank">this
post that outlined an issue with VCD on Windows 7</a>.  What would happen is
that periodically when you try to browse to a folder you would just get a grey box
when you tried to change folders.  
</p>
        <p>
I was having that exact same issue, but I had not made the link with VCD.  
</p>
        <p>
However, it transpires that there is a new beta of Virtual Clone Drive that adds Windows
7 support, among other things.  There is a <a href="http://forum.slysoft.com/showthread.php?t=25660" target="_blank">forum
post with more details</a> that makes for interesting reading.  Or if you like
you could just <a href="http://sandbox.slysoft.com/beta/SetupVirtualCloneDrive5423.exe" target="_blank">download
the new beta</a> version.
</p>
        <p>
I installed this straight over the top of the previous version and have been running
this beta for a couple of days now and the issue with file browsing is gone. 
Every thing seems to be working well with it.  As always, however, YMMV.
</p>
        <img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=2fb41904-e202-4222-88d5-40f948c8c397" />
      </body>
      <title>New Beta for Virtual Clone Drive</title>
      <guid isPermaLink="false">http://www.pringle.net.nz/blog/PermaLink,guid,2fb41904-e202-4222-88d5-40f948c8c397.aspx</guid>
      <link>http://www.pringle.net.nz/blog/PermaLink,guid,2fb41904-e202-4222-88d5-40f948c8c397.aspx</link>
      <pubDate>Mon, 09 Feb 2009 10:31:39 GMT</pubDate>
      <description>&lt;p&gt;
I’ve been using Slysoft’s Virtual Clone Drive to mount ISOs on Windows 7 and I recently
stumbled across &lt;a href="http://utvv.blogspot.com/2009/01/mount-iso-image-on-windows-7.html" target="_blank"&gt;this
post that outlined an issue with VCD on Windows 7&lt;/a&gt;.&amp;#160; What would happen is
that periodically when you try to browse to a folder you would just get a grey box
when you tried to change folders.&amp;#160; 
&lt;/p&gt;
&lt;p&gt;
I was having that exact same issue, but I had not made the link with VCD.&amp;#160; 
&lt;/p&gt;
&lt;p&gt;
However, it transpires that there is a new beta of Virtual Clone Drive that adds Windows
7 support, among other things.&amp;#160; There is a &lt;a href="http://forum.slysoft.com/showthread.php?t=25660" target="_blank"&gt;forum
post with more details&lt;/a&gt; that makes for interesting reading.&amp;#160; Or if you like
you could just &lt;a href="http://sandbox.slysoft.com/beta/SetupVirtualCloneDrive5423.exe" target="_blank"&gt;download
the new beta&lt;/a&gt; version.
&lt;/p&gt;
&lt;p&gt;
I installed this straight over the top of the previous version and have been running
this beta for a couple of days now and the issue with file browsing is gone.&amp;#160;
Every thing seems to be working well with it.&amp;#160; As always, however, YMMV.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=2fb41904-e202-4222-88d5-40f948c8c397" /&gt;</description>
      <comments>http://www.pringle.net.nz/blog/CommentView,guid,2fb41904-e202-4222-88d5-40f948c8c397.aspx</comments>
      <category>Windows 7</category>
    </item>
    <item>
      <trackback:ping>http://www.pringle.net.nz/blog/Trackback.aspx?guid=8346dd7b-1e0b-4886-b1e5-17c1d4d4fe4e</trackback:ping>
      <pingback:server>http://www.pringle.net.nz/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.pringle.net.nz/blog/PermaLink,guid,8346dd7b-1e0b-4886-b1e5-17c1d4d4fe4e.aspx</pingback:target>
      <dc:creator>Craig Pringle</dc:creator>
      <wfw:comment>http://www.pringle.net.nz/blog/CommentView,guid,8346dd7b-1e0b-4886-b1e5-17c1d4d4fe4e.aspx</wfw:comment>
      <wfw:commentRss>http://www.pringle.net.nz/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=8346dd7b-1e0b-4886-b1e5-17c1d4d4fe4e</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
I just posted <a href="http://www.pringle.net.nz/blog/PermaLink,guid,ce25f2d2-7078-473c-a89a-bc80cd22b89f.aspx" target="_blank">my
thoughts on Starter Edition</a> and how it could open up the bottom of the market
to the Microsoft platform.  I think this is a good thing.  Could this be
the birth of a new category?  <strong>W</strong>indows <strong>I</strong>nternet <strong>D</strong>evices
perhaps?
</p>
        <p>
I’m actually starting to get quite intrigued by the possibilities here…
</p>
        <img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=8346dd7b-1e0b-4886-b1e5-17c1d4d4fe4e" />
      </body>
      <title>Perhaps we will see WIDs?</title>
      <guid isPermaLink="false">http://www.pringle.net.nz/blog/PermaLink,guid,8346dd7b-1e0b-4886-b1e5-17c1d4d4fe4e.aspx</guid>
      <link>http://www.pringle.net.nz/blog/PermaLink,guid,8346dd7b-1e0b-4886-b1e5-17c1d4d4fe4e.aspx</link>
      <pubDate>Wed, 04 Feb 2009 11:54:07 GMT</pubDate>
      <description>&lt;p&gt;
I just posted &lt;a href="http://www.pringle.net.nz/blog/PermaLink,guid,ce25f2d2-7078-473c-a89a-bc80cd22b89f.aspx" target="_blank"&gt;my
thoughts on Starter Edition&lt;/a&gt; and how it could open up the bottom of the market
to the Microsoft platform.&amp;#160; I think this is a good thing.&amp;#160; Could this be
the birth of a new category?&amp;#160; &lt;strong&gt;W&lt;/strong&gt;indows &lt;strong&gt;I&lt;/strong&gt;nternet &lt;strong&gt;D&lt;/strong&gt;evices
perhaps?
&lt;/p&gt;
&lt;p&gt;
I’m actually starting to get quite intrigued by the possibilities here…
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=8346dd7b-1e0b-4886-b1e5-17c1d4d4fe4e" /&gt;</description>
      <comments>http://www.pringle.net.nz/blog/CommentView,guid,8346dd7b-1e0b-4886-b1e5-17c1d4d4fe4e.aspx</comments>
      <category>Gadgets</category>
      <category>Windows 7</category>
    </item>
    <item>
      <trackback:ping>http://www.pringle.net.nz/blog/Trackback.aspx?guid=ce25f2d2-7078-473c-a89a-bc80cd22b89f</trackback:ping>
      <pingback:server>http://www.pringle.net.nz/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.pringle.net.nz/blog/PermaLink,guid,ce25f2d2-7078-473c-a89a-bc80cd22b89f.aspx</pingback:target>
      <dc:creator>Craig Pringle</dc:creator>
      <wfw:comment>http://www.pringle.net.nz/blog/CommentView,guid,ce25f2d2-7078-473c-a89a-bc80cd22b89f.aspx</wfw:comment>
      <wfw:commentRss>http://www.pringle.net.nz/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=ce25f2d2-7078-473c-a89a-bc80cd22b89f</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Microsoft announced their SKU line-up for Windows 7 (Geekzone has <a href="http://www.geekzone.co.nz/content.asp?contentid=8066" target="_blank">a
good overview here</a>)and the reaction has been mixed.  One of the six SKUs
announced is the Starter Edition.
</p>
        <p>
The Starter Edition will only be offered via OEMs, will be limited to three concurrent
applications and will be limited to certain types of hardware.
</p>
        <p>
This has met with quite a bit of negative opinion – like <a href="http://www.atmasphere.net/wp/archives/2009/02/03/windows-7-starter-edition-what-cant-you-do-today" target="_blank">this
from atmaspheric|endevors</a>.
</p>
        <blockquote>
          <p>
And the worst thing I’ve read yet on the topic is that <a href="http://www.liliputing.com/2009/02/microsoft-to-offer-crippled-version-of-windows-7-for-netbooks.html">Netbooks
will get something called Starter Edition </a>which limits you to 3 concurrent applications
- who the hell wants that?
</p>
        </blockquote>
        <p>
I don’t see this as a bad thing at all.  OK – there is going to be a SKU that
is the same platform, but a bit limited.  In order for an OEM to license this
SKU there hardware will have to meet certain specs.
</p>
        <p>
That is not to say that every netbook will run Starter.  I believe that the units
that are running Starter will not be out there to compete against the units running
other SKUs of Windows .  They will be competing against the Nokia internet tablets. 
They will compete against the bottom of the eee range.  They will open up that
lower end market where the Windows license itself prices the unit out of the market. 
It will be great to have devices at the bottom end of the market that can run Windows
apps.  
</p>
        <p>
If you want a fully functional companion device – buy a netbook with Home Premium
on it.  If you want a glorified media centre remote, a device to browse feeds
on in the lounge or look at recipes in the kitchen or a media device for your train
commute then a Starter Edition device might be just the trick.  
</p>
        <p>
The Starter Edition SKU could open up a whole new range of low priced devices that
could be very interesting indeed.  At any rate it is far too early to get upset
about netbooks being knobbled by Microsoft.  Wait  and see.
</p>
        <img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=ce25f2d2-7078-473c-a89a-bc80cd22b89f" />
      </body>
      <title>The Starter Edition of Windows 7 is a Good Thing</title>
      <guid isPermaLink="false">http://www.pringle.net.nz/blog/PermaLink,guid,ce25f2d2-7078-473c-a89a-bc80cd22b89f.aspx</guid>
      <link>http://www.pringle.net.nz/blog/PermaLink,guid,ce25f2d2-7078-473c-a89a-bc80cd22b89f.aspx</link>
      <pubDate>Wed, 04 Feb 2009 11:45:47 GMT</pubDate>
      <description>&lt;p&gt;
Microsoft announced their SKU line-up for Windows 7 (Geekzone has &lt;a href="http://www.geekzone.co.nz/content.asp?contentid=8066" target="_blank"&gt;a
good overview here&lt;/a&gt;)and the reaction has been mixed.&amp;#160; One of the six SKUs
announced is the Starter Edition.
&lt;/p&gt;
&lt;p&gt;
The Starter Edition will only be offered via OEMs, will be limited to three concurrent
applications and will be limited to certain types of hardware.
&lt;/p&gt;
&lt;p&gt;
This has met with quite a bit of negative opinion – like &lt;a href="http://www.atmasphere.net/wp/archives/2009/02/03/windows-7-starter-edition-what-cant-you-do-today" target="_blank"&gt;this
from atmaspheric|endevors&lt;/a&gt;.
&lt;/p&gt;
&lt;blockquote&gt; 
&lt;p&gt;
And the worst thing I’ve read yet on the topic is that &lt;a href="http://www.liliputing.com/2009/02/microsoft-to-offer-crippled-version-of-windows-7-for-netbooks.html"&gt;Netbooks
will get something called Starter Edition &lt;/a&gt;which limits you to 3 concurrent applications
- who the hell wants that?
&lt;/p&gt;
&lt;/blockquote&gt; 
&lt;p&gt;
I don’t see this as a bad thing at all.&amp;#160; OK – there is going to be a SKU that
is the same platform, but a bit limited.&amp;#160; In order for an OEM to license this
SKU there hardware will have to meet certain specs.
&lt;/p&gt;
&lt;p&gt;
That is not to say that every netbook will run Starter.&amp;#160; I believe that the units
that are running Starter will not be out there to compete against the units running
other SKUs of Windows .&amp;#160; They will be competing against the Nokia internet tablets.&amp;#160;
They will compete against the bottom of the eee range.&amp;#160; They will open up that
lower end market where the Windows license itself prices the unit out of the market.&amp;#160;
It will be great to have devices at the bottom end of the market that can run Windows
apps.&amp;#160; 
&lt;/p&gt;
&lt;p&gt;
If you want a fully functional companion device – buy a netbook with Home Premium
on it.&amp;#160; If you want a glorified media centre remote, a device to browse feeds
on in the lounge or look at recipes in the kitchen or a media device for your train
commute then a Starter Edition device might be just the trick.&amp;#160; 
&lt;/p&gt;
&lt;p&gt;
The Starter Edition SKU could open up a whole new range of low priced devices that
could be very interesting indeed.&amp;#160; At any rate it is far too early to get upset
about netbooks being knobbled by Microsoft.&amp;#160; Wait&amp;#160; and see.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=ce25f2d2-7078-473c-a89a-bc80cd22b89f" /&gt;</description>
      <comments>http://www.pringle.net.nz/blog/CommentView,guid,ce25f2d2-7078-473c-a89a-bc80cd22b89f.aspx</comments>
      <category>Netbooks</category>
      <category>Windows 7</category>
    </item>
    <item>
      <trackback:ping>http://www.pringle.net.nz/blog/Trackback.aspx?guid=bc304f07-a074-4ae0-9f2e-ce1bd30e19c8</trackback:ping>
      <pingback:server>http://www.pringle.net.nz/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.pringle.net.nz/blog/PermaLink,guid,bc304f07-a074-4ae0-9f2e-ce1bd30e19c8.aspx</pingback:target>
      <dc:creator>Craig Pringle</dc:creator>
      <wfw:comment>http://www.pringle.net.nz/blog/CommentView,guid,bc304f07-a074-4ae0-9f2e-ce1bd30e19c8.aspx</wfw:comment>
      <wfw:commentRss>http://www.pringle.net.nz/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=bc304f07-a074-4ae0-9f2e-ce1bd30e19c8</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
The other day I posted about the <a href="http://www.pringle.net.nz/blog/PermaLink,guid,1bb64482-7e8a-48a7-821d-4d675dfb966f.aspx" target="_blank">process
of creating a homegroup</a> to share data between multiple Windows 7 machines on your
network.  The obvious question that was asked by Jerry in a <a href="http://www.pringle.net.nz/blog/CommentView,guid,1bb64482-7e8a-48a7-821d-4d675dfb966f.aspx#commentstart" target="_blank">comment</a> was:
</p>
        <blockquote>
          <p>
I have only one running Windows 7 and I would like to be able to access WinXP and
Windows Vista machines that are on the network. How do you configure the Vista machine
to be able to see the "shared" files on it with the Windows 7 machine?
</p>
        </blockquote>
        <p>
Well – I don’t have any XP machines but I tried it with my wife’s Vista notebook.
</p>
        <p>
On my wife’s machine I opened Explorer and browsed to \\TV-PC.  I was prompted
for credentials, just as you would be browsing to a Vista machine.  Now the user
on the Media Centre does not have a password.  I tried to authenticate as that
user (which is called tv) by entering TV-PC\tv in the username and pressing enter. 
Denied – I got a message that this was not allowed by policy.  I remembered that
Windows Vista by default has a policy that users without passwords cannot connect
over the network.  Seems Windows 7 is the same.  This is a good policy. 
I jumped onto the media centre and created a user called sharing and gave it a password.  
</p>
        <p>
I repeated the process above and used the newly created user.  At the top level
there was a folder called users.  I expanded that and there were folders called
Public and TV.  Note – TV is the name of the user that created the homegroup.
</p>
        <p>
Drilling down into the TV folder I see the three folders I am sharing in the homegroup
– and nothing else.
</p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/AccessingHomegroupDatafromVista_1354C/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/AccessingHomegroupDatafromVista_1354C/image_thumb.png" width="232" height="244" />
          </a>
        </p>
        <p>
This is exactly what I see when I access TV-PC via the homegroup.  Here’s the
view on Windows 7.
</p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/AccessingHomegroupDatafromVista_1354C/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/AccessingHomegroupDatafromVista_1354C/image_thumb_1.png" width="244" height="198" />
          </a>
        </p>
        <p>
So the short answer is that you can access homegroup shared data from Windows Vista
(and presumably XP – but as yet untested).  To do this you will need to authenticate
each machine you are accessing with an account local to that machine – much as you
do today.
</p>
        <img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=bc304f07-a074-4ae0-9f2e-ce1bd30e19c8" />
      </body>
      <title>Accessing Homegroup Data from Vista</title>
      <guid isPermaLink="false">http://www.pringle.net.nz/blog/PermaLink,guid,bc304f07-a074-4ae0-9f2e-ce1bd30e19c8.aspx</guid>
      <link>http://www.pringle.net.nz/blog/PermaLink,guid,bc304f07-a074-4ae0-9f2e-ce1bd30e19c8.aspx</link>
      <pubDate>Wed, 04 Feb 2009 11:00:06 GMT</pubDate>
      <description>&lt;p&gt;
The other day I posted about the &lt;a href="http://www.pringle.net.nz/blog/PermaLink,guid,1bb64482-7e8a-48a7-821d-4d675dfb966f.aspx" target="_blank"&gt;process
of creating a homegroup&lt;/a&gt; to share data between multiple Windows 7 machines on your
network.&amp;#160; The obvious question that was asked by Jerry in a &lt;a href="http://www.pringle.net.nz/blog/CommentView,guid,1bb64482-7e8a-48a7-821d-4d675dfb966f.aspx#commentstart" target="_blank"&gt;comment&lt;/a&gt; was:
&lt;/p&gt;
&lt;blockquote&gt; 
&lt;p&gt;
I have only one running Windows 7 and I would like to be able to access WinXP and
Windows Vista machines that are on the network. How do you configure the Vista machine
to be able to see the &amp;quot;shared&amp;quot; files on it with the Windows 7 machine?
&lt;/p&gt;
&lt;/blockquote&gt; 
&lt;p&gt;
Well – I don’t have any XP machines but I tried it with my wife’s Vista notebook.
&lt;/p&gt;
&lt;p&gt;
On my wife’s machine I opened Explorer and browsed to \\TV-PC.&amp;#160; I was prompted
for credentials, just as you would be browsing to a Vista machine.&amp;#160; Now the user
on the Media Centre does not have a password.&amp;#160; I tried to authenticate as that
user (which is called tv) by entering TV-PC\tv in the username and pressing enter.&amp;#160;
Denied – I got a message that this was not allowed by policy.&amp;#160; I remembered that
Windows Vista by default has a policy that users without passwords cannot connect
over the network.&amp;#160; Seems Windows 7 is the same.&amp;#160; This is a good policy.&amp;#160;
I jumped onto the media centre and created a user called sharing and gave it a password.&amp;#160; 
&lt;/p&gt;
&lt;p&gt;
I repeated the process above and used the newly created user.&amp;#160; At the top level
there was a folder called users.&amp;#160; I expanded that and there were folders called
Public and TV.&amp;#160; Note – TV is the name of the user that created the homegroup.
&lt;/p&gt;
&lt;p&gt;
Drilling down into the TV folder I see the three folders I am sharing in the homegroup
– and nothing else.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/AccessingHomegroupDatafromVista_1354C/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/AccessingHomegroupDatafromVista_1354C/image_thumb.png" width="232" height="244" /&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
This is exactly what I see when I access TV-PC via the homegroup.&amp;#160; Here’s the
view on Windows 7.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/AccessingHomegroupDatafromVista_1354C/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/AccessingHomegroupDatafromVista_1354C/image_thumb_1.png" width="244" height="198" /&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
So the short answer is that you can access homegroup shared data from Windows Vista
(and presumably XP – but as yet untested).&amp;#160; To do this you will need to authenticate
each machine you are accessing with an account local to that machine – much as you
do today.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=bc304f07-a074-4ae0-9f2e-ce1bd30e19c8" /&gt;</description>
      <comments>http://www.pringle.net.nz/blog/CommentView,guid,bc304f07-a074-4ae0-9f2e-ce1bd30e19c8.aspx</comments>
      <category>Media Centre</category>
      <category>Windows 7</category>
    </item>
    <item>
      <trackback:ping>http://www.pringle.net.nz/blog/Trackback.aspx?guid=d53e9e07-17d2-48e0-b51b-5ed97604fb70</trackback:ping>
      <pingback:server>http://www.pringle.net.nz/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.pringle.net.nz/blog/PermaLink,guid,d53e9e07-17d2-48e0-b51b-5ed97604fb70.aspx</pingback:target>
      <dc:creator>Craig Pringle</dc:creator>
      <wfw:comment>http://www.pringle.net.nz/blog/CommentView,guid,d53e9e07-17d2-48e0-b51b-5ed97604fb70.aspx</wfw:comment>
      <wfw:commentRss>http://www.pringle.net.nz/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=d53e9e07-17d2-48e0-b51b-5ed97604fb70</wfw:commentRss>
      <slash:comments>2</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
There is no doubt in my mind that the building wave that is the netbook craze is going
to renew interest in tablet an touch technology.  Windows 7 provides a really
nice tablet experience and is much more touch aware than Vista was.
</p>
        <p>
We are also seeing something in the netbook craze that I think a great thing for all
mobile PCs.  Lots of competition.
</p>
        <p>
The Atom processors provide excellent performance and battery life, but they don’t
seem to suffer the same heat problems.
</p>
        <p>
Could it be that the planets are aligning for not only more tablets, but perhaps even
more slates?  I think maybe the answer is yes.  The critical question is
one of demand.  Is there demand for slate devices, particularly in the consumer
space?
</p>
        <p>
There is certainly interest – remember the interest sparked last year when it was
revealed that an enterprising user was <a href="http://www.gottabemobile.com/2008/07/06/project-to-build-a-slate-from-an-asus-eee/" target="_blank">making
a tablet out of an eee PC</a>?  
</p>
        <p>
And there is interest on the manufacturer side as well.  In December <a href="http://www.gottabemobile.com/2008/12/16/fujistu-officially-releases-the-st6012-tablet-pc/" target="_blank">Fujitsu
announced its first new slate in quite some time</a>.
</p>
        <p>
I hope we will see a revival of the slate form factor.
</p>
        <img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=d53e9e07-17d2-48e0-b51b-5ed97604fb70" />
      </body>
      <title>Could the Netbook Craze revitalise the Slate Tablet?</title>
      <guid isPermaLink="false">http://www.pringle.net.nz/blog/PermaLink,guid,d53e9e07-17d2-48e0-b51b-5ed97604fb70.aspx</guid>
      <link>http://www.pringle.net.nz/blog/PermaLink,guid,d53e9e07-17d2-48e0-b51b-5ed97604fb70.aspx</link>
      <pubDate>Fri, 30 Jan 2009 11:27:29 GMT</pubDate>
      <description>&lt;p&gt;
There is no doubt in my mind that the building wave that is the netbook craze is going
to renew interest in tablet an touch technology.&amp;#160; Windows 7 provides a really
nice tablet experience and is much more touch aware than Vista was.
&lt;/p&gt;
&lt;p&gt;
We are also seeing something in the netbook craze that I think a great thing for all
mobile PCs.&amp;#160; Lots of competition.
&lt;/p&gt;
&lt;p&gt;
The Atom processors provide excellent performance and battery life, but they don’t
seem to suffer the same heat problems.
&lt;/p&gt;
&lt;p&gt;
Could it be that the planets are aligning for not only more tablets, but perhaps even
more slates?&amp;#160; I think maybe the answer is yes.&amp;#160; The critical question is
one of demand.&amp;#160; Is there demand for slate devices, particularly in the consumer
space?
&lt;/p&gt;
&lt;p&gt;
There is certainly interest – remember the interest sparked last year when it was
revealed that an enterprising user was &lt;a href="http://www.gottabemobile.com/2008/07/06/project-to-build-a-slate-from-an-asus-eee/" target="_blank"&gt;making
a tablet out of an eee PC&lt;/a&gt;?&amp;#160; 
&lt;/p&gt;
&lt;p&gt;
And there is interest on the manufacturer side as well.&amp;#160; In December &lt;a href="http://www.gottabemobile.com/2008/12/16/fujistu-officially-releases-the-st6012-tablet-pc/" target="_blank"&gt;Fujitsu
announced its first new slate in quite some time&lt;/a&gt;.
&lt;/p&gt;
&lt;p&gt;
I hope we will see a revival of the slate form factor.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=d53e9e07-17d2-48e0-b51b-5ed97604fb70" /&gt;</description>
      <comments>http://www.pringle.net.nz/blog/CommentView,guid,d53e9e07-17d2-48e0-b51b-5ed97604fb70.aspx</comments>
      <category>Slate</category>
      <category>TabletPC</category>
      <category>Touch</category>
      <category>Windows 7</category>
    </item>
    <item>
      <trackback:ping>http://www.pringle.net.nz/blog/Trackback.aspx?guid=3dca394e-39fb-45f2-85d7-beaf9475cbdc</trackback:ping>
      <pingback:server>http://www.pringle.net.nz/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.pringle.net.nz/blog/PermaLink,guid,3dca394e-39fb-45f2-85d7-beaf9475cbdc.aspx</pingback:target>
      <dc:creator>Craig Pringle</dc:creator>
      <wfw:comment>http://www.pringle.net.nz/blog/CommentView,guid,3dca394e-39fb-45f2-85d7-beaf9475cbdc.aspx</wfw:comment>
      <wfw:commentRss>http://www.pringle.net.nz/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=3dca394e-39fb-45f2-85d7-beaf9475cbdc</wfw:commentRss>
      <slash:comments>2</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
While I was pleased to see that there was, after a fashion, native ISO support in
Windows 7 as I’ve previously noted it does not go far enough.  I have been seeing
in my blog’s logs lots of referrers coming from searches for the likes of “Mount ISO
in Windows 7”.
</p>
        <p>
Here’s the bad news – Natively, you can’t.  
</p>
        <p>
Here’s the good news – the key word there was <em>natively</em>.  You can mount
ISOs in Windows 7 and previous versions of the OS, you just need to use a third party
tool to do so.
</p>
        <p>
My ISO Mounting tool of choice is <a href="http://www.slysoft.com/en/virtual-clonedrive.html" target="_blank">Virtual
Clone Drive</a> by <a href="http://www.slysoft.com/" target="_blank">SlySoft</a>. 
I like it because it is light weight and easy to use. It is also free – but that is
not a reflection on quality.  It is an excellent advert for SlySoft’s paid offerings
like <a href="http://www.slysoft.com/en/clonedvd.html" target="_blank">CloneDVD</a>.
</p>
        <p>
After downloading and installing Virtual Clone Drive (and I find rebooting is a good
idea) you will find that you can mount an ISO file just by double clicking it (if
nothing else is associated with ISO files) or by right clicking it and selecting <em>Open
With &gt; Mount file with Virtual Clone Drive</em>.
</p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/HowToMountanISOinWindows7andearlier_12FB5/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/HowToMountanISOinWindows7andearlier_12FB5/image_thumb.png" width="244" height="129" />
          </a>
        </p>
        <p>
Once mounted the ISO will show up as another DVD drive in Explorer.  If autorun
is enabled this does, of course work as well.
</p>
        <p>
There is also a management application where you can add additional virtual drives
or change the UI language. 
</p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/HowToMountanISOinWindows7andearlier_12FB5/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/HowToMountanISOinWindows7andearlier_12FB5/image_thumb_1.png" width="244" height="192" />
          </a>
        </p>
        <p>
Don’t ask me what the Virtual Sheep do – but it is a checkbox I’m sure some of my
Aussie mates would tick ;)
</p>
        <p>
According to the website Virtual Clone Drive supports the following Operating Systems:
</p>
        <blockquote>
          <p>
Windows 98/98SE/ME/2000/XP/XP64/VISTA/VISTA64
</p>
        </blockquote>
        <p>
I have found it runs fine on Windows 7 build 7000.
</p>
        <img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=3dca394e-39fb-45f2-85d7-beaf9475cbdc" />
      </body>
      <title>HowTo &amp;ndash; Mount an ISO in Windows 7 (and earlier)</title>
      <guid isPermaLink="false">http://www.pringle.net.nz/blog/PermaLink,guid,3dca394e-39fb-45f2-85d7-beaf9475cbdc.aspx</guid>
      <link>http://www.pringle.net.nz/blog/PermaLink,guid,3dca394e-39fb-45f2-85d7-beaf9475cbdc.aspx</link>
      <pubDate>Fri, 30 Jan 2009 10:36:13 GMT</pubDate>
      <description>&lt;p&gt;
While I was pleased to see that there was, after a fashion, native ISO support in
Windows 7 as I’ve previously noted it does not go far enough.&amp;#160; I have been seeing
in my blog’s logs lots of referrers coming from searches for the likes of “Mount ISO
in Windows 7”.
&lt;/p&gt;
&lt;p&gt;
Here’s the bad news – Natively, you can’t.&amp;#160; 
&lt;/p&gt;
&lt;p&gt;
Here’s the good news – the key word there was &lt;em&gt;natively&lt;/em&gt;.&amp;#160; You can mount
ISOs in Windows 7 and previous versions of the OS, you just need to use a third party
tool to do so.
&lt;/p&gt;
&lt;p&gt;
My ISO Mounting tool of choice is &lt;a href="http://www.slysoft.com/en/virtual-clonedrive.html" target="_blank"&gt;Virtual
Clone Drive&lt;/a&gt; by &lt;a href="http://www.slysoft.com/" target="_blank"&gt;SlySoft&lt;/a&gt;.&amp;#160;
I like it because it is light weight and easy to use. It is also free – but that is
not a reflection on quality.&amp;#160; It is an excellent advert for SlySoft’s paid offerings
like &lt;a href="http://www.slysoft.com/en/clonedvd.html" target="_blank"&gt;CloneDVD&lt;/a&gt;.
&lt;/p&gt;
&lt;p&gt;
After downloading and installing Virtual Clone Drive (and I find rebooting is a good
idea) you will find that you can mount an ISO file just by double clicking it (if
nothing else is associated with ISO files) or by right clicking it and selecting &lt;em&gt;Open
With &amp;gt; Mount file with Virtual Clone Drive&lt;/em&gt;.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/HowToMountanISOinWindows7andearlier_12FB5/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/HowToMountanISOinWindows7andearlier_12FB5/image_thumb.png" width="244" height="129" /&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
Once mounted the ISO will show up as another DVD drive in Explorer.&amp;#160; If autorun
is enabled this does, of course work as well.
&lt;/p&gt;
&lt;p&gt;
There is also a management application where you can add additional virtual drives
or change the UI language. 
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/HowToMountanISOinWindows7andearlier_12FB5/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/HowToMountanISOinWindows7andearlier_12FB5/image_thumb_1.png" width="244" height="192" /&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
Don’t ask me what the Virtual Sheep do – but it is a checkbox I’m sure some of my
Aussie mates would tick ;)
&lt;/p&gt;
&lt;p&gt;
According to the website Virtual Clone Drive supports the following Operating Systems:
&lt;/p&gt;
&lt;blockquote&gt; 
&lt;p&gt;
Windows 98/98SE/ME/2000/XP/XP64/VISTA/VISTA64
&lt;/p&gt;
&lt;/blockquote&gt; 
&lt;p&gt;
I have found it runs fine on Windows 7 build 7000.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=3dca394e-39fb-45f2-85d7-beaf9475cbdc" /&gt;</description>
      <comments>http://www.pringle.net.nz/blog/CommentView,guid,3dca394e-39fb-45f2-85d7-beaf9475cbdc.aspx</comments>
      <category>General</category>
      <category>Vista</category>
      <category>Windows 7</category>
    </item>
    <item>
      <trackback:ping>http://www.pringle.net.nz/blog/Trackback.aspx?guid=1bb64482-7e8a-48a7-821d-4d675dfb966f</trackback:ping>
      <pingback:server>http://www.pringle.net.nz/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.pringle.net.nz/blog/PermaLink,guid,1bb64482-7e8a-48a7-821d-4d675dfb966f.aspx</pingback:target>
      <dc:creator>Craig Pringle</dc:creator>
      <wfw:comment>http://www.pringle.net.nz/blog/CommentView,guid,1bb64482-7e8a-48a7-821d-4d675dfb966f.aspx</wfw:comment>
      <wfw:commentRss>http://www.pringle.net.nz/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=1bb64482-7e8a-48a7-821d-4d675dfb966f</wfw:commentRss>
      <slash:comments>2</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
On the weekend I rebuilt my media centre with Windows  build 7000.  This
brought the number of Windows 7 machines in the house to four.
</p>
        <p>
Now that I had the Media Centre it was time to investigate one of the cool new features
that Windows 7 brings to the party. This is a feature that will be of particular interest
to a specific type of mobile user – the kind that takes their work mobile PC home
and wants to make use of the resources – such as printers – and media that on other
machines in the house.
</p>
        <p>
In Vista this is a pain.  Typically the home PCs are not in a domain and each
machine has its own set of accounts.  Sure they are all on the same Wi-Fi network
but if you want to do anything that involves one of the other machines you need to
authenticate.  In practice this means that if you want to print something that
is on the printer connected to the desktop in the study then you will be prompted
for a username and password and you need to use an account that is on that particular
desktop.  Similarly if you want to access the media on your media centre PC in
the lounge you browse to a share and you are prompted to log on, which you do with
an account from that machine.  The alternative to this credential chaos in Vista
is anonymous sharing which significantly reduces the security of your home network
and, IMO, is not a good idea.
</p>
        <p>
Enter the Homegroup.  The homegroup is a new concept in Windows 7 that lets you
establish a trusted relationship between the machines that you use on your home network
by configuring a shared secret on each machine in the homegroup.  On each machine
you configure what you want to be shared with the other machines in the homegroup. 
Once this is set up you can access the specified content on the homegroup machines
without authenticating each time you do it.  Very clean.
</p>
        <p>
In order to set up a homegroup your machine needs to have the network type for the
active connection set to Home.  If it is Public (the default) or Work then you
cannot create a homegroup.  Assuming you have set your network location to home
the process for creating a homegroup is as follows.  Click the images for larger
versions.
</p>
        <p>
In the Network and Sharing Centre click the Choose homegroup and sharing settings
link as shown below.
</p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/CreatingaHomegroupinWindows7_12BF9/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/CreatingaHomegroupinWindows7_12BF9/image_thumb_2.png" width="244" height="217" />
          </a>
        </p>
        <p>
Then click the Create Now button.
</p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/CreatingaHomegroupinWindows7_12BF9/image_8.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/CreatingaHomegroupinWindows7_12BF9/image_thumb_3.png" width="244" height="119" />
          </a>
        </p>
        <p>
        </p>
        <p>
        </p>
        <p>
Specify what you want to share – below are the defaults.
</p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/CreatingaHomegroupinWindows7_12BF9/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/CreatingaHomegroupinWindows7_12BF9/image_thumb_4.png" width="244" height="160" />
          </a>
        </p>
        <p>
The wizard will generate a secure password.  You can change this after the fact
– but I think it is good that a random one is generated as this is likely to result
in a more secure password than one that is easy to remember.  And you don’t need
to remember it – you configure it once on each member of the homegroup and then forget
about it. (note that this is not actually the password I ended up using – I’m not <strong>that</strong> stupid). 
Click finish and your first computer is set up.
</p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/CreatingaHomegroupinWindows7_12BF9/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/CreatingaHomegroupinWindows7_12BF9/image_thumb_5.png" width="244" height="159" />
          </a>
        </p>
        <p>
Back in the Change homegroup settings you can view or change the password after you
have created it.   For instance if you add a new netbook to your collection
months after initially setting up the homegroup – you can view the password from any
of the PCs that are already in the homegroup.  If you do need to change the homegroup
password you do it by clicking the <em>Change the password </em>link.
</p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/CreatingaHomegroupinWindows7_12BF9/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/CreatingaHomegroupinWindows7_12BF9/image_thumb_6.png" width="244" height="179" />
          </a>
        </p>
        <p>
This gives a a screen that more or less says “Are you sure? This will completely break
your current homegroup and you will need to change the password on all the members”  
Click on the change the password link to proceed.
</p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/CreatingaHomegroupinWindows7_12BF9/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/CreatingaHomegroupinWindows7_12BF9/image_thumb_7.png" width="244" height="96" />
          </a>
        </p>
        <p>
This will generate a new complex password.  However unlike the initial creation
you can choose not to use the autogenerated one and type your own.  The little
refresh button will generate yet another complex password (which I did after taking
the screen shot below – again not <strong>that</strong> stupid)
</p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/CreatingaHomegroupinWindows7_12BF9/image_18.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/CreatingaHomegroupinWindows7_12BF9/image_thumb_8.png" width="244" height="176" />
          </a>
        </p>
        <p>
Once you have create a home group on the first machine, you then need to join it from
the other machines on the network.  This is a simple matter of making sure the
machine’s network location is set to home and then clicking that Choose homegroup
and sharing settings link in the Network and Sharing centre.  This time t. 
he machine will detect that a homegroup has already been created on the network. 
Click the Join button and then enter the password when prompted.  Repeat for
each machine you want to add.
</p>
        <p>
Once this is all set up the content you are sharing from each machine is available
via Explorer:
</p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/CreatingaHomegroupinWindows7_12BF9/image_19.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/CreatingaHomegroupinWindows7_12BF9/image_thumb.png" width="167" height="244" />
          </a>
        </p>
        <p>
Via Media Player
</p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/CreatingaHomegroupinWindows7_12BF9/image_21.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/CreatingaHomegroupinWindows7_12BF9/image_thumb_1.png" width="244" height="179" />
          </a>
        </p>
        <p>
And even in Media Centre, which allows one media centre to play content that is actually
on another media centre in the house.  Here we have media centre running on my
tablet accessing the music library on the Media PC in the lounge.
</p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/CreatingaHomegroupinWindows7_12BF9/image_25.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/CreatingaHomegroupinWindows7_12BF9/image_thumb_10.png" width="227" height="244" />
          </a>
        </p>
        <p>
        </p>
        <p>
All and all this makes for much simpler sharing between machines on your home network. 
It is set and forget and it just works.
</p>
        <img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=1bb64482-7e8a-48a7-821d-4d675dfb966f" />
      </body>
      <title>Creating a Homegroup in Windows 7</title>
      <guid isPermaLink="false">http://www.pringle.net.nz/blog/PermaLink,guid,1bb64482-7e8a-48a7-821d-4d675dfb966f.aspx</guid>
      <link>http://www.pringle.net.nz/blog/PermaLink,guid,1bb64482-7e8a-48a7-821d-4d675dfb966f.aspx</link>
      <pubDate>Wed, 28 Jan 2009 11:56:07 GMT</pubDate>
      <description>&lt;p&gt;
On the weekend I rebuilt my media centre with Windows&amp;#160; build 7000.&amp;#160; This
brought the number of Windows 7 machines in the house to four.
&lt;/p&gt;
&lt;p&gt;
Now that I had the Media Centre it was time to investigate one of the cool new features
that Windows 7 brings to the party. This is a feature that will be of particular interest
to a specific type of mobile user – the kind that takes their work mobile PC home
and wants to make use of the resources – such as printers – and media that on other
machines in the house.
&lt;/p&gt;
&lt;p&gt;
In Vista this is a pain.&amp;#160; Typically the home PCs are not in a domain and each
machine has its own set of accounts.&amp;#160; Sure they are all on the same Wi-Fi network
but if you want to do anything that involves one of the other machines you need to
authenticate.&amp;#160; In practice this means that if you want to print something that
is on the printer connected to the desktop in the study then you will be prompted
for a username and password and you need to use an account that is on that particular
desktop.&amp;#160; Similarly if you want to access the media on your media centre PC in
the lounge you browse to a share and you are prompted to log on, which you do with
an account from that machine.&amp;#160; The alternative to this credential chaos in Vista
is anonymous sharing which significantly reduces the security of your home network
and, IMO, is not a good idea.
&lt;/p&gt;
&lt;p&gt;
Enter the Homegroup.&amp;#160; The homegroup is a new concept in Windows 7 that lets you
establish a trusted relationship between the machines that you use on your home network
by configuring a shared secret on each machine in the homegroup.&amp;#160; On each machine
you configure what you want to be shared with the other machines in the homegroup.&amp;#160;
Once this is set up you can access the specified content on the homegroup machines
without authenticating each time you do it.&amp;#160; Very clean.
&lt;/p&gt;
&lt;p&gt;
In order to set up a homegroup your machine needs to have the network type for the
active connection set to Home.&amp;#160; If it is Public (the default) or Work then you
cannot create a homegroup.&amp;#160; Assuming you have set your network location to home
the process for creating a homegroup is as follows.&amp;#160; Click the images for larger
versions.
&lt;/p&gt;
&lt;p&gt;
In the Network and Sharing Centre click the Choose homegroup and sharing settings
link as shown below.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/CreatingaHomegroupinWindows7_12BF9/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/CreatingaHomegroupinWindows7_12BF9/image_thumb_2.png" width="244" height="217" /&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
Then click the Create Now button.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/CreatingaHomegroupinWindows7_12BF9/image_8.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/CreatingaHomegroupinWindows7_12BF9/image_thumb_3.png" width="244" height="119" /&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;/p&gt;
&lt;p&gt;
Specify what you want to share – below are the defaults.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/CreatingaHomegroupinWindows7_12BF9/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/CreatingaHomegroupinWindows7_12BF9/image_thumb_4.png" width="244" height="160" /&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
The wizard will generate a secure password.&amp;#160; You can change this after the fact
– but I think it is good that a random one is generated as this is likely to result
in a more secure password than one that is easy to remember.&amp;#160; And you don’t need
to remember it – you configure it once on each member of the homegroup and then forget
about it. (note that this is not actually the password I ended up using – I’m not &lt;strong&gt;that&lt;/strong&gt; stupid).&amp;#160;
Click finish and your first computer is set up.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/CreatingaHomegroupinWindows7_12BF9/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/CreatingaHomegroupinWindows7_12BF9/image_thumb_5.png" width="244" height="159" /&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
Back in the Change homegroup settings you can view or change the password after you
have created it.&amp;#160;&amp;#160; For instance if you add a new netbook to your collection
months after initially setting up the homegroup – you can view the password from any
of the PCs that are already in the homegroup.&amp;#160; If you do need to change the homegroup
password you do it by clicking the &lt;em&gt;Change the password &lt;/em&gt;link.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/CreatingaHomegroupinWindows7_12BF9/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/CreatingaHomegroupinWindows7_12BF9/image_thumb_6.png" width="244" height="179" /&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
This gives a a screen that more or less says “Are you sure? This will completely break
your current homegroup and you will need to change the password on all the members”&amp;#160;&amp;#160;
Click on the change the password link to proceed.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/CreatingaHomegroupinWindows7_12BF9/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/CreatingaHomegroupinWindows7_12BF9/image_thumb_7.png" width="244" height="96" /&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
This will generate a new complex password.&amp;#160; However unlike the initial creation
you can choose not to use the autogenerated one and type your own.&amp;#160; The little
refresh button will generate yet another complex password (which I did after taking
the screen shot below – again not &lt;strong&gt;that&lt;/strong&gt; stupid)
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/CreatingaHomegroupinWindows7_12BF9/image_18.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/CreatingaHomegroupinWindows7_12BF9/image_thumb_8.png" width="244" height="176" /&gt;&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
Once you have create a home group on the first machine, you then need to join it from
the other machines on the network.&amp;#160; This is a simple matter of making sure the
machine’s network location is set to home and then clicking that Choose homegroup
and sharing settings link in the Network and Sharing centre.&amp;#160; This time t.&amp;#160;
he machine will detect that a homegroup has already been created on the network.&amp;#160;
Click the Join button and then enter the password when prompted.&amp;#160; Repeat for
each machine you want to add.
&lt;/p&gt;
&lt;p&gt;
Once this is all set up the content you are sharing from each machine is available
via Explorer:
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/CreatingaHomegroupinWindows7_12BF9/image_19.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/CreatingaHomegroupinWindows7_12BF9/image_thumb.png" width="167" height="244" /&gt;&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
Via Media Player
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/CreatingaHomegroupinWindows7_12BF9/image_21.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/CreatingaHomegroupinWindows7_12BF9/image_thumb_1.png" width="244" height="179" /&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
And even in Media Centre, which allows one media centre to play content that is actually
on another media centre in the house.&amp;#160; Here we have media centre running on my
tablet accessing the music library on the Media PC in the lounge.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/CreatingaHomegroupinWindows7_12BF9/image_25.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/CreatingaHomegroupinWindows7_12BF9/image_thumb_10.png" width="227" height="244" /&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
&lt;/p&gt;
&lt;p&gt;
All and all this makes for much simpler sharing between machines on your home network.&amp;#160;
It is set and forget and it just works.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=1bb64482-7e8a-48a7-821d-4d675dfb966f" /&gt;</description>
      <comments>http://www.pringle.net.nz/blog/CommentView,guid,1bb64482-7e8a-48a7-821d-4d675dfb966f.aspx</comments>
      <category>Media Centre</category>
      <category>Windows 7</category>
    </item>
    <item>
      <trackback:ping>http://www.pringle.net.nz/blog/Trackback.aspx?guid=3a6875d3-6c88-4de7-bf04-dbd853fc91de</trackback:ping>
      <pingback:server>http://www.pringle.net.nz/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.pringle.net.nz/blog/PermaLink,guid,3a6875d3-6c88-4de7-bf04-dbd853fc91de.aspx</pingback:target>
      <dc:creator>Craig Pringle</dc:creator>
      <wfw:comment>http://www.pringle.net.nz/blog/CommentView,guid,3a6875d3-6c88-4de7-bf04-dbd853fc91de.aspx</wfw:comment>
      <wfw:commentRss>http://www.pringle.net.nz/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=3a6875d3-6c88-4de7-bf04-dbd853fc91de</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Way back when Windows Vista shipped one of my favourite features was the Search box
in the start menu and in Explorer.  
</p>
        <p>
Unfortunately it was a bit unwieldy when you were using the pen.  I found this <a href="http://www.pringle.net.nz/blog/PermaLink,guid,20332117-af59-4cc3-959e-2c854481e236.aspx" target="_blank">really
annoying and even had a go at writing a proof of concept application called SearchPad</a> to
try make Vista Start Search and Explorer a little more pen friendly.
</p>
        <p>
The Windows 7 Beta makes this a little better.  When you click in a the search
field in the start menu and launch the tip your pen strokes are recognised and inserted
into the search field as you write – often even before the recognition result appears
in the TIP itself.
</p>
        <p>
        </p>
        <p>
        </p>
        <div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:55414d10-5d88-4f9e-9907-150ad6cc6677" class="wlWriterEditableSmartContent">
          <div id="e5084a2c-37ba-48f2-ade4-943f316ac956" style="margin: 0px; padding: 0px; display: inline;">
            <div>
              <a href="http://www.youtube.com/watch?v=NvY3ApT3iUU&amp;hl=en&amp;fs=1" target="_new">
                <img src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/Windows7StartSearchisalittlemoretabletfr_135C1/video64c227a4dcbe.jpg" style="border-style: none" galleryimg="no" onload="var downlevelDiv = document.getElementById('e5084a2c-37ba-48f2-ade4-943f316ac956'); downlevelDiv.innerHTML = &quot;&lt;div&gt;&lt;object width=\&quot;425\&quot; height=\&quot;355\&quot;&gt;&lt;param name=\&quot;movie\&quot; value=\&quot;http://www.youtube.com/v/NvY3ApT3iUU&amp;hl=en&amp;fs=1&amp;hl=en\&quot;&gt;&lt;\/param&gt;&lt;embed src=\&quot;http://www.youtube.com/v/NvY3ApT3iUU&amp;hl=en&amp;fs=1&amp;hl=en\&quot; type=\&quot;application/x-shockwave-flash\&quot; width=\&quot;425\&quot; height=\&quot;355\&quot;&gt;&lt;\/embed&gt;&lt;\/object&gt;&lt;\/div&gt;&quot;;" alt="" />
              </a>
            </div>
          </div>
        </div>
        <img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=3a6875d3-6c88-4de7-bf04-dbd853fc91de" />
      </body>
      <title>Windows 7 Search is a little more tablet friendly</title>
      <guid isPermaLink="false">http://www.pringle.net.nz/blog/PermaLink,guid,3a6875d3-6c88-4de7-bf04-dbd853fc91de.aspx</guid>
      <link>http://www.pringle.net.nz/blog/PermaLink,guid,3a6875d3-6c88-4de7-bf04-dbd853fc91de.aspx</link>
      <pubDate>Wed, 21 Jan 2009 11:15:35 GMT</pubDate>
      <description>&lt;p&gt;
Way back when Windows Vista shipped one of my favourite features was the Search box
in the start menu and in Explorer.&amp;#160; 
&lt;/p&gt;
&lt;p&gt;
Unfortunately it was a bit unwieldy when you were using the pen.&amp;#160; I found this &lt;a href="http://www.pringle.net.nz/blog/PermaLink,guid,20332117-af59-4cc3-959e-2c854481e236.aspx" target="_blank"&gt;really
annoying and even had a go at writing a proof of concept application called SearchPad&lt;/a&gt; to
try make Vista Start Search and Explorer a little more pen friendly.
&lt;/p&gt;
&lt;p&gt;
The Windows 7 Beta makes this a little better.&amp;#160; When you click in a the search
field in the start menu and launch the tip your pen strokes are recognised and inserted
into the search field as you write – often even before the recognition result appears
in the TIP itself.
&lt;/p&gt;
&lt;p&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;/p&gt;
&lt;div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:55414d10-5d88-4f9e-9907-150ad6cc6677" class="wlWriterEditableSmartContent"&gt;
&lt;div id="e5084a2c-37ba-48f2-ade4-943f316ac956" style="margin: 0px; padding: 0px; display: inline;"&gt;
&lt;div&gt;&lt;a href="http://www.youtube.com/watch?v=NvY3ApT3iUU&amp;amp;hl=en&amp;amp;fs=1" target="_new"&gt;&lt;img src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/Windows7StartSearchisalittlemoretabletfr_135C1/video64c227a4dcbe.jpg" style="border-style: none" galleryimg="no" onload="var downlevelDiv = document.getElementById('e5084a2c-37ba-48f2-ade4-943f316ac956'); downlevelDiv.innerHTML = &amp;quot;&amp;lt;div&amp;gt;&amp;lt;object width=\&amp;quot;425\&amp;quot; height=\&amp;quot;355\&amp;quot;&amp;gt;&amp;lt;param name=\&amp;quot;movie\&amp;quot; value=\&amp;quot;http://www.youtube.com/v/NvY3ApT3iUU&amp;amp;hl=en&amp;amp;fs=1&amp;amp;hl=en\&amp;quot;&amp;gt;&amp;lt;\/param&amp;gt;&amp;lt;embed src=\&amp;quot;http://www.youtube.com/v/NvY3ApT3iUU&amp;amp;hl=en&amp;amp;fs=1&amp;amp;hl=en\&amp;quot; type=\&amp;quot;application/x-shockwave-flash\&amp;quot; width=\&amp;quot;425\&amp;quot; height=\&amp;quot;355\&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;img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=3a6875d3-6c88-4de7-bf04-dbd853fc91de" /&gt;</description>
      <comments>http://www.pringle.net.nz/blog/CommentView,guid,3a6875d3-6c88-4de7-bf04-dbd853fc91de.aspx</comments>
      <category>Search</category>
      <category>TabletPC</category>
      <category>Windows 7</category>
    </item>
    <item>
      <trackback:ping>http://www.pringle.net.nz/blog/Trackback.aspx?guid=759116db-bc96-444a-acdc-f9927f9d2e00</trackback:ping>
      <pingback:server>http://www.pringle.net.nz/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.pringle.net.nz/blog/PermaLink,guid,759116db-bc96-444a-acdc-f9927f9d2e00.aspx</pingback:target>
      <dc:creator>Craig Pringle</dc:creator>
      <wfw:comment>http://www.pringle.net.nz/blog/CommentView,guid,759116db-bc96-444a-acdc-f9927f9d2e00.aspx</wfw:comment>
      <wfw:commentRss>http://www.pringle.net.nz/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=759116db-bc96-444a-acdc-f9927f9d2e00</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
I’ve downloaded and installed the Windows 7 beta – I currently have it running on
my Toshiba M750, which I use as my main machine.  It looks fairly similar to
the M3 build – but with a bit more of the eye candy implemented.  
</p>
        <p>
There are a couple of hot tablet features I’ve spotted already – I’ll be blogging
more on those over the next couple of days.  For now I better head off to bed
as I have a wedding to attend tomorrow.
</p>
        <img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=759116db-bc96-444a-acdc-f9927f9d2e00" />
      </body>
      <title>Windows 7 Beta Installed</title>
      <guid isPermaLink="false">http://www.pringle.net.nz/blog/PermaLink,guid,759116db-bc96-444a-acdc-f9927f9d2e00.aspx</guid>
      <link>http://www.pringle.net.nz/blog/PermaLink,guid,759116db-bc96-444a-acdc-f9927f9d2e00.aspx</link>
      <pubDate>Fri, 09 Jan 2009 09:27:02 GMT</pubDate>
      <description>&lt;p&gt;
I’ve downloaded and installed the Windows 7 beta – I currently have it running on
my Toshiba M750, which I use as my main machine.&amp;#160; It looks fairly similar to
the M3 build – but with a bit more of the eye candy implemented.&amp;#160; 
&lt;/p&gt;
&lt;p&gt;
There are a couple of hot tablet features I’ve spotted already – I’ll be blogging
more on those over the next couple of days.&amp;#160; For now I better head off to bed
as I have a wedding to attend tomorrow.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=759116db-bc96-444a-acdc-f9927f9d2e00" /&gt;</description>
      <comments>http://www.pringle.net.nz/blog/CommentView,guid,759116db-bc96-444a-acdc-f9927f9d2e00.aspx</comments>
      <category>TabletPC</category>
      <category>Windows 7</category>
    </item>
    <item>
      <trackback:ping>http://www.pringle.net.nz/blog/Trackback.aspx?guid=2ab15ebc-195e-45f7-a5fa-6b3f42c51bc0</trackback:ping>
      <pingback:server>http://www.pringle.net.nz/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.pringle.net.nz/blog/PermaLink,guid,2ab15ebc-195e-45f7-a5fa-6b3f42c51bc0.aspx</pingback:target>
      <dc:creator>Craig Pringle</dc:creator>
      <wfw:comment>http://www.pringle.net.nz/blog/CommentView,guid,2ab15ebc-195e-45f7-a5fa-6b3f42c51bc0.aspx</wfw:comment>
      <wfw:commentRss>http://www.pringle.net.nz/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=2ab15ebc-195e-45f7-a5fa-6b3f42c51bc0</wfw:commentRss>
      <slash:comments>12</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
For those of you who may be running the M3 build of Windows 7 and using either hosted
Exchange or accessing a corporate Exchange environment via Outlook Anywhere (nee RPC
over HTTPS) there is an issue you may run into.  
</p>
        <p>
When you try to open Outlook you are prompted for credentials.  With most hosted
Exchange providers you use your email address as the username.  If you do this
on Windows 7 (M3) I have found that you are repeatedly prompted for your credentials
but no matter how carefully and correctly you type your password it just keeps prompting
you.  
</p>
        <p>
If you run into this issue try entering you username in the DOMAIN\Username format
instead of your email address.  I don't know why this works, but I know it does
for at least two Hosted Exchange providers.  Contact your hosted provider if
you are not sure what the domain name is.
</p>
        <img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=2ab15ebc-195e-45f7-a5fa-6b3f42c51bc0" />
      </body>
      <title>Windows 7 and Hosted Exchange Issue</title>
      <guid isPermaLink="false">http://www.pringle.net.nz/blog/PermaLink,guid,2ab15ebc-195e-45f7-a5fa-6b3f42c51bc0.aspx</guid>
      <link>http://www.pringle.net.nz/blog/PermaLink,guid,2ab15ebc-195e-45f7-a5fa-6b3f42c51bc0.aspx</link>
      <pubDate>Sat, 03 Jan 2009 07:57:37 GMT</pubDate>
      <description>&lt;p&gt;
For those of you who may be running the M3 build of Windows 7 and using either hosted
Exchange or accessing a corporate Exchange environment via Outlook Anywhere (nee RPC
over HTTPS) there is an issue you may run into.&amp;nbsp; 
&lt;/p&gt;
&lt;p&gt;
When you try to open Outlook you are prompted for credentials.&amp;nbsp; With most hosted
Exchange providers you use your email address as the username.&amp;nbsp; If you do this
on Windows 7 (M3) I have found that you are repeatedly prompted for your credentials
but no matter how carefully and correctly you type your password it just keeps prompting
you.&amp;nbsp; 
&lt;/p&gt;
&lt;p&gt;
If you run into this issue try entering you username in the DOMAIN\Username format
instead of your email address.&amp;nbsp; I don't know why this works, but I know it does
for at least two Hosted Exchange providers.&amp;nbsp; Contact your hosted provider if
you are not sure what the domain name is.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=2ab15ebc-195e-45f7-a5fa-6b3f42c51bc0" /&gt;</description>
      <comments>http://www.pringle.net.nz/blog/CommentView,guid,2ab15ebc-195e-45f7-a5fa-6b3f42c51bc0.aspx</comments>
      <category>General</category>
      <category>Outlook</category>
      <category>Windows 7</category>
    </item>
    <item>
      <trackback:ping>http://www.pringle.net.nz/blog/Trackback.aspx?guid=eb93abd1-e925-47c1-92bf-b52f3381dec5</trackback:ping>
      <pingback:server>http://www.pringle.net.nz/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.pringle.net.nz/blog/PermaLink,guid,eb93abd1-e925-47c1-92bf-b52f3381dec5.aspx</pingback:target>
      <dc:creator>Craig Pringle</dc:creator>
      <wfw:comment>http://www.pringle.net.nz/blog/CommentView,guid,eb93abd1-e925-47c1-92bf-b52f3381dec5.aspx</wfw:comment>
      <wfw:commentRss>http://www.pringle.net.nz/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=eb93abd1-e925-47c1-92bf-b52f3381dec5</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
I stumbled across quite a cool feature in Windows 7 today.  I was copying a large
amount - about 11 GB - off my video camera to my tablet.  The video camera I
have connects via USB and just shows up as an external drive.  
</p>
        <p>
While the data copied I switched across to another window to carry on working. 
Then I noticed that the button in the taskbar for Explorer was partially shaded. 
I flicked through the open explorer windows and realised that one of them was the
progress bar for the file copy.  The shading in the taskbar button was the same
percentage as the copy progress window as the screen shot below shows.
</p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/Win7FileCopyStatusinTaskbar_12CBE/image_2.png">
            <img style="border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" border="0" alt="image" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/Win7FileCopyStatusinTaskbar_12CBE/image_thumb.png" width="244" height="156" />
          </a>
        </p>
        <p>
This is a handy way to keep an eye on progress of a file copy.  Unfortunately
it does not seem to shade the IE taskbar icon for Internet downloads.
</p>
        <img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=eb93abd1-e925-47c1-92bf-b52f3381dec5" />
      </body>
      <title>Win 7: File Copy Status in Taskbar</title>
      <guid isPermaLink="false">http://www.pringle.net.nz/blog/PermaLink,guid,eb93abd1-e925-47c1-92bf-b52f3381dec5.aspx</guid>
      <link>http://www.pringle.net.nz/blog/PermaLink,guid,eb93abd1-e925-47c1-92bf-b52f3381dec5.aspx</link>
      <pubDate>Sat, 06 Dec 2008 10:23:43 GMT</pubDate>
      <description>&lt;p&gt;
I stumbled across quite a cool feature in Windows 7 today.&amp;#160; I was copying a large
amount - about 11 GB - off my video camera to my tablet.&amp;#160; The video camera I
have connects via USB and just shows up as an external drive.&amp;#160; 
&lt;/p&gt;
&lt;p&gt;
While the data copied I switched across to another window to carry on working.&amp;#160;
Then I noticed that the button in the taskbar for Explorer was partially shaded.&amp;#160;
I flicked through the open explorer windows and realised that one of them was the
progress bar for the file copy.&amp;#160; The shading in the taskbar button was the same
percentage as the copy progress window as the screen shot below shows.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/Win7FileCopyStatusinTaskbar_12CBE/image_2.png"&gt;&lt;img style="border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" border="0" alt="image" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/Win7FileCopyStatusinTaskbar_12CBE/image_thumb.png" width="244" height="156" /&gt;&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
This is a handy way to keep an eye on progress of a file copy.&amp;#160; Unfortunately
it does not seem to shade the IE taskbar icon for Internet downloads.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=eb93abd1-e925-47c1-92bf-b52f3381dec5" /&gt;</description>
      <comments>http://www.pringle.net.nz/blog/CommentView,guid,eb93abd1-e925-47c1-92bf-b52f3381dec5.aspx</comments>
      <category>General</category>
      <category>Windows 7</category>
    </item>
    <item>
      <trackback:ping>http://www.pringle.net.nz/blog/Trackback.aspx?guid=59be0b9e-cee5-4f9c-a897-6b802605f013</trackback:ping>
      <pingback:server>http://www.pringle.net.nz/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.pringle.net.nz/blog/PermaLink,guid,59be0b9e-cee5-4f9c-a897-6b802605f013.aspx</pingback:target>
      <dc:creator>Craig Pringle</dc:creator>
      <wfw:comment>http://www.pringle.net.nz/blog/CommentView,guid,59be0b9e-cee5-4f9c-a897-6b802605f013.aspx</wfw:comment>
      <wfw:commentRss>http://www.pringle.net.nz/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=59be0b9e-cee5-4f9c-a897-6b802605f013</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
One of the great features of Windows Vista is BitLocker.  This allows you to
encrypt the system volume and store the keys either on a Trusted Platform Module (TPM)
or on a USB fob.  This provides a degree of protection for the data on your mobile
PC should it be lost or stolen.  Personally I've never lost a laptop or a tablet
but for enterprises this actually happens with alarming regularity.
</p>
        <p>
In Windows 7 in addition to being able to encrypt the system volume you can encrypt
other volumes as well.  This will appeal to lots of organisations who continue
to persist in having standard operating environments for laptops that have a OS partition
and a Data partition.  
</p>
        <p>
However, Windows 7 takes the BitLocker concept a bit further and addresses another
major source of potential data leakage - USB thumb drives.  I selected one of
my spares to experiment with. 
</p>
        <p>
Encrypting a USB drive with BitLocker is fairly easy.  You get the option of
securing the drive with a smart card or with a pass phrase.  I selected the latter. 
You can encrypt a drive with data already on it, without losing anything.  
</p>
        <p>
Now that my USB drive is encrypted  when I plug it into a Windows 7 machine I
get a dialogue that prompts me for a pass phrase.  Once the pass phrase is entered
then you can just use the drive as you would normally.
</p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/reatWin7BitLockerforUSBDrives_1376F/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/reatWin7BitLockerforUSBDrives_1376F/image_thumb.png" width="244" height="202" />
          </a>
        </p>
        <p>
To see what would happen I tried plugging the USB drive into Windows Vista machines,
Windows XP machines and even a Linux machine.  With the default settings on the
Windows machines the drive appears to have no files on it, but if you check the properties
of the drive it is also full.  This seems a bit weird until you turn on the setting
in Explorer that shows hidden files.  This reveals that he whole drive is filled. 
There is one  really big file, a couple of smaller files and a whole bunch of
0 byte files.  Working with one of our security gurus at work we cracked open
a couple of these files with various editor but the were just gibberish as you would
expect.  
</p>
        <p>
All of that is really great - but often the people who should be encrypting their
thumb drives would never bother.  The good news is that according to <a href="http://www.minasi.com">Mark
Minasi</a> Windows 7 is going to have a number of Group Policies for the enhanced
group policy.  Organisations will even be able to prevent writing to a drive
unless it is encrypted.  Check out <a href="http://www.minasi.com/win7ppt.pdf">Mark's
slides from TechEd Barcelona</a> for more great Windows 7 tips.
</p>
        <img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=59be0b9e-cee5-4f9c-a897-6b802605f013" />
      </body>
      <title>reat Win7: BitLocker for USB Drives</title>
      <guid isPermaLink="false">http://www.pringle.net.nz/blog/PermaLink,guid,59be0b9e-cee5-4f9c-a897-6b802605f013.aspx</guid>
      <link>http://www.pringle.net.nz/blog/PermaLink,guid,59be0b9e-cee5-4f9c-a897-6b802605f013.aspx</link>
      <pubDate>Wed, 03 Dec 2008 16:01:56 GMT</pubDate>
      <description>&lt;p&gt;
One of the great features of Windows Vista is BitLocker.&amp;#160; This allows you to
encrypt the system volume and store the keys either on a Trusted Platform Module (TPM)
or on a USB fob.&amp;#160; This provides a degree of protection for the data on your mobile
PC should it be lost or stolen.&amp;#160; Personally I've never lost a laptop or a tablet
but for enterprises this actually happens with alarming regularity.
&lt;/p&gt;
&lt;p&gt;
In Windows 7 in addition to being able to encrypt the system volume you can encrypt
other volumes as well.&amp;#160; This will appeal to lots of organisations who continue
to persist in having standard operating environments for laptops that have a OS partition
and a Data partition.&amp;#160; 
&lt;/p&gt;
&lt;p&gt;
However, Windows 7 takes the BitLocker concept a bit further and addresses another
major source of potential data leakage - USB thumb drives.&amp;#160; I selected one of
my spares to experiment with. 
&lt;/p&gt;
&lt;p&gt;
Encrypting a USB drive with BitLocker is fairly easy.&amp;#160; You get the option of
securing the drive with a smart card or with a pass phrase.&amp;#160; I selected the latter.&amp;#160;
You can encrypt a drive with data already on it, without losing anything.&amp;#160; 
&lt;/p&gt;
&lt;p&gt;
Now that my USB drive is encrypted&amp;#160; when I plug it into a Windows 7 machine I
get a dialogue that prompts me for a pass phrase.&amp;#160; Once the pass phrase is entered
then you can just use the drive as you would normally.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/reatWin7BitLockerforUSBDrives_1376F/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/reatWin7BitLockerforUSBDrives_1376F/image_thumb.png" width="244" height="202" /&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
To see what would happen I tried plugging the USB drive into Windows Vista machines,
Windows XP machines and even a Linux machine.&amp;#160; With the default settings on the
Windows machines the drive appears to have no files on it, but if you check the properties
of the drive it is also full.&amp;#160; This seems a bit weird until you turn on the setting
in Explorer that shows hidden files.&amp;#160; This reveals that he whole drive is filled.&amp;#160;
There is one&amp;#160; really big file, a couple of smaller files and a whole bunch of
0 byte files.&amp;#160; Working with one of our security gurus at work we cracked open
a couple of these files with various editor but the were just gibberish as you would
expect.&amp;#160; 
&lt;/p&gt;
&lt;p&gt;
All of that is really great - but often the people who should be encrypting their
thumb drives would never bother.&amp;#160; The good news is that according to &lt;a href="http://www.minasi.com"&gt;Mark
Minasi&lt;/a&gt; Windows 7 is going to have a number of Group Policies for the enhanced
group policy.&amp;#160; Organisations will even be able to prevent writing to a drive
unless it is encrypted.&amp;#160; Check out &lt;a href="http://www.minasi.com/win7ppt.pdf"&gt;Mark's
slides from TechEd Barcelona&lt;/a&gt; for more great Windows 7 tips.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=59be0b9e-cee5-4f9c-a897-6b802605f013" /&gt;</description>
      <comments>http://www.pringle.net.nz/blog/CommentView,guid,59be0b9e-cee5-4f9c-a897-6b802605f013.aspx</comments>
      <category>Windows 7</category>
    </item>
    <item>
      <trackback:ping>http://www.pringle.net.nz/blog/Trackback.aspx?guid=fed581c2-5aea-45f7-900a-6fbb4727c8a8</trackback:ping>
      <pingback:server>http://www.pringle.net.nz/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.pringle.net.nz/blog/PermaLink,guid,fed581c2-5aea-45f7-900a-6fbb4727c8a8.aspx</pingback:target>
      <dc:creator>Craig Pringle</dc:creator>
      <wfw:comment>http://www.pringle.net.nz/blog/CommentView,guid,fed581c2-5aea-45f7-900a-6fbb4727c8a8.aspx</wfw:comment>
      <wfw:commentRss>http://www.pringle.net.nz/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=fed581c2-5aea-45f7-900a-6fbb4727c8a8</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
I got a sneak peek at a team doing some interesting development with touch technologies
in Sydney on Thursday.
</p>
        <p>
          <a href="http://www.nsquaredsolutions.com/">
            <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/InterestingTouchDevelopmentinSydney_1326C/image_5.png" width="244" height="38" />
          </a>
        </p>
        <p>
My friend <a href="http://community.softteq.com/blogs/nick/default.aspx">Nick Randolph</a> is
the Chief Development Officer at <a href="http://nsquaredsolutions.com">nsquared solutions</a>.
He his heading up a team of developers working on development projects with a range
of cutting edge technologies including Windows 7, multitouch, multipoint and Microsoft
Surface.   
</p>
        <p>
They are working on some really cool projects that are really going to show how multitouch
can really change the paradigms we work with in user interfaces now.
</p>
        <p>
It is exciting stuff and I am sure we will be hearing more form nsquared in the near
future.  In the meantime you might want to check out Nick's teaser post about <a href="http://nsquaredblog.blogspot.com/2008/11/cool-toys.html">what
they are working on</a> and subscribe to the <a href="http://nsquaredblog.blogspot.com/feeds/posts/default">nsquared
blog feed</a>.
</p>
        <img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=fed581c2-5aea-45f7-900a-6fbb4727c8a8" />
      </body>
      <title>Interesting Touch Development in Sydney</title>
      <guid isPermaLink="false">http://www.pringle.net.nz/blog/PermaLink,guid,fed581c2-5aea-45f7-900a-6fbb4727c8a8.aspx</guid>
      <link>http://www.pringle.net.nz/blog/PermaLink,guid,fed581c2-5aea-45f7-900a-6fbb4727c8a8.aspx</link>
      <pubDate>Fri, 28 Nov 2008 10:47:32 GMT</pubDate>
      <description>&lt;p&gt;
I got a sneak peek at a team doing some interesting development with touch technologies
in Sydney on Thursday.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.nsquaredsolutions.com/"&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/InterestingTouchDevelopmentinSydney_1326C/image_5.png" width="244" height="38" /&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
My friend &lt;a href="http://community.softteq.com/blogs/nick/default.aspx"&gt;Nick Randolph&lt;/a&gt; is
the Chief Development Officer at &lt;a href="http://nsquaredsolutions.com"&gt;nsquared solutions&lt;/a&gt;.
He his heading up a team of developers working on development projects with a range
of cutting edge technologies including Windows 7, multitouch, multipoint and Microsoft
Surface.&amp;#160;&amp;#160; 
&lt;/p&gt;
&lt;p&gt;
They are working on some really cool projects that are really going to show how multitouch
can really change the paradigms we work with in user interfaces now.
&lt;/p&gt;
&lt;p&gt;
It is exciting stuff and I am sure we will be hearing more form nsquared in the near
future.&amp;#160; In the meantime you might want to check out Nick's teaser post about &lt;a href="http://nsquaredblog.blogspot.com/2008/11/cool-toys.html"&gt;what
they are working on&lt;/a&gt; and subscribe to the &lt;a href="http://nsquaredblog.blogspot.com/feeds/posts/default"&gt;nsquared
blog feed&lt;/a&gt;.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=fed581c2-5aea-45f7-900a-6fbb4727c8a8" /&gt;</description>
      <comments>http://www.pringle.net.nz/blog/CommentView,guid,fed581c2-5aea-45f7-900a-6fbb4727c8a8.aspx</comments>
      <category>Multitouch</category>
      <category>Surface</category>
      <category>TabletPC Dev</category>
      <category>Touch</category>
      <category>Windows 7</category>
    </item>
    <item>
      <trackback:ping>http://www.pringle.net.nz/blog/Trackback.aspx?guid=36814b8d-5263-40ff-92d7-7eec4a321305</trackback:ping>
      <pingback:server>http://www.pringle.net.nz/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.pringle.net.nz/blog/PermaLink,guid,36814b8d-5263-40ff-92d7-7eec4a321305.aspx</pingback:target>
      <dc:creator>Craig Pringle</dc:creator>
      <wfw:comment>http://www.pringle.net.nz/blog/CommentView,guid,36814b8d-5263-40ff-92d7-7eec4a321305.aspx</wfw:comment>
      <wfw:commentRss>http://www.pringle.net.nz/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=36814b8d-5263-40ff-92d7-7eec4a321305</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
I've been using Windows 7 for a few weeks now and I it is time I posted about my general
impressions of the OS.  Bear in mind that this is a very early release and that
anything I write about here is subject to change before we see the release.
</p>
        <p>
I have already blogged about:
</p>
        <ul>
          <li>
The <a href="http://www.pringle.net.nz/blog/PermaLink,guid,954cec8e-66c3-49a3-8a0a-8b9dbdbcd98e.aspx">changes
to the TIP</a></li>
          <li>
The <a href="http://www.pringle.net.nz/blog/PermaLink,guid,6b0675c5-9871-4746-a6e4-fc45e995b3e6.aspx">improvements
in the Display Settings</a></li>
          <li>
            <a href="http://www.pringle.net.nz/blog/PermaLink,guid,96d584ad-bac6-423d-8496-06c21553d85a.aspx">Easier
Networking</a>
          </li>
        </ul>
        <p>
All of these things are great examples of the changes coming in Windows 7.  It
is an evolution, not a revolution.
</p>
        <p>
Windows 7 does not have a great deal of architectural changes under the hood. 
The move from Vista to Windows 7 is not going to be as disruptive as the move to Vista
was.  However, there has been much refinement of the foundation laid down by
Vista.  
</p>
        <p>
          <strong>Usability</strong>
        </p>
        <p>
There has been a lot little refinements - like those listed above - that have made
it easier to perform many common tasks.  Remember that this is a pre-beta release. 
I suspect there is more to come.
</p>
        <p>
          <strong>Performance</strong>
        </p>
        <p>
Windows 7 is fast.  I had low expectations for performance in a pre-beta release
and I was absolutely blown away with how fast it is.  Resume time from sleep
is significantly faster than Vista on the same hardware.  Everything is snappy.
</p>
        <p>
          <strong>Device Support</strong>
        </p>
        <p>
Again much better than I would of thought for a pre-beta.  Everything works on
most of the devices I have put Windows 7 on so far.  The exception is the Toshiba
Bluetooth stack, which installs but it has some stability issues.  
</p>
        <p>
          <strong>Overall Impression</strong>
        </p>
        <p>
A very nice evolution of Vista.  I expect Windows 7 to be easier to use, faster
and rock solid.
</p>
        <img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=36814b8d-5263-40ff-92d7-7eec4a321305" />
      </body>
      <title>Windows 7 Impressions</title>
      <guid isPermaLink="false">http://www.pringle.net.nz/blog/PermaLink,guid,36814b8d-5263-40ff-92d7-7eec4a321305.aspx</guid>
      <link>http://www.pringle.net.nz/blog/PermaLink,guid,36814b8d-5263-40ff-92d7-7eec4a321305.aspx</link>
      <pubDate>Sat, 22 Nov 2008 11:00:39 GMT</pubDate>
      <description>&lt;p&gt;
I've been using Windows 7 for a few weeks now and I it is time I posted about my general
impressions of the OS.&amp;#160; Bear in mind that this is a very early release and that
anything I write about here is subject to change before we see the release.
&lt;/p&gt;
&lt;p&gt;
I have already blogged about:
&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
The &lt;a href="http://www.pringle.net.nz/blog/PermaLink,guid,954cec8e-66c3-49a3-8a0a-8b9dbdbcd98e.aspx"&gt;changes
to the TIP&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
The &lt;a href="http://www.pringle.net.nz/blog/PermaLink,guid,6b0675c5-9871-4746-a6e4-fc45e995b3e6.aspx"&gt;improvements
in the Display Settings&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="http://www.pringle.net.nz/blog/PermaLink,guid,96d584ad-bac6-423d-8496-06c21553d85a.aspx"&gt;Easier
Networking&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;
All of these things are great examples of the changes coming in Windows 7.&amp;#160; It
is an evolution, not a revolution.
&lt;/p&gt;
&lt;p&gt;
Windows 7 does not have a great deal of architectural changes under the hood.&amp;#160;
The move from Vista to Windows 7 is not going to be as disruptive as the move to Vista
was.&amp;#160; However, there has been much refinement of the foundation laid down by
Vista.&amp;#160; 
&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;Usability&lt;/strong&gt;
&lt;/p&gt;
&lt;p&gt;
There has been a lot little refinements - like those listed above - that have made
it easier to perform many common tasks.&amp;#160; Remember that this is a pre-beta release.&amp;#160;
I suspect there is more to come.
&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;Performance&lt;/strong&gt;
&lt;/p&gt;
&lt;p&gt;
Windows 7 is fast.&amp;#160; I had low expectations for performance in a pre-beta release
and I was absolutely blown away with how fast it is.&amp;#160; Resume time from sleep
is significantly faster than Vista on the same hardware.&amp;#160; Everything is snappy.
&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;Device Support&lt;/strong&gt;
&lt;/p&gt;
&lt;p&gt;
Again much better than I would of thought for a pre-beta.&amp;#160; Everything works on
most of the devices I have put Windows 7 on so far.&amp;#160; The exception is the Toshiba
Bluetooth stack, which installs but it has some stability issues.&amp;#160; 
&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;Overall Impression&lt;/strong&gt;
&lt;/p&gt;
&lt;p&gt;
A very nice evolution of Vista.&amp;#160; I expect Windows 7 to be easier to use, faster
and rock solid.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=36814b8d-5263-40ff-92d7-7eec4a321305" /&gt;</description>
      <comments>http://www.pringle.net.nz/blog/CommentView,guid,36814b8d-5263-40ff-92d7-7eec4a321305.aspx</comments>
      <category>Windows 7</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=6b0675c5-9871-4746-a6e4-fc45e995b3e6</trackback:ping>
      <pingback:server>http://www.pringle.net.nz/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.pringle.net.nz/blog/PermaLink,guid,6b0675c5-9871-4746-a6e4-fc45e995b3e6.aspx</pingback:target>
      <dc:creator>Craig Pringle</dc:creator>
      <wfw:comment>http://www.pringle.net.nz/blog/CommentView,guid,6b0675c5-9871-4746-a6e4-fc45e995b3e6.aspx</wfw:comment>
      <wfw:commentRss>http://www.pringle.net.nz/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=6b0675c5-9871-4746-a6e4-fc45e995b3e6</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
One of the little annoyances I had with Vista was that it was a little harder to get
into the Display Settings than it had been in Windows XP.  In XP, you simply
right clicked the desktop and then clicked Properties and you were into a dialogue
that included a settings tab.  In Vista you need to right click the desktop and
select personalize.  From the resulting dialogue includes a link that will launch
the display settings dialogue.  
</p>
        <p>
The problem with the Vista approach is that I found that the Display Settings is the
bit I want to get to far more frequently than the other items in the Personalize dialogue,
but it is a layer deeper than it was in XP.  
</p>
        <p>
In the Milestone 3 build of Windows 7 I was pleased to see that the display settings
had been promoted.  Right clicking on the desktop launches a context menu that
includes a Display Settings item as well as the Vista style Personalize option.
</p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/RevampedDisplaySettingsinWindows7_13D82/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/RevampedDisplaySettingsinWindows7_13D82/image_thumb.png" width="226" height="244" />
          </a>
        </p>
        <p>
The next pleasant surprise came when I clicked that link and found that the Display
Settings dialogue has had a bit of an overhaul.
</p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/RevampedDisplaySettingsinWindows7_13D82/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/RevampedDisplaySettingsinWindows7_13D82/image_thumb_1.png" width="244" height="163" />
          </a>  
</p>
        <p>
Each monitor (when there are multiple monitors attached) has a meaningful label so
that it is pretty easy to figure out which is which.  
</p>
        <p>
For each monitor it also detects the native resolution of the and shows (recommended)
next to that resolution.  There is also a handy tip shown to tell you about the
keyboard shortcut that helps you connect a projector, which I found by accident and <a href="http://www.pringle.net.nz/blog/PermaLink,guid,0f575128-6ed1-4f99-891f-e8e4682403f5.aspx">blogged
about previously</a>.  
</p>
        <p>
There seem to be a few handy little tips like this scattered through Windows 7 and
I am betting that there will be a few more in the final version.  These hints
are going to make some of the "power user" features more discoverable and
therefore more widely used. This can only be a good thing. 
</p>
        <img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=6b0675c5-9871-4746-a6e4-fc45e995b3e6" />
      </body>
      <title>Revamped Display Settings in Windows 7</title>
      <guid isPermaLink="false">http://www.pringle.net.nz/blog/PermaLink,guid,6b0675c5-9871-4746-a6e4-fc45e995b3e6.aspx</guid>
      <link>http://www.pringle.net.nz/blog/PermaLink,guid,6b0675c5-9871-4746-a6e4-fc45e995b3e6.aspx</link>
      <pubDate>Tue, 18 Nov 2008 11:34:58 GMT</pubDate>
      <description>&lt;p&gt;
One of the little annoyances I had with Vista was that it was a little harder to get
into the Display Settings than it had been in Windows XP.&amp;#160; In XP, you simply
right clicked the desktop and then clicked Properties and you were into a dialogue
that included a settings tab.&amp;#160; In Vista you need to right click the desktop and
select personalize.&amp;#160; From the resulting dialogue includes a link that will launch
the display settings dialogue.&amp;#160; 
&lt;/p&gt;
&lt;p&gt;
The problem with the Vista approach is that I found that the Display Settings is the
bit I want to get to far more frequently than the other items in the Personalize dialogue,
but it is a layer deeper than it was in XP.&amp;#160; 
&lt;/p&gt;
&lt;p&gt;
In the Milestone 3 build of Windows 7 I was pleased to see that the display settings
had been promoted.&amp;#160; Right clicking on the desktop launches a context menu that
includes a Display Settings item as well as the Vista style Personalize option.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/RevampedDisplaySettingsinWindows7_13D82/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/RevampedDisplaySettingsinWindows7_13D82/image_thumb.png" width="226" height="244" /&gt;&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
The next pleasant surprise came when I clicked that link and found that the Display
Settings dialogue has had a bit of an overhaul.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/RevampedDisplaySettingsinWindows7_13D82/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/RevampedDisplaySettingsinWindows7_13D82/image_thumb_1.png" width="244" height="163" /&gt;&lt;/a&gt;&amp;#160; 
&lt;/p&gt;
&lt;p&gt;
Each monitor (when there are multiple monitors attached) has a meaningful label so
that it is pretty easy to figure out which is which.&amp;#160; 
&lt;/p&gt;
&lt;p&gt;
For each monitor it also detects the native resolution of the and shows (recommended)
next to that resolution.&amp;#160; There is also a handy tip shown to tell you about the
keyboard shortcut that helps you connect a projector, which I found by accident and &lt;a href="http://www.pringle.net.nz/blog/PermaLink,guid,0f575128-6ed1-4f99-891f-e8e4682403f5.aspx"&gt;blogged
about previously&lt;/a&gt;.&amp;#160; 
&lt;/p&gt;
&lt;p&gt;
There seem to be a few handy little tips like this scattered through Windows 7 and
I am betting that there will be a few more in the final version.&amp;#160; These hints
are going to make some of the &amp;quot;power user&amp;quot; features more discoverable and
therefore more widely used. This can only be a good thing. 
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=6b0675c5-9871-4746-a6e4-fc45e995b3e6" /&gt;</description>
      <comments>http://www.pringle.net.nz/blog/CommentView,guid,6b0675c5-9871-4746-a6e4-fc45e995b3e6.aspx</comments>
      <category>Windows 7</category>
    </item>
    <item>
      <trackback:ping>http://www.pringle.net.nz/blog/Trackback.aspx?guid=954cec8e-66c3-49a3-8a0a-8b9dbdbcd98e</trackback:ping>
      <pingback:server>http://www.pringle.net.nz/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.pringle.net.nz/blog/PermaLink,guid,954cec8e-66c3-49a3-8a0a-8b9dbdbcd98e.aspx</pingback:target>
      <dc:creator>Craig Pringle</dc:creator>
      <wfw:comment>http://www.pringle.net.nz/blog/CommentView,guid,954cec8e-66c3-49a3-8a0a-8b9dbdbcd98e.aspx</wfw:comment>
      <wfw:commentRss>http://www.pringle.net.nz/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=954cec8e-66c3-49a3-8a0a-8b9dbdbcd98e</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
The TIP in Windows 7 has had a lot of work to make it more usable.  I'm finding
it to be a really good user experience so far.
</p>
        <p>
This video explores some of the new features that are in the Milestone 3 build (6801)
that was released at PDC.  
</p>
        <p>
Windows 7 is much more pen and touch aware than Vista.  And it draws a distinction,
too.  When you are using a tablet that supports both pen and touch - such as
the Toshiba M750 that I am using - you sometimes get a different depending on how
you are interacting with the computer.
</p>
        <p>
The features I demonstrate in this video include:
</p>
        <ul>
          <li>
The TIP vanishing when you move you pen away from it</li>
          <li>
The revamped text correction UI and gestures</li>
          <li>
The changes in the On Screen Keyboard when launched with a finger rather than a pen</li>
        </ul>
        <p>
There may be more that I have not found yet, or that may be added into a future build
- who knows!
</p>
        <p>
Click the video below for a glimpse of some of what's new in Windows 7 for Tablet
users.
</p>
        <div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px" id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:3b52047f-6e3c-49ac-bee2-4a46cf1febb1" class="wlWriterSmartContent">
          <div>
            <object width="425" height="355">
              <param name="movie" value="http://www.youtube.com/v/LxY4wfKGWXg" />
              <param name="wmode" value="transparent" />
              <embed src="http://www.youtube.com/v/LxY4wfKGWXg" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355">
              </embed>
            </object>
          </div>
        </div>
        <img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=954cec8e-66c3-49a3-8a0a-8b9dbdbcd98e" />
      </body>
      <title>TIP Enhancements in Windows 7</title>
      <guid isPermaLink="false">http://www.pringle.net.nz/blog/PermaLink,guid,954cec8e-66c3-49a3-8a0a-8b9dbdbcd98e.aspx</guid>
      <link>http://www.pringle.net.nz/blog/PermaLink,guid,954cec8e-66c3-49a3-8a0a-8b9dbdbcd98e.aspx</link>
      <pubDate>Sun, 16 Nov 2008 03:17:42 GMT</pubDate>
      <description>&lt;p&gt;
The TIP in Windows 7 has had a lot of work to make it more usable.&amp;#160; I'm finding
it to be a really good user experience so far.
&lt;/p&gt;
&lt;p&gt;
This video explores some of the new features that are in the Milestone 3 build (6801)
that was released at PDC.&amp;#160; 
&lt;/p&gt;
&lt;p&gt;
Windows 7 is much more pen and touch aware than Vista.&amp;#160; And it draws a distinction,
too.&amp;#160; When you are using a tablet that supports both pen and touch - such as
the Toshiba M750 that I am using - you sometimes get a different depending on how
you are interacting with the computer.
&lt;/p&gt;
&lt;p&gt;
The features I demonstrate in this video include:
&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
The TIP vanishing when you move you pen away from it&lt;/li&gt;
&lt;li&gt;
The revamped text correction UI and gestures&lt;/li&gt;
&lt;li&gt;
The changes in the On Screen Keyboard when launched with a finger rather than a pen&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;
There may be more that I have not found yet, or that may be added into a future build
- who knows!
&lt;/p&gt;
&lt;p&gt;
Click the video below for a glimpse of some of what's new in Windows 7 for Tablet
users.
&lt;/p&gt;
&lt;div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px" id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:3b52047f-6e3c-49ac-bee2-4a46cf1febb1" class="wlWriterSmartContent"&gt;
&lt;div&gt;
&lt;object width="425" height="355"&gt;
&lt;param name="movie" value="http://www.youtube.com/v/LxY4wfKGWXg"&gt;&gt;
&lt;param name="wmode" value="transparent"&gt;&gt;&lt;embed src="http://www.youtube.com/v/LxY4wfKGWXg" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"&gt;&lt;/embed&gt;
&lt;/object&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=954cec8e-66c3-49a3-8a0a-8b9dbdbcd98e" /&gt;</description>
      <comments>http://www.pringle.net.nz/blog/CommentView,guid,954cec8e-66c3-49a3-8a0a-8b9dbdbcd98e.aspx</comments>
      <category>M750</category>
      <category>TabletPC</category>
      <category>Windows 7</category>
    </item>
    <item>
      <trackback:ping>http://www.pringle.net.nz/blog/Trackback.aspx?guid=1f06a273-1497-4b83-9629-e22a68480b24</trackback:ping>
      <pingback:server>http://www.pringle.net.nz/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.pringle.net.nz/blog/PermaLink,guid,1f06a273-1497-4b83-9629-e22a68480b24.aspx</pingback:target>
      <dc:creator>Craig Pringle</dc:creator>
      <wfw:comment>http://www.pringle.net.nz/blog/CommentView,guid,1f06a273-1497-4b83-9629-e22a68480b24.aspx</wfw:comment>
      <wfw:commentRss>http://www.pringle.net.nz/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=1f06a273-1497-4b83-9629-e22a68480b24</wfw:commentRss>
      <slash:comments>3</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
One of the things I was very pleased to see in the Windows 7 pre-beta is that .ISO
files have a file association.  Right clicking an ISO file shows you that the
default action is to burn the ISO to a disc.
</p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/Windows7HasaNativeHookfor.ISOfiles_13E47/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/Windows7HasaNativeHookfor.ISOfiles_13E47/image_thumb.png" width="240" height="129" />
          </a> 
</p>
        <p>
I burned off an Office 2007 CD using this - just to see if it works - and it did work
a treat.
</p>
        <p>
It is certainly good that support for ISO files has finally made it into the OS and
I have to say it is about time.  Especially when you consider that Microsoft
distributes a massive amount of software as .ISO files through the <a href="http://msdn.microsoft.com">MSDN</a> and <a href="http://www.microsoft.com/technet">TechNet</a> subscriptions.
</p>
        <p>
Unfortunately the support simply does not go far enough.  It is simply not safe
to assume that everyone has a blank CD or DVD lying around.  It is not even safe
to assume that they have a burner.  Many mobile devices don't have an optical
drive.  What really needs to be added in to Windows is the ability to mount and
ISO image.  Until Microsoft sorts this out you will need to continue to use 3rd
party software like <a href="http://www.slysoft.com/en/virtual-clonedrive.html">Slysoft's
Virtual CloneDrive</a> (which is great freeware) to mount ISOs.  
</p>
        <img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=1f06a273-1497-4b83-9629-e22a68480b24" />
      </body>
      <title>Windows 7 Has a Native Hook for .ISO files</title>
      <guid isPermaLink="false">http://www.pringle.net.nz/blog/PermaLink,guid,1f06a273-1497-4b83-9629-e22a68480b24.aspx</guid>
      <link>http://www.pringle.net.nz/blog/PermaLink,guid,1f06a273-1497-4b83-9629-e22a68480b24.aspx</link>
      <pubDate>Mon, 10 Nov 2008 11:38:15 GMT</pubDate>
      <description>&lt;p&gt;
One of the things I was very pleased to see in the Windows 7 pre-beta is that .ISO
files have a file association.&amp;#160; Right clicking an ISO file shows you that the
default action is to burn the ISO to a disc.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/Windows7HasaNativeHookfor.ISOfiles_13E47/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/Windows7HasaNativeHookfor.ISOfiles_13E47/image_thumb.png" width="240" height="129" /&gt;&lt;/a&gt;&amp;#160;
&lt;/p&gt;
&lt;p&gt;
I burned off an Office 2007 CD using this - just to see if it works - and it did work
a treat.
&lt;/p&gt;
&lt;p&gt;
It is certainly good that support for ISO files has finally made it into the OS and
I have to say it is about time.&amp;#160; Especially when you consider that Microsoft
distributes a massive amount of software as .ISO files through the &lt;a href="http://msdn.microsoft.com"&gt;MSDN&lt;/a&gt; and &lt;a href="http://www.microsoft.com/technet"&gt;TechNet&lt;/a&gt; subscriptions.
&lt;/p&gt;
&lt;p&gt;
Unfortunately the support simply does not go far enough.&amp;#160; It is simply not safe
to assume that everyone has a blank CD or DVD lying around.&amp;#160; It is not even safe
to assume that they have a burner.&amp;#160; Many mobile devices don't have an optical
drive.&amp;#160; What really needs to be added in to Windows is the ability to mount and
ISO image.&amp;#160; Until Microsoft sorts this out you will need to continue to use 3rd
party software like &lt;a href="http://www.slysoft.com/en/virtual-clonedrive.html"&gt;Slysoft's
Virtual CloneDrive&lt;/a&gt; (which is great freeware) to mount ISOs.&amp;#160; 
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=1f06a273-1497-4b83-9629-e22a68480b24" /&gt;</description>
      <comments>http://www.pringle.net.nz/blog/CommentView,guid,1f06a273-1497-4b83-9629-e22a68480b24.aspx</comments>
      <category>General</category>
      <category>Windows 7</category>
    </item>
    <item>
      <trackback:ping>http://www.pringle.net.nz/blog/Trackback.aspx?guid=1c569b24-0c44-497f-bedc-a30070210f5b</trackback:ping>
      <pingback:server>http://www.pringle.net.nz/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.pringle.net.nz/blog/PermaLink,guid,1c569b24-0c44-497f-bedc-a30070210f5b.aspx</pingback:target>
      <dc:creator>Craig Pringle</dc:creator>
      <wfw:comment>http://www.pringle.net.nz/blog/CommentView,guid,1c569b24-0c44-497f-bedc-a30070210f5b.aspx</wfw:comment>
      <wfw:commentRss>http://www.pringle.net.nz/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=1c569b24-0c44-497f-bedc-a30070210f5b</wfw:commentRss>
      <slash:comments>4</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
The fabulous folks over at Toshiba have loaned me a brand new <a href="http://www.isd.toshiba.com.au/71/live.dll/topic/content/pu_prod_details.jsp?BV_SessionID=@@@@0849795463.1226139480@@@@&amp;BV_EngineID=ccccadefjdedjgjcefecekfdffhdfgj.0&amp;PRODOID=106037&amp;CATOID=-8154">M750</a> to
help with my early testing of the Windows 7 pre-beta.  While certainly not the
lightest tablet I have used this is a <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/HandsonwiththeToshibaM750_12DE0/HPIM1643.jpg"><img style="border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" border="0" alt="HPIM1643" align="right" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/HandsonwiththeToshibaM750_12DE0/HPIM1643_thumb.jpg" width="244" height="231" /></a>seriously
fast workhorse of a tablet.  It really is the whole package.
</p>
        <p>
The unit I got came with: 
</p>
        <ul>
          <li>
Intel® Core™ 2 Duo P8600 (2.4GHz, 1066MHz FSB, 3MB L2 Cache) 
</li>
          <li>
12.1" WXGA 200NIT CSV Display(1280x800) 
</li>
          <li>
2GB DDR2 (800MHz) 
</li>
          <li>
200GB HDD (7200rpm) SATA 
</li>
          <li>
DVD SuperMulti Double/Dual Layer Drive 
</li>
          <li>
1Gbit LAN + AMT 4.0 
</li>
          <li>
WLAN (802.11a/g/n) 
</li>
        </ul>
        <p>
The screen is a Wacom dual mode digitizer, supporting both the active stylus and resistive
touch.
</p>
        <p>
Lets have a look at the outside of the device.  As we go through click the images
for a larger view.
</p>
        <p>
Down the left hand side we have 
</p>
        <p>
A - Venting.  This blows out a little air but not much and not very warm.
</p>
        <p>
B - Lock port
</p>
        <p>
C - A combination eSATA or powered USB port.  This particular USB port is suppose
to be able to charge your USB devices while the tablet is asleep, but I've not put
that to the test yet.
</p>
        <p>
D - A normal USB port
</p>
        <p>
E - PCMCIA slot
</p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/HandsonwiththeToshibaM750_12DE0/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/HandsonwiththeToshibaM750_12DE0/image_thumb_1.png" width="244" height="55" />
          </a>
        </p>
        <p>
The front bezel has...
</p>
        <p>
A - a plathora of indicator lights - including ones for optional components such as
a second battery or a 3G WWAN radio.
</p>
        <p>
B - Hardware switch for the radios.  This is a nice touch.  I never remember
to turn my wireless off before I get on a plane :)
</p>
        <p>
C - IEEE1394 port.
</p>
        <p>
D,E - Headphone and mic jacks
</p>
        <p>
F - hard to see in the picture but a volume control wheel.
</p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/HandsonwiththeToshibaM750_12DE0/image_6.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/HandsonwiththeToshibaM750_12DE0/image_thumb_2.png" width="244" height="74" />
          </a>
        </p>
        <p>
Down the right side and we have
</p>
        <p>
A - The stylus dock.
</p>
        <p>
B - A multi card reader
</p>
        <p>
C - A slimline DVD dual layer recorder
</p>
        <p>
D - A modem port (I can't remember the last time I used a modem - seems like a waste
of space to me!)
</p>
        <p>
The back side is fairly sparten.
</p>
        <p>
A - Another USB port.
</p>
        <p>
B - VGA Output
</p>
        <p>
C - Power input 
</p>
        <p>
D - Gigabit Ethernet port
</p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/HandsonwiththeToshibaM750_12DE0/image_10.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/HandsonwiththeToshibaM750_12DE0/image_thumb_4.png" width="244" height="73" />
          </a>
        </p>
        <p>
The top of the screen sports an inbuilt web cam and microphone.
</p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/HandsonwiththeToshibaM750_12DE0/HPIM1659.jpg">
            <img style="border-bottom: 0px; border-left: 0px; border-top: 0px; border-right: 0px" border="0" alt="HPIM1659" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/HandsonwiththeToshibaM750_12DE0/HPIM1659_thumb.jpg" width="244" height="184" />
          </a>
        </p>
        <p>
There are also a host of buttons at the bottom of the screen - or on the front bezel
when in slate mode.
</p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/HandsonwiththeToshibaM750_12DE0/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/HandsonwiththeToshibaM750_12DE0/image_thumb_3.png" width="244" height="103" />
          </a> 
</p>
        <p>
And a fingerprint reader on the other end of the same edge, which is also well placed
for ease of access in both laptop mode and slate mode.
</p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/HandsonwiththeToshibaM750_12DE0/HPIM1651.jpg">
            <img style="border-bottom: 0px; border-left: 0px; border-top: 0px; border-right: 0px" border="0" alt="HPIM1651" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/HandsonwiththeToshibaM750_12DE0/HPIM1651_thumb.jpg" width="244" height="203" />
          </a>
        </p>
        <p>
Speaking of slate mode the M750 has the same locking hinge that we first saw on the
R400 and have since seen on the M700 as well.  This eliminates the floppy head
that some other convertibles suffer from.  Basically you can only rotate the
screen when it is roughly 90 degrees to the base.  The rest of the time the bottom
corners lock into these latches on the corner of the base.
</p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/HandsonwiththeToshibaM750_12DE0/image_12.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/HandsonwiththeToshibaM750_12DE0/image_thumb_5.png" width="244" height="226" />
          </a>
        </p>
        <p>
Another nice feature - no doubt aimed at eliminating a common cause of breakages -
are the indicator arrows by the hinge that tell you which way to twist the screen. 
These are located front and back of the hinge.  The former is visible when in
laptop mode and the latter when in slate mode.
</p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/HandsonwiththeToshibaM750_12DE0/HPIM1658.jpg">
            <img style="border-bottom: 0px; border-left: 0px; border-top: 0px; border-right: 0px" border="0" alt="HPIM1658" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/HandsonwiththeToshibaM750_12DE0/HPIM1658_thumb.jpg" width="244" height="184" />
          </a>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/HandsonwiththeToshibaM750_12DE0/HPIM1657.jpg">
            <img style="border-bottom: 0px; border-left: 0px; border-top: 0px; border-right: 0px" border="0" alt="HPIM1657" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/HandsonwiththeToshibaM750_12DE0/HPIM1657_thumb.jpg" width="244" height="184" />
          </a>
        </p>
        <p>
Another great feature the M750 shares with many of its predecessors is the emergency
stylus.  I used it a couple of time when I had a M400 and wished for it many
times with some of my other tablets.  Basically if you flip the unit over there
is a panel by the docking station connector. 
</p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/HandsonwiththeToshibaM750_12DE0/HPIM1661.jpg">
            <img style="border-bottom: 0px; border-left: 0px; border-top: 0px; border-right: 0px" border="0" alt="HPIM1661" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/HandsonwiththeToshibaM750_12DE0/HPIM1661_thumb.jpg" width="244" height="184" />
          </a>
        </p>
        <p>
To open this you push a pen in the hole on the right end (ironically - if you have
lost your main stylus) and pull the other end to slide the cover to the left. 
You can then flip the cover over and - hey presto - a little mini stylus clipped into
the lid!  Very cool.  Note there is even a little button on it - this is
a real active digitizer stylus.
</p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/HandsonwiththeToshibaM750_12DE0/HPIM1662.jpg">
            <img style="border-bottom: 0px; border-left: 0px; border-top: 0px; border-right: 0px" border="0" alt="HPIM1662" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/HandsonwiththeToshibaM750_12DE0/HPIM1662_thumb.jpg" width="244" height="184" />
          </a>
        </p>
        <p>
Over all I am pretty impressed so far.  The M750 is a really nice device to work
with.  I have put Windows 7 on it and it runs very fast and so far pretty stable. 
I'll have more to say on that as I get into it.
</p>
        <img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=1c569b24-0c44-497f-bedc-a30070210f5b" />
      </body>
      <title>Hands on with the Toshiba M750</title>
      <guid isPermaLink="false">http://www.pringle.net.nz/blog/PermaLink,guid,1c569b24-0c44-497f-bedc-a30070210f5b.aspx</guid>
      <link>http://www.pringle.net.nz/blog/PermaLink,guid,1c569b24-0c44-497f-bedc-a30070210f5b.aspx</link>
      <pubDate>Sat, 08 Nov 2008 11:34:03 GMT</pubDate>
      <description>&lt;p&gt;
The fabulous folks over at Toshiba have loaned me a brand new &lt;a href="http://www.isd.toshiba.com.au/71/live.dll/topic/content/pu_prod_details.jsp?BV_SessionID=@@@@0849795463.1226139480@@@@&amp;amp;BV_EngineID=ccccadefjdedjgjcefecekfdffhdfgj.0&amp;amp;PRODOID=106037&amp;amp;CATOID=-8154"&gt;M750&lt;/a&gt; to
help with my early testing of the Windows 7 pre-beta.&amp;#160; While certainly not the
lightest tablet I have used this is a &lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/HandsonwiththeToshibaM750_12DE0/HPIM1643.jpg"&gt;&lt;img style="border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" border="0" alt="HPIM1643" align="right" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/HandsonwiththeToshibaM750_12DE0/HPIM1643_thumb.jpg" width="244" height="231" /&gt;&lt;/a&gt;seriously
fast workhorse of a tablet.&amp;#160; It really is the whole package.
&lt;/p&gt;
&lt;p&gt;
The unit I got came with: 
&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
Intel&amp;#174; Core&amp;#8482; 2 Duo P8600 (2.4GHz, 1066MHz FSB, 3MB L2 Cache) 
&lt;/li&gt;
&lt;li&gt;
12.1&amp;quot; WXGA 200NIT CSV Display(1280x800) 
&lt;/li&gt;
&lt;li&gt;
2GB DDR2 (800MHz) 
&lt;/li&gt;
&lt;li&gt;
200GB HDD (7200rpm) SATA 
&lt;/li&gt;
&lt;li&gt;
DVD SuperMulti Double/Dual Layer Drive 
&lt;/li&gt;
&lt;li&gt;
1Gbit LAN + AMT 4.0 
&lt;/li&gt;
&lt;li&gt;
WLAN (802.11a/g/n) 
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;
The screen is a Wacom dual mode digitizer, supporting both the active stylus and resistive
touch.
&lt;/p&gt;
&lt;p&gt;
Lets have a look at the outside of the device.&amp;#160; As we go through click the images
for a larger view.
&lt;/p&gt;
&lt;p&gt;
Down the left hand side we have 
&lt;/p&gt;
&lt;p&gt;
A - Venting.&amp;#160; This blows out a little air but not much and not very warm.
&lt;/p&gt;
&lt;p&gt;
B - Lock port
&lt;/p&gt;
&lt;p&gt;
C - A combination eSATA or powered USB port.&amp;#160; This particular USB port is suppose
to be able to charge your USB devices while the tablet is asleep, but I've not put
that to the test yet.
&lt;/p&gt;
&lt;p&gt;
D - A normal USB port
&lt;/p&gt;
&lt;p&gt;
E - PCMCIA slot
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/HandsonwiththeToshibaM750_12DE0/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/HandsonwiththeToshibaM750_12DE0/image_thumb_1.png" width="244" height="55" /&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
The front bezel has...
&lt;/p&gt;
&lt;p&gt;
A - a plathora of indicator lights - including ones for optional components such as
a second battery or a 3G WWAN radio.
&lt;/p&gt;
&lt;p&gt;
B - Hardware switch for the radios.&amp;#160; This is a nice touch.&amp;#160; I never remember
to turn my wireless off before I get on a plane :)
&lt;/p&gt;
&lt;p&gt;
C - IEEE1394 port.
&lt;/p&gt;
&lt;p&gt;
D,E - Headphone and mic jacks
&lt;/p&gt;
&lt;p&gt;
F - hard to see in the picture but a volume control wheel.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/HandsonwiththeToshibaM750_12DE0/image_6.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/HandsonwiththeToshibaM750_12DE0/image_thumb_2.png" width="244" height="74" /&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
Down the right side and we have
&lt;/p&gt;
&lt;p&gt;
A - The stylus dock.
&lt;/p&gt;
&lt;p&gt;
B - A multi card reader
&lt;/p&gt;
&lt;p&gt;
C - A slimline DVD dual layer recorder
&lt;/p&gt;
&lt;p&gt;
D - A modem port (I can't remember the last time I used a modem - seems like a waste
of space to me!)
&lt;/p&gt;
&lt;p&gt;
The back side is fairly sparten.
&lt;/p&gt;
&lt;p&gt;
A - Another USB port.
&lt;/p&gt;
&lt;p&gt;
B - VGA Output
&lt;/p&gt;
&lt;p&gt;
C - Power input 
&lt;/p&gt;
&lt;p&gt;
D - Gigabit Ethernet port
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/HandsonwiththeToshibaM750_12DE0/image_10.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/HandsonwiththeToshibaM750_12DE0/image_thumb_4.png" width="244" height="73" /&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
The top of the screen sports an inbuilt web cam and microphone.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/HandsonwiththeToshibaM750_12DE0/HPIM1659.jpg"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; border-top: 0px; border-right: 0px" border="0" alt="HPIM1659" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/HandsonwiththeToshibaM750_12DE0/HPIM1659_thumb.jpg" width="244" height="184" /&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
There are also a host of buttons at the bottom of the screen - or on the front bezel
when in slate mode.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/HandsonwiththeToshibaM750_12DE0/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/HandsonwiththeToshibaM750_12DE0/image_thumb_3.png" width="244" height="103" /&gt;&lt;/a&gt;&amp;#160;
&lt;/p&gt;
&lt;p&gt;
And a fingerprint reader on the other end of the same edge, which is also well placed
for ease of access in both laptop mode and slate mode.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/HandsonwiththeToshibaM750_12DE0/HPIM1651.jpg"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; border-top: 0px; border-right: 0px" border="0" alt="HPIM1651" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/HandsonwiththeToshibaM750_12DE0/HPIM1651_thumb.jpg" width="244" height="203" /&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
Speaking of slate mode the M750 has the same locking hinge that we first saw on the
R400 and have since seen on the M700 as well.&amp;#160; This eliminates the floppy head
that some other convertibles suffer from.&amp;#160; Basically you can only rotate the
screen when it is roughly 90 degrees to the base.&amp;#160; The rest of the time the bottom
corners lock into these latches on the corner of the base.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/HandsonwiththeToshibaM750_12DE0/image_12.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/HandsonwiththeToshibaM750_12DE0/image_thumb_5.png" width="244" height="226" /&gt;&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
Another nice feature - no doubt aimed at eliminating a common cause of breakages -
are the indicator arrows by the hinge that tell you which way to twist the screen.&amp;#160;
These are located front and back of the hinge.&amp;#160; The former is visible when in
laptop mode and the latter when in slate mode.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/HandsonwiththeToshibaM750_12DE0/HPIM1658.jpg"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; border-top: 0px; border-right: 0px" border="0" alt="HPIM1658" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/HandsonwiththeToshibaM750_12DE0/HPIM1658_thumb.jpg" width="244" height="184" /&gt;&lt;/a&gt; &lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/HandsonwiththeToshibaM750_12DE0/HPIM1657.jpg"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; border-top: 0px; border-right: 0px" border="0" alt="HPIM1657" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/HandsonwiththeToshibaM750_12DE0/HPIM1657_thumb.jpg" width="244" height="184" /&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
Another great feature the M750 shares with many of its predecessors is the emergency
stylus.&amp;#160; I used it a couple of time when I had a M400 and wished for it many
times with some of my other tablets.&amp;#160; Basically if you flip the unit over there
is a panel by the docking station connector. 
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/HandsonwiththeToshibaM750_12DE0/HPIM1661.jpg"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; border-top: 0px; border-right: 0px" border="0" alt="HPIM1661" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/HandsonwiththeToshibaM750_12DE0/HPIM1661_thumb.jpg" width="244" height="184" /&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
To open this you push a pen in the hole on the right end (ironically - if you have
lost your main stylus) and pull the other end to slide the cover to the left.&amp;#160;
You can then flip the cover over and - hey presto - a little mini stylus clipped into
the lid!&amp;#160; Very cool.&amp;#160; Note there is even a little button on it - this is
a real active digitizer stylus.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/HandsonwiththeToshibaM750_12DE0/HPIM1662.jpg"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; border-top: 0px; border-right: 0px" border="0" alt="HPIM1662" src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/HandsonwiththeToshibaM750_12DE0/HPIM1662_thumb.jpg" width="244" height="184" /&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
Over all I am pretty impressed so far.&amp;#160; The M750 is a really nice device to work
with.&amp;#160; I have put Windows 7 on it and it runs very fast and so far pretty stable.&amp;#160;
I'll have more to say on that as I get into it.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=1c569b24-0c44-497f-bedc-a30070210f5b" /&gt;</description>
      <comments>http://www.pringle.net.nz/blog/CommentView,guid,1c569b24-0c44-497f-bedc-a30070210f5b.aspx</comments>
      <category>M750</category>
      <category>Toshiba</category>
      <category>Windows 7</category>
    </item>
    <item>
      <trackback:ping>http://www.pringle.net.nz/blog/Trackback.aspx?guid=adf6ca4a-b142-49b4-8ed4-1d93e4b9969b</trackback:ping>
      <pingback:server>http://www.pringle.net.nz/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.pringle.net.nz/blog/PermaLink,guid,adf6ca4a-b142-49b4-8ed4-1d93e4b9969b.aspx</pingback:target>
      <dc:creator>Craig Pringle</dc:creator>
      <wfw:comment>http://www.pringle.net.nz/blog/CommentView,guid,adf6ca4a-b142-49b4-8ed4-1d93e4b9969b.aspx</wfw:comment>
      <wfw:commentRss>http://www.pringle.net.nz/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=adf6ca4a-b142-49b4-8ed4-1d93e4b9969b</wfw:commentRss>
      <slash:comments>1</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
I've been playing with Windows 7 as time permits (which has not been a lot) over the
last couple of days.  While I am not yet in a position to do a full review, but
as I scratch the surface I am starting to uncover some cool features.
</p>
        <p>
Here is a of a feature I found by accident.  As you drag a window to the edge
of the screen it will turn into a transparent window and "snap" to a certain
pre-defined position.   If you drag it up to the top it will snap to full
screen view.  If you drag it the the left or right edge it will snap to that
edge and take up half of the screen area.  
</p>
        <div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px" id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:6455eb4e-b543-46ff-bd9d-1ac409395c10" class="wlWriterSmartContent">
          <div id="f52360cb-c405-4fb2-b269-5ecd9aa82b0a" style="margin: 0px; padding: 0px; display: inline;">
            <div>
              <a href="http://www.youtube.com/watch?v=4TnWwxuPZFM" target="_new">
                <img src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/DockingWindowsinWindows7_FE9B/video9d6af3374e78.jpg" galleryimg="no" onload="var downlevelDiv = document.getElementById('f52360cb-c405-4fb2-b269-5ecd9aa82b0a'); downlevelDiv.innerHTML = &quot;&lt;div&gt;&lt;object width=\&quot;425\&quot; height=\&quot;355\&quot;&gt;&lt;param name=\&quot;movie\&quot; value=\&quot;http://www.youtube.com/v/4TnWwxuPZFM\&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/4TnWwxuPZFM\&quot; type=\&quot;application/x-shockwave-flash\&quot; wmode=\&quot;transparent\&quot; width=\&quot;425\&quot; height=\&quot;355\&quot;&gt;&lt;\/embed&gt;&lt;\/object&gt;&lt;\/div&gt;&quot;;" alt="" />
              </a>
            </div>
          </div>
        </div>
        <p>
Very nice.
</p>
        <img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=adf6ca4a-b142-49b4-8ed4-1d93e4b9969b" />
      </body>
      <title>Docking Windows in Windows 7</title>
      <guid isPermaLink="false">http://www.pringle.net.nz/blog/PermaLink,guid,adf6ca4a-b142-49b4-8ed4-1d93e4b9969b.aspx</guid>
      <link>http://www.pringle.net.nz/blog/PermaLink,guid,adf6ca4a-b142-49b4-8ed4-1d93e4b9969b.aspx</link>
      <pubDate>Wed, 05 Nov 2008 10:41:35 GMT</pubDate>
      <description>&lt;p&gt;
I've been playing with Windows 7 as time permits (which has not been a lot) over the
last couple of days.&amp;#160; While I am not yet in a position to do a full review, but
as I scratch the surface I am starting to uncover some cool features.
&lt;/p&gt;
&lt;p&gt;
Here is a of a feature I found by accident.&amp;#160; As you drag a window to the edge
of the screen it will turn into a transparent window and &amp;quot;snap&amp;quot; to a certain
pre-defined position.&amp;#160;&amp;#160; If you drag it up to the top it will snap to full
screen view.&amp;#160; If you drag it the the left or right edge it will snap to that
edge and take up half of the screen area.&amp;#160; 
&lt;/p&gt;
&lt;div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px" id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:6455eb4e-b543-46ff-bd9d-1ac409395c10" class="wlWriterSmartContent"&gt;
&lt;div id="f52360cb-c405-4fb2-b269-5ecd9aa82b0a" style="margin: 0px; padding: 0px; display: inline;"&gt;
&lt;div&gt;&lt;a href="http://www.youtube.com/watch?v=4TnWwxuPZFM" target="_new"&gt;&lt;img src="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/DockingWindowsinWindows7_FE9B/video9d6af3374e78.jpg" galleryimg="no" onload="var downlevelDiv = document.getElementById('f52360cb-c405-4fb2-b269-5ecd9aa82b0a'); downlevelDiv.innerHTML = &amp;quot;&amp;lt;div&amp;gt;&amp;lt;object width=\&amp;quot;425\&amp;quot; height=\&amp;quot;355\&amp;quot;&amp;gt;&amp;lt;param name=\&amp;quot;movie\&amp;quot; value=\&amp;quot;http://www.youtube.com/v/4TnWwxuPZFM\&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/4TnWwxuPZFM\&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;355\&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;
Very nice.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=adf6ca4a-b142-49b4-8ed4-1d93e4b9969b" /&gt;</description>
      <comments>http://www.pringle.net.nz/blog/CommentView,guid,adf6ca4a-b142-49b4-8ed4-1d93e4b9969b.aspx</comments>
      <category>Windows 7</category>
    </item>
    <item>
      <trackback:ping>http://www.pringle.net.nz/blog/Trackback.aspx?guid=0f575128-6ed1-4f99-891f-e8e4682403f5</trackback:ping>
      <pingback:server>http://www.pringle.net.nz/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.pringle.net.nz/blog/PermaLink,guid,0f575128-6ed1-4f99-891f-e8e4682403f5.aspx</pingback:target>
      <dc:creator>Craig Pringle</dc:creator>
      <wfw:comment>http://www.pringle.net.nz/blog/CommentView,guid,0f575128-6ed1-4f99-891f-e8e4682403f5.aspx</wfw:comment>
      <wfw:commentRss>http://www.pringle.net.nz/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=0f575128-6ed1-4f99-891f-e8e4682403f5</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Once I had Windows 7 (the Milestone 3 build) up and running one of the things I decided
to try was to hold down the Windows key and press all the letter keys to see if there
were any new keyboard shortcuts exposing new features.  And guess what - there
was!
</p>
        <p>
Pressing Windows+P shows the dialogue below...
</p>
        <p>
          <a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/ConnectingaProjectorisEasyinWindows7_1262C/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/ConnectingaProjectorisEasyinWindows7_1262C/image_thumb.png" width="244" height="63" />
          </a>
        </p>
        <p>
...which lets you quickly choose an alternate display output method.
</p>
        <p>
Running left to right the options are:
</p>
        <ul>
          <li>
Laptop only</li>
          <li>
Clone display to projector</li>
          <li>
Extend desktop to projector</li>
          <li>
Projector only</li>
        </ul>
        <p>
I love the Mobility Centre in Vista, but this takes the cake!  What a great feature.
</p>
        <img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=0f575128-6ed1-4f99-891f-e8e4682403f5" />
      </body>
      <title>Connecting a Projector is Easy in Windows 7</title>
      <guid isPermaLink="false">http://www.pringle.net.nz/blog/PermaLink,guid,0f575128-6ed1-4f99-891f-e8e4682403f5.aspx</guid>
      <link>http://www.pringle.net.nz/blog/PermaLink,guid,0f575128-6ed1-4f99-891f-e8e4682403f5.aspx</link>
      <pubDate>Fri, 31 Oct 2008 09:57:48 GMT</pubDate>
      <description>&lt;p&gt;
Once I had Windows 7 (the Milestone 3 build) up and running one of the things I decided
to try was to hold down the Windows key and press all the letter keys to see if there
were any new keyboard shortcuts exposing new features.&amp;#160; And guess what - there
was!
&lt;/p&gt;
&lt;p&gt;
Pressing Windows+P shows the dialogue below...
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pringle.net.nz/blog/content/binary/WindowsLiveWriter/ConnectingaProjectorisEasyinWindows7_1262C/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/ConnectingaProjectorisEasyinWindows7_1262C/image_thumb.png" width="244" height="63" /&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
...which lets you quickly choose an alternate display output method.
&lt;/p&gt;
&lt;p&gt;
Running left to right the options are:
&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
Laptop only&lt;/li&gt;
&lt;li&gt;
Clone display to projector&lt;/li&gt;
&lt;li&gt;
Extend desktop to projector&lt;/li&gt;
&lt;li&gt;
Projector only&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;
I love the Mobility Centre in Vista, but this takes the cake!&amp;#160; What a great feature.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=0f575128-6ed1-4f99-891f-e8e4682403f5" /&gt;</description>
      <comments>http://www.pringle.net.nz/blog/CommentView,guid,0f575128-6ed1-4f99-891f-e8e4682403f5.aspx</comments>
      <category>Windows 7</category>
    </item>
    <item>
      <trackback:ping>http://www.pringle.net.nz/blog/Trackback.aspx?guid=23ae046d-9781-4283-854d-74ff7757a94e</trackback:ping>
      <pingback:server>http://www.pringle.net.nz/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.pringle.net.nz/blog/PermaLink,guid,23ae046d-9781-4283-854d-74ff7757a94e.aspx</pingback:target>
      <dc:creator>Craig Pringle</dc:creator>
      <wfw:comment>http://www.pringle.net.nz/blog/CommentView,guid,23ae046d-9781-4283-854d-74ff7757a94e.aspx</wfw:comment>
      <wfw:commentRss>http://www.pringle.net.nz/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=23ae046d-9781-4283-854d-74ff7757a94e</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
I was lucky enough to be one of those invited to preview the Windows 7 Milestone 3
build that was released at PDC this week.  I downloaded it last night and installed
it on an Acer Ferrari 1000 notebook I had lying around.  
</p>
        <p>
The install experience was remarkable - for such an early build the install was really
smooth.  I did not sit and watch it build but it had finished the bulk of the
install and was waiting for me to enter my name inside of an hour.
</p>
        <p>
Another interesting event during the install was being given the opportunity to enter
my wireless settings during the initial setup routine.  
</p>
        <p>
After the install completed I logged in.  Again it was remarkable.  For
such an early build the it looks pretty good.  At this stage very Vista-like,
but it actually looked fairly nice and seemed at least as responsive on Vista on the
same hardware.
</p>
        <p>
Next up I checked Device Manager to see what hardware had not been installed. 
This was my next surprise.  A generic display driver was being used.  The
inbuilt webcam and the multicard reader did not have drivers.  Everything else
was detected.  
</p>
        <p>
Contrasting this with my first experience with an early Vista build - that was very
different.  It looked unfinished.  Driver support was awful and it ran like
a dog.
</p>
        <p>
There are fewer "under the hood" architecture changes in Windows 7 and as
such application and driver support is pretty good even at this early stage.  
</p>
        <p>
Overall I am happy and intrigued by this early build.  I've found some nice features
already and there are some noticeable absentees.  That is a another story. 
I've not even had a chance to check out the tablet bits yet.  I'm looking for
some more hardware to test out this build on.  Stay tuned!
</p>
        <img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=23ae046d-9781-4283-854d-74ff7757a94e" />
      </body>
      <title>Windows 7 M3 Install Experience</title>
      <guid isPermaLink="false">http://www.pringle.net.nz/blog/PermaLink,guid,23ae046d-9781-4283-854d-74ff7757a94e.aspx</guid>
      <link>http://www.pringle.net.nz/blog/PermaLink,guid,23ae046d-9781-4283-854d-74ff7757a94e.aspx</link>
      <pubDate>Thu, 30 Oct 2008 09:56:49 GMT</pubDate>
      <description>&lt;p&gt;
I was lucky enough to be one of those invited to preview the Windows 7 Milestone 3
build that was released at PDC this week.&amp;#160; I downloaded it last night and installed
it on an Acer Ferrari 1000 notebook I had lying around.&amp;#160; 
&lt;/p&gt;
&lt;p&gt;
The install experience was remarkable - for such an early build the install was really
smooth.&amp;#160; I did not sit and watch it build but it had finished the bulk of the
install and was waiting for me to enter my name inside of an hour.
&lt;/p&gt;
&lt;p&gt;
Another interesting event during the install was being given the opportunity to enter
my wireless settings during the initial setup routine.&amp;#160; 
&lt;/p&gt;
&lt;p&gt;
After the install completed I logged in.&amp;#160; Again it was remarkable.&amp;#160; For
such an early build the it looks pretty good.&amp;#160; At this stage very Vista-like,
but it actually looked fairly nice and seemed at least as responsive on Vista on the
same hardware.
&lt;/p&gt;
&lt;p&gt;
Next up I checked Device Manager to see what hardware had not been installed.&amp;#160;
This was my next surprise.&amp;#160; A generic display driver was being used.&amp;#160; The
inbuilt webcam and the multicard reader did not have drivers.&amp;#160; Everything else
was detected.&amp;#160; 
&lt;/p&gt;
&lt;p&gt;
Contrasting this with my first experience with an early Vista build - that was very
different.&amp;#160; It looked unfinished.&amp;#160; Driver support was awful and it ran like
a dog.
&lt;/p&gt;
&lt;p&gt;
There are fewer &amp;quot;under the hood&amp;quot; architecture changes in Windows 7 and as
such application and driver support is pretty good even at this early stage.&amp;#160; 
&lt;/p&gt;
&lt;p&gt;
Overall I am happy and intrigued by this early build.&amp;#160; I've found some nice features
already and there are some noticeable absentees.&amp;#160; That is a another story.&amp;#160;
I've not even had a chance to check out the tablet bits yet.&amp;#160; I'm looking for
some more hardware to test out this build on.&amp;#160; Stay tuned!
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.pringle.net.nz/blog/aggbug.ashx?id=23ae046d-9781-4283-854d-74ff7757a94e" /&gt;</description>
      <comments>http://www.pringle.net.nz/blog/CommentView,guid,23ae046d-9781-4283-854d-74ff7757a94e.aspx</comments>
      <category>Windows 7</category>
    </item>
  </channel>
</rss>