<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/atom.xsl" media="screen"?><feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-US"><title type="html">Scattered Notes</title><subtitle type="html">Stefano Mapelli's weblog</subtitle><id>http://blogs.msdn.com/b/mapo/atom.aspx</id><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/mapo/" /><link rel="self" type="application/atom+xml" href="http://blogs.msdn.com/b/mapo/atom.aspx" /><generator uri="http://telligent.com" version="5.6.583.17018">Telligent Community 5.6.583.17018 (Build: 5.6.583.17018)</generator><updated>2009-09-11T17:38:00Z</updated><entry><title>Forcing handle creation in a .NET Windows Forms control</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/mapo/archive/2011/04/27/forcing-handle-creation-in-a-net-windows-forms-control.aspx" /><id>http://blogs.msdn.com/b/mapo/archive/2011/04/27/forcing-handle-creation-in-a-net-windows-forms-control.aspx</id><published>2011-04-27T09:31:00Z</published><updated>2011-04-27T09:31:00Z</updated><content type="html">&lt;p&gt;I believe no serious .NET developer has never faced a&amp;nbsp;System.InvalidOperationException with an error message stating&amp;nbsp;"Invoke or BeginInvoke cannot be called on a control until the window handle has been created." when trying,&amp;nbsp;for example, to add text to a RichTextBox control. This type of error is caused by the fact that the underlying Windows control handle has not yet been created. You can test handle creation by calling the &lt;span style="font-family: Consolas; font-size: small;"&gt;IsHandleCreated&lt;/span&gt; method on the control. To force creation of the control's handle you can simply try reading the &lt;span style="font-family: Consolas; font-size: small;"&gt;Handle&lt;/span&gt; property like this:&lt;/p&gt;
&lt;p style="FONT-FAMILY: "&gt;&lt;span style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp; if (!mycontrol.IsHandleCreated)&lt;br /&gt;&amp;nbsp;&amp;nbsp; {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // This call forces creation of the control's handle.&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp; IntPtr handle = mycontrol.Handle;&lt;br /&gt;&amp;nbsp;&amp;nbsp; }&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;This code works because the &lt;span style="font-family: Consolas; font-size: small;"&gt;Handle&lt;/span&gt; property in the System.Windows.Forms.Control class makes a call to the protected method &lt;span style="font-family: Consolas; font-size: small;"&gt;CreateHandle&lt;/span&gt; if the control's&amp;nbsp;handle has not yet been created:&lt;/p&gt;
&lt;p style="FONT-FAMILY: "&gt;&lt;span style="font-family: courier new,courier;"&gt;public IntPtr get_Handle()&lt;br /&gt;{&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if ((checkForIllegalCrossThreadCalls &amp;amp;&amp;amp; !inCrossThreadSafeCall) &amp;amp;&amp;amp; this.InvokeRequired)&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; throw new InvalidOperationException(SR.GetString("IllegalCrossThreadCall", new object[] { this.Name }));&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (!this.IsHandleCreated)&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; this.CreateHandle();&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; return this.HandleInternal;&lt;br /&gt;}&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10158548" width="1" height="1"&gt;</content><author><name>mapo</name><uri>http://blogs.msdn.com/mapo/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>Free "Programming Windows Phone 7" ebook by Charles Petzold</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/mapo/archive/2011/02/24/free-quot-programming-windows-phone-7-quot-ebook-by-charles-petzold.aspx" /><id>http://blogs.msdn.com/b/mapo/archive/2011/02/24/free-quot-programming-windows-phone-7-quot-ebook-by-charles-petzold.aspx</id><published>2011-02-24T12:10:00Z</published><updated>2011-02-24T12:10:00Z</updated><content type="html">&lt;p&gt;If you are interested in learning about software development on the new Microsoft Windows Phone 7 platform &lt;a href="http://www.microsoft.com/downloads/en/details.aspx?FamilyID=bb8f5eb6-8214-4387-bf02-f78f314a74eb"&gt;grab your copy&lt;/a&gt; of the over 1000 pages long ebook "Programming Windows Phone 7" by Charles Petzold. Topics covered are both SilverLight and XNA programming on Microsoft Windows Phone 7. There is also source code to go along with the book ... &lt;a href="http://download.microsoft.com/download/5/0/A/50A39509-D015-410F-A8F2-A5511E5A988D/Microsoft_Press_ebook_Programming_Windows_Phone_7_Sample_Code.zip"&gt;here is the C# version&lt;/a&gt; of the samples and &lt;a href="http://download.microsoft.com/download/5/0/A/50A39509-D015-410F-A8F2-A5511E5A988D/Microsoft_Press_ebook_ProgWP7_Sample_Code_VB.zip"&gt;here is the VB.NET version&lt;/a&gt; of those same samples.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10133486" width="1" height="1"&gt;</content><author><name>mapo</name><uri>http://blogs.msdn.com/mapo/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>"Effective Windows PowerShell" free ebook</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/mapo/archive/2010/12/20/quot-effective-windows-powershell-quot-free-ebook.aspx" /><id>http://blogs.msdn.com/b/mapo/archive/2010/12/20/quot-effective-windows-powershell-quot-free-ebook.aspx</id><published>2010-12-20T13:57:58Z</published><updated>2010-12-20T13:57:58Z</updated><content type="html">&lt;p&gt;&lt;a href="http://keithhill.spaces.live.com/default.aspx"&gt;Keith Hill&lt;/a&gt; has turned a set of blog posts into an interesting 61 pages long PowerShell ebook. Download your own copy &lt;a href="http://keithhill.spaces.live.com/blog/cns!5A8D2641E0963A97!6930.entry"&gt;here&lt;/a&gt;.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10107207" width="1" height="1"&gt;</content><author><name>mapo</name><uri>http://blogs.msdn.com/mapo/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>Want to integrate Bing Maps or Bing searching into your site?</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/mapo/archive/2010/10/22/want-to-integrate-bing-maps-or-bing-searching-into-your-site.aspx" /><id>http://blogs.msdn.com/b/mapo/archive/2010/10/22/want-to-integrate-bing-maps-or-bing-searching-into-your-site.aspx</id><published>2010-10-22T17:55:39Z</published><updated>2010-10-22T17:55:39Z</updated><content type="html">&lt;p&gt;If you need to integrate Bing's searching capabilities or Bing Maps into your web site you should take a look at a couple of web application toolkits freely available from this &lt;a href="http://www.microsoft.com/web/webapptoolkits/"&gt;page&lt;/a&gt;.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10079657" width="1" height="1"&gt;</content><author><name>mapo</name><uri>http://blogs.msdn.com/mapo/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>Quick introduction to Microsoft Expression Studio 4</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/mapo/archive/2010/10/22/quick-introduction-to-microsoft-expression-studio-4.aspx" /><id>http://blogs.msdn.com/b/mapo/archive/2010/10/22/quick-introduction-to-microsoft-expression-studio-4.aspx</id><published>2010-10-22T17:22:00Z</published><updated>2010-10-22T17:22:00Z</updated><content type="html">&lt;p&gt;If you are interested in quickly understanding more about Microsoft Expression Studio 4, on &lt;a href="http://expression.microsoft.com/en-us/cc268169.aspx"&gt;this page&lt;/a&gt; you will find short videos that introduce you to most of the tools in the Microsoft Expression suite (i.e. Expression Web, Expression Blend, Expression SketchFlow, Expresssion Encoder). On the same page you'll find introductory tutorials to Microsoft SilverLight and to good design practices such as separation of HTML code from CSS formatting stylesheets. For videos on Expression Design look &lt;a href="http://expression.microsoft.com/en-us/cc197142.aspx"&gt;here&lt;/a&gt;. A couple of quick user guides are also available &lt;a href="http://www.microsoft.com/downloads/en/details.aspx?FamilyID=a01c8bed-69a1-4f0b-b439-2deac5d44a05&amp;amp;displaylang=en"&gt;here&lt;/a&gt; both for version 3 and 4 of Microsoft Expression suite.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10079640" width="1" height="1"&gt;</content><author><name>mapo</name><uri>http://blogs.msdn.com/mapo/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>Want to learn Microsoft SilverLight?</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/mapo/archive/2010/10/22/want-to-learn-microsoft-silverlight.aspx" /><id>http://blogs.msdn.com/b/mapo/archive/2010/10/22/want-to-learn-microsoft-silverlight.aspx</id><published>2010-10-22T17:12:28Z</published><updated>2010-10-22T17:12:28Z</updated><content type="html">&lt;p&gt;Are you interested in learning to develop using Microsoft SilverLight and aren't&amp;nbsp;sure where to start from? On this&amp;nbsp;&lt;a href="http://expression.microsoft.com/en-us/dd565865.aspx"&gt;page&lt;/a&gt;&amp;nbsp;you'll find links to short videos that will quickly introduce you to the technology and the tools.&amp;nbsp;Afterwards, to start building stronger skills you can go &lt;a href="http://www.microsoft.com/expression/resources/BlendTraining/"&gt;here&lt;/a&gt;&amp;nbsp;where learning materials (mostly videos) to keep you busy for five full&amp;nbsp;days are provided. Finally, if you want to play with code, don't forget to download the "Silverlight 4 Training Course" from &lt;a href="http://www.microsoft.com/downloads/en/details.aspx?familyid=24CEA29E-042E-41C9-AA16-684A0CA5F5DB&amp;amp;displaylang=en"&gt;this page&lt;/a&gt;. This training course contains&amp;nbsp;extensive hands-on-labs&amp;nbsp;that will&amp;nbsp;probably&amp;nbsp;satisfy your deside to get your hands a little dirty.&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10079634" width="1" height="1"&gt;</content><author><name>mapo</name><uri>http://blogs.msdn.com/mapo/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>Prototyping and storyboarding with Microsoft SketchFlow</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/mapo/archive/2010/10/22/prototyping-and-storyboarding-with-microsoft-sketchflow.aspx" /><id>http://blogs.msdn.com/b/mapo/archive/2010/10/22/prototyping-and-storyboarding-with-microsoft-sketchflow.aspx</id><published>2010-10-22T16:46:00Z</published><updated>2010-10-22T16:46:00Z</updated><content type="html">&lt;p&gt;If you are interested in learning about Microsoft SketchFlow, the tool that was first provided as part of Microsoft Expression Blend 3 for rapid, iterative and cost effective design and prototyping of application user interfaces, take a look &lt;a href="http://expression.microsoft.com/en-us/ee806443.aspx"&gt;here&lt;/a&gt;. From this page you can download 12 training modules complete with videos, demo code and documentation for each module.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10079607" width="1" height="1"&gt;</content><author><name>mapo</name><uri>http://blogs.msdn.com/mapo/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>Training, videos, webcasts and virtual labs on Microsoft products, solutions and technologies</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/mapo/archive/2010/09/28/training-videos-webcasts-and-virtual-labs-on-microsoft-products-solutions-and-technologies.aspx" /><id>http://blogs.msdn.com/b/mapo/archive/2010/09/28/training-videos-webcasts-and-virtual-labs-on-microsoft-products-solutions-and-technologies.aspx</id><published>2010-09-28T09:19:00Z</published><updated>2010-09-28T09:19:00Z</updated><content type="html">&lt;p&gt;I gathered&amp;nbsp;a list of leaning resources&amp;nbsp;on Microsoft products, solutions and technologies and then&amp;nbsp;tought they might be useful to others too. Following are links to free training, videos, webcasts and virtual labs that will hopefully satisfy all of your knowledge needs. If you have links to additional learning resources let me know and I will add them to the list.&lt;/p&gt;
&lt;p&gt;Microsoft Showcase&lt;br /&gt;&lt;a href="http://www.microsoft.com/showcase/en/us/default.aspx"&gt;http://www.microsoft.com/showcase/en/us/default.aspx&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Channel 9&lt;br /&gt;&lt;a href="http://channel9.msdn.com/"&gt;http://channel9.msdn.com/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Training Courses (identity management, Office 2010, SharePoint 2010, SilverLight 4, Visual Studio 2010, Windows Azure, Windows Phone 7, etc.)&lt;br /&gt;&lt;a href="http://channel9.msdn.com/Learn/Courses"&gt;http://channel9.msdn.com/Learn/Courses&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;MSDN How Do I videos&lt;br /&gt;&lt;a href="http://msdn.microsoft.com/en-us/bb629407.aspx"&gt;http://msdn.microsoft.com/en-us/bb629407.aspx&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;TechNet How Do I videos&lt;br /&gt;&lt;a href="http://technet.microsoft.com/en-us/cc138021.aspx"&gt;http://technet.microsoft.com/en-us/cc138021.aspx&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;MIX 2010 videos&lt;br /&gt;&lt;a href="http://live.visitmix.com/Videos"&gt;http://live.visitmix.com/Videos&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;TechEd Online&lt;br /&gt;&lt;a href="http://www.msteched.com/"&gt;http://www.msteched.com/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Microsoft TechDays 2010 Belgium&lt;br /&gt;&lt;a href="http://www.microsoft.com/belux/techdays/2010/"&gt;http://www.microsoft.com/belux/techdays/2010/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Microsoft DevDays 2010 Netherlands&lt;br /&gt;&lt;a href="http://www.devdays.nl/Agenda.aspx?pid=66&amp;amp;lang=en"&gt;http://www.devdays.nl/Agenda.aspx?pid=66&amp;amp;lang=en&lt;/a&gt;&amp;nbsp;(download slide decks only)&lt;/p&gt;
&lt;p&gt;Windows 7 videos&lt;br /&gt;&lt;a href="http://windows.microsoft.com/en-US/windows7/products/videos"&gt;http://windows.microsoft.com/en-US/windows7/products/videos&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;PDC 2010 (professional developer conference)&lt;br /&gt;&lt;a href="http://player.microsoftpdc.com/schedule/sessions"&gt;http://player.microsoftpdc.com/schedule/sessions&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;PDC 2009 sessions on-demand&lt;br /&gt;&lt;a href="http://www.microsoftpdc.com/2009"&gt;http://www.microsoftpdc.com/2009&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;ASP.NET&lt;br /&gt;&lt;a href="http://www.asp.net/get-started"&gt;http://www.asp.net/get-started&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;SilverLight&lt;br /&gt;&lt;a href="http://www.silverlight.net/learn/"&gt;http://www.silverlight.net/learn/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;WPF &amp;amp; Windows Forms&lt;br /&gt;&lt;a href="http://windowsclient.net/getstarted/"&gt;http://windowsclient.net/getstarted/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Microsoft Expression&lt;br /&gt;&lt;a href="http://expression.microsoft.com/en-us/cc136522.aspx"&gt;http://expression.microsoft.com/en-us/cc136522.aspx&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Microsoft Surface&lt;br /&gt;&lt;a href="http://www.microsoft.com/surface/en/us/Pages/Technical/Training.aspx"&gt;http://www.microsoft.com/surface/en/us/Pages/Technical/Training.aspx&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Virtual Labs (MSDN &amp;amp; TechNet Virtual Labs)&lt;br /&gt;&lt;a href="http://www.microsoft.com/events/vlabs/default.mspx"&gt;http://www.microsoft.com/events/vlabs/default.mspx&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;MICROSOFT OFFICE &lt;/p&gt;
&lt;p style="PADDING-LEFT: 30px"&gt;How Do I Videos for Office Developers&lt;br /&gt;&lt;a href="http://msdn.microsoft.com/en-us/office/bb496949.aspx"&gt;http://msdn.microsoft.com/en-us/office/bb496949.aspx&lt;/a&gt;&lt;/p&gt;
&lt;p style="PADDING-LEFT: 30px"&gt;Office Developer How-to Center&lt;br /&gt;&lt;a href="http://msdn.microsoft.com/en-us/office/bb266408.aspx"&gt;http://msdn.microsoft.com/en-us/office/bb266408.aspx&lt;/a&gt;&lt;/p&gt;
&lt;p style="PADDING-LEFT: 30px"&gt;Office 2010 training&lt;br /&gt;&lt;a href="http://office.microsoft.com/en-us/training/"&gt;http://office.microsoft.com/en-us/training/&lt;/a&gt;&lt;/p&gt;
&lt;p style="PADDING-LEFT: 30px"&gt;Backstage with Office 2010&lt;br /&gt;&lt;a href="http://www.office2010themovie.com/"&gt;http://www.office2010themovie.com/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;WEBCASTS and VIDEOS&lt;/p&gt;
&lt;p style="PADDING-LEFT: 30px"&gt;On-demand webcasts&lt;br /&gt;&lt;a href="http://www.microsoft.com/events/webcasts/ondemand.mspx"&gt;http://www.microsoft.com/events/webcasts/ondemand.mspx&lt;/a&gt;&lt;/p&gt;
&lt;p style="PADDING-LEFT: 30px"&gt;Monthly Archived Webcasts&lt;br /&gt;&lt;a href="http://www.microsoft.com/events/webcasts/library/default.mspx"&gt;http://www.microsoft.com/events/webcasts/library/default.mspx&lt;/a&gt;&lt;/p&gt;
&lt;p style="PADDING-LEFT: 30px"&gt;Online Media Series: webcasts, videos, virtual labs and podcasts organized based on technology and on job role (dev, IT professional, IT&amp;nbsp;executive, business executive, etc.)&lt;br /&gt;&lt;a href="http://www.microsoft.com/events/series/default.aspx"&gt;http://www.microsoft.com/events/series/default.aspx&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10068595" width="1" height="1"&gt;</content><author><name>mapo</name><uri>http://blogs.msdn.com/mapo/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>Migrating from WF 3.0/3.5 to WF 4.0</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/mapo/archive/2010/09/27/migrating-from-wf-3-0-3-5-to-wf-4-0.aspx" /><id>http://blogs.msdn.com/b/mapo/archive/2010/09/27/migrating-from-wf-3-0-3-5-to-wf-4-0.aspx</id><published>2010-09-27T15:16:00Z</published><updated>2010-09-27T15:16:00Z</updated><content type="html">&lt;p&gt;A full set of documents have been released at the beginning of the year to&amp;nbsp;suggest migration strategies of legary WF 3.0/3.5 code to the new WF 4.0 platform. You may download them all &lt;a href="http://www.microsoft.com/downloads/en/details.aspx?FamilyID=bd94c260-b5e0-4d12-93ec-53567505e685"&gt;here&lt;/a&gt;. Documents&amp;nbsp;seem to refer to version beta 2 of WF 4.0 and thus a few details might have changed in the final release of the new WF 4.0 technology. Along with these documents, code samples have also been released on &lt;a href="http://code.msdn.microsoft.com/wf4migration"&gt;Codeplex&lt;/a&gt;.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10068220" width="1" height="1"&gt;</content><author><name>mapo</name><uri>http://blogs.msdn.com/mapo/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>Prevent date/time synchronization in a Windows Virtual PC virtual machine</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/mapo/archive/2010/08/24/prevent-date-time-synchronization-in-a-windows-virtual-pc-virtual-machine.aspx" /><id>http://blogs.msdn.com/b/mapo/archive/2010/08/24/prevent-date-time-synchronization-in-a-windows-virtual-pc-virtual-machine.aspx</id><published>2010-08-24T12:31:00Z</published><updated>2010-08-24T12:31:00Z</updated><content type="html">&lt;p&gt;If you need to prevent date and time synchronization between a Virtual PC 2007 virtual machine and its host machine, look at this &lt;a href="http://blogs.msdn.com/b/mapo/archive/2007/12/05/stop-a-virtual-pc-image-from-synchronizing-the-date-with-the-host-os.aspx"&gt;post&lt;/a&gt; for the necessary steps but if you need to achieve the same result with a Windows Virtual PC virtual machine, you can do so by adding the following line to the vmc file for your virtual machine:&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family: courier new,courier;"&gt;&amp;lt;preferences&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;lt;hardware&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;lt;bios&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp; ....&lt;br /&gt;&amp;nbsp;&amp;nbsp; ....&lt;br /&gt;&amp;nbsp;&amp;nbsp; &lt;span style="color: #ff0000;"&gt;&amp;lt;time_sync_at_boot type="boolean"&amp;gt;false&amp;lt;/time_sync_at_boot&amp;gt;&lt;/span&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp; ....&amp;nbsp;&amp;nbsp; &lt;br /&gt;&amp;nbsp;&amp;nbsp; ....&lt;br /&gt;&amp;nbsp; &amp;lt;/bios&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;lt;/hardware&amp;gt;&lt;br /&gt;&amp;lt;/preferences&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;You can achieve the above by also running the following visual basic script:&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family: courier new,courier;"&gt;&lt;span style="color: #ff0000;"&gt;'Title: Script to disable timesync for a VM.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family: courier new,courier;"&gt;&lt;span style="color: #ff0000;"&gt;'Usage: cscript ScriptName &amp;lt;vmname&amp;gt;&lt;br /&gt;Set objVPC = CreateObject("VirtualPC.Application")&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family: courier new,courier;"&gt;&lt;span style="color: #ff0000;"&gt;'Get virtual machine name from command-line parameter&lt;br /&gt;Set objVM = objVPC.FindVirtualMachine(WScript.Arguments(0))&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family: courier new,courier;"&gt;&lt;span style="color: #ff0000;"&gt;'Disable TimeSync During Boot Time&lt;br /&gt;errReturn = objVM.SetConfigurationValue("hardware/bios/time_sync_at_boot", false)&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family: courier new,courier;"&gt;&lt;span style="color: #ff0000;"&gt;'Get object for GuestOS&lt;br /&gt;Set objGuestOS = objVM.GuestOS&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family: courier new,courier;"&gt;&lt;span style="color: #ff0000;"&gt;'Disable TimeSync During VM Execution&lt;br /&gt;objGuestOS.IsHostTimeSyncEnabled = false&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;Copy the above in a file with the vbs extension and run it from a command-line prompt with the following instruction:&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family: courier new,courier;"&gt;&lt;span style="color: #ff0000;"&gt;cscript MyScript.vbs "MyVirtualMachineName"&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;where &lt;span style="color: #ff0000;"&gt;MyScript.vbs&lt;/span&gt; is the name of your script file and &lt;span style="color: #ff0000;"&gt;MyVirtualMachineName&lt;/span&gt; is the name of your WMV virtual machine.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10053547" width="1" height="1"&gt;</content><author><name>mapo</name><uri>http://blogs.msdn.com/mapo/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>Claims-Based Identity and Access Control </title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/mapo/archive/2010/08/02/claims-based-identity-and-access-control.aspx" /><id>http://blogs.msdn.com/b/mapo/archive/2010/08/02/claims-based-identity-and-access-control.aspx</id><published>2010-08-02T14:16:13Z</published><updated>2010-08-02T14:16:13Z</updated><content type="html">&lt;p&gt;Interested in learning about claim-based identity and how you can leverage it to implement access control in your applications? The Patterns &amp;amp; Practices group in Microsoft has recently released "A guide to Claims-Based Identity and Access Control", a guide that, without getting too deep in the technicalities and standards involved by claim-based identity, is a nice introduction to this very hot topic. Get your PDF copy of this guide &lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=4c09ffe4-43dd-4fcc-be35-c897c9bc4386&amp;amp;displaylang=en"&gt;here&lt;/a&gt;. Along with this guide the P&amp;amp;P group has also provided &lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=33829bcf-f5ea-4650-b807-57c63a753753&amp;amp;displaylang=en"&gt;source code samples&lt;/a&gt; (SingleSignOn, Federation, FederationWithMultiplePartners, ActiveClientFederation and WindowsAzure) to play with. Finally, on CodePlex you&amp;nbsp;will find&amp;nbsp;a &lt;a href="http://claimsid.codeplex.com/"&gt;community site&lt;/a&gt; that you might care to check out.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10044912" width="1" height="1"&gt;</content><author><name>mapo</name><uri>http://blogs.msdn.com/mapo/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>Mapping of Microsoft Office 2003 toolbar and menu functions to Microsoft Office 2010</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/mapo/archive/2010/08/02/mapping-of-microsoft-office-2003-toolbar-and-menu-functions-to-microsoft-office-2010.aspx" /><id>http://blogs.msdn.com/b/mapo/archive/2010/08/02/mapping-of-microsoft-office-2003-toolbar-and-menu-functions-to-microsoft-office-2010.aspx</id><published>2010-08-02T13:42:00Z</published><updated>2010-08-02T13:42:00Z</updated><content type="html">&lt;p&gt;Moving from the Microsoft Office 2003 suite to the latest Microsoft Office 2010? Having a hard time mapping Office 2003 menu and toolbar functionalities to features in the Office 2010 ribbon tabs? &lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=689351f3-6d82-4e5c-b3ee-af33008d68fa&amp;amp;displaylang=en"&gt;Here&lt;/a&gt; you can download a zip containing various PDF documents (product guide, features and benefits, getting started guide) for each product in the Office 2010 suite. The zip also contains a useful Excel file that maps all functionalities in the&amp;nbsp;different Office 2003 product&amp;nbsp;menus and toolbars to corresponding functionalities exposed by the Office 2010 ribbon tabs. Also, take a good look at the enclosed product guides: I found them to be a great point to start learning about the new versions of the popular&amp;nbsp;Microsoft Office productivity tools.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10044901" width="1" height="1"&gt;</content><author><name>mapo</name><uri>http://blogs.msdn.com/mapo/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>Windows SDK for Windows 7 and .NET Framework 4</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/mapo/archive/2010/07/08/windows-sdk-for-windows-7-and-net-framework-4.aspx" /><id>http://blogs.msdn.com/b/mapo/archive/2010/07/08/windows-sdk-for-windows-7-and-net-framework-4.aspx</id><published>2010-07-08T16:00:11Z</published><updated>2010-07-08T16:00:11Z</updated><content type="html">&lt;p&gt;If you need the very latest Windows SDK, you can get the entire ISO file &lt;a href="http://www.microsoft.com/downloads/details.aspx?familyid=35AEDA01-421D-4BA5-B44B-543DC8C33A20&amp;amp;displaylang=en"&gt;here&lt;/a&gt;. If you prefer the web installer version, you can get it &lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=6b6c21d2-2006-4afa-9702-529fa782d63b&amp;amp;displaylang=en"&gt;here&lt;/a&gt;.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10035976" width="1" height="1"&gt;</content><author><name>mapo</name><uri>http://blogs.msdn.com/mapo/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>Download the C# 4.0 Language Specification</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/mapo/archive/2010/04/29/download-the-c-4-0-language-specification.aspx" /><id>http://blogs.msdn.com/b/mapo/archive/2010/04/29/download-the-c-4-0-language-specification.aspx</id><published>2010-04-29T16:05:00Z</published><updated>2010-04-29T16:05:00Z</updated><content type="html">&lt;P&gt;Time to update your knowledge of the C# language! :-)&lt;BR&gt;Get your copy of the C# 4.0 Language Specification &lt;A href="http://www.microsoft.com/downloads/details.aspx?familyid=DFBF523C-F98C-4804-AFBD-459E846B268E&amp;amp;displaylang=en" mce_href="http://www.microsoft.com/downloads/details.aspx?familyid=DFBF523C-F98C-4804-AFBD-459E846B268E&amp;amp;displaylang=en"&gt;here&lt;/A&gt;. You can choose between a Microsoft Word (.doc) and a&amp;nbsp;HTML version of the spec.&lt;/P&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10004621" width="1" height="1"&gt;</content><author><name>mapo</name><uri>http://blogs.msdn.com/mapo/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>Ramp up your development skills</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/mapo/archive/2010/04/13/ramp-up-your-development-skills.aspx" /><id>http://blogs.msdn.com/b/mapo/archive/2010/04/13/ramp-up-your-development-skills.aspx</id><published>2010-04-13T11:30:00Z</published><updated>2010-04-13T11:30:00Z</updated><content type="html">&lt;P&gt;&lt;A href="http://msdn.microsoft.com/en-us/rampup/default.aspx" mce_href="http://msdn.microsoft.com/en-us/rampup/default.aspx"&gt;Ramp Up&lt;/A&gt; is an interesting initiative I discovered today that may help you quickly build your development skills in&amp;nbsp;a few Microsoft technologies.&amp;nbsp;Ramp Up is a free, online, community-based learning program, with a number of different tracks that may help you quickly become&amp;nbsp;proficient&amp;nbsp;in a few technologies. Following are today's available tracks:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Web Development with ASP.NET&lt;/LI&gt;
&lt;LI&gt;Learn ASP.NET: for PHP Developers&lt;/LI&gt;
&lt;LI&gt;Move from ASP to ASP.NET&lt;/LI&gt;
&lt;LI&gt;Develop Windows Mobile 6 Applications&lt;/LI&gt;
&lt;LI&gt;SharePoint for Developers - Part 1&lt;/LI&gt;
&lt;LI&gt;SharePoint for Developers - Part 2&lt;/LI&gt;
&lt;LI&gt;Developing Applications and Databases for Windows Azure and SQL Azure&lt;/LI&gt;&lt;/UL&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9995033" width="1" height="1"&gt;</content><author><name>mapo</name><uri>http://blogs.msdn.com/mapo/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>MSDN Magazine digital edition now in PDF format</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/mapo/archive/2010/04/13/msdn-magazine-digital-edition-now-in-pdf-format.aspx" /><id>http://blogs.msdn.com/b/mapo/archive/2010/04/13/msdn-magazine-digital-edition-now-in-pdf-format.aspx</id><published>2010-04-13T10:56:00Z</published><updated>2010-04-13T10:56:00Z</updated><content type="html">&lt;P&gt;Last year I noticed that the MSDN site was&amp;nbsp;getting behind in providing the CHM (compiled HTML) version of each month's MSDN Magazine issue. In fact the last CHM file I was able to retrieve was the July 2009 issue. Today, getting back to the &lt;A href="http://msdn.microsoft.com/en-us/magazine/default.aspx" mce_href="http://msdn.microsoft.com/en-us/magazine/default.aspx"&gt;MSDN Magazine homepage&lt;/A&gt;&amp;nbsp;I just&amp;nbsp;could not find the usual link at the top of&amp;nbsp;each month's issue page to download the CHM version of the magazine. Disappointed I was almost to close my browser when I noticed a "Digital Magazine Downloads" link and guess what .... digital copies of all the magazine issues are now available only that starting from August 2009 they are provided in PDF format. This is indeed great news! So, go get all the magazine issues &lt;A href="http://msdn.microsoft.com/en-us/magazine/ee412244.aspx" mce_href="http://msdn.microsoft.com/en-us/magazine/ee412244.aspx"&gt;here&lt;/A&gt;&amp;nbsp;:-)&lt;/P&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9995023" width="1" height="1"&gt;</content><author><name>mapo</name><uri>http://blogs.msdn.com/mapo/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>Get ready for Visual Studio 2010!</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/mapo/archive/2010/04/13/get-ready-for-visual-studio-2010.aspx" /><id>http://blogs.msdn.com/b/mapo/archive/2010/04/13/get-ready-for-visual-studio-2010.aspx</id><published>2010-04-13T10:32:00Z</published><updated>2010-04-13T10:32:00Z</updated><content type="html">&lt;P&gt;Final release of Visual Studio 2010 is getting near and you need to get ready for it! :-)&lt;BR&gt;First of all, you could download the very latest bundle of training material on Visual Studio 2010. From&amp;nbsp;&lt;A href="http://www.microsoft.com/downloads/details.aspx?FamilyID=752CB725-969B-4732-A383-ED5740F02E93&amp;amp;displaylang=en" mce_href="http://www.microsoft.com/downloads/details.aspx?FamilyID=752CB725-969B-4732-A383-ED5740F02E93&amp;amp;displaylang=en"&gt;this page&lt;/A&gt;&amp;nbsp;you can get the April version of the "Visual Studio 2010 and .NET Framework 4 Training Kit" (covered topics are C# 4, VB 10, F#, Parallel Extensions, WCF, WF, WPF, ASP.NET 4, Windows 7, Entity Framework, ADO.NET Data Services, Managed Extensibility Framework, Visual Studio Team System). After that, you could download the draft version of the book "Moving to Visual Studio 2010" from&amp;nbsp;&lt;A href="http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;amp;FamilyID=560a5365-5c62-488a-91ed-a779e0e33ac4" mce_href="http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;amp;FamilyID=560a5365-5c62-488a-91ed-a779e0e33ac4"&gt;here&lt;/A&gt;. Finally, if you feel the need for more great articles and videos on Visual Studio 2010 and related technologies (i.e. Silverlight 4), you can access a bunch of them from&amp;nbsp;&lt;A href="http://msdn.microsoft.com/en-us/vstudio/default.aspx" mce_href="http://msdn.microsoft.com/en-us/vstudio/default.aspx"&gt;here&lt;/A&gt;.&lt;/P&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9995010" width="1" height="1"&gt;</content><author><name>mapo</name><uri>http://blogs.msdn.com/mapo/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>TechNet Chopsticks videos</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/mapo/archive/2010/04/01/technet-chopsticks-videos.aspx" /><id>http://blogs.msdn.com/b/mapo/archive/2010/04/01/technet-chopsticks-videos.aspx</id><published>2010-04-01T09:36:00Z</published><updated>2010-04-01T09:36:00Z</updated><content type="html">&lt;P&gt;Microsoft Belux (Belgium) is hosting lots of&amp;nbsp;what I think to be very interesting TechNet videos. Please give a look at them &lt;A href="http://www.microsoft.com/belux/TechNet/nl/chopsticks/default.aspx" mce_href="http://www.microsoft.com/belux/TechNet/nl/chopsticks/default.aspx"&gt;here&lt;/A&gt;.&lt;/P&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9988718" width="1" height="1"&gt;</content><author><name>mapo</name><uri>http://blogs.msdn.com/mapo/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>SQL Server 2008 R2 for Developers Training Kit</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/mapo/archive/2010/02/28/sql-server-2008-r2-for-developers-training-kit.aspx" /><id>http://blogs.msdn.com/b/mapo/archive/2010/02/28/sql-server-2008-r2-for-developers-training-kit.aspx</id><published>2010-02-28T22:05:00Z</published><updated>2010-02-28T22:05:00Z</updated><content type="html">An updated version of the SQL Server 2008 R2 development training kit with over 100MB of videos, demos, presentations and hands-on-labs is available for download &lt;A class="" href="http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;amp;FamilyID=fffaad6a-0153-4d41-b289-a3ed1d637c0d" mce_href="http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;amp;FamilyID=fffaad6a-0153-4d41-b289-a3ed1d637c0d"&gt;here&lt;/A&gt;.&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9970576" width="1" height="1"&gt;</content><author><name>mapo</name><uri>http://blogs.msdn.com/mapo/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>Development material for Windows 7, .NET Framework 4.0 and Visual Studio 2010</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/mapo/archive/2010/01/26/development-material-for-windows-7-net-framework-4-0-and-visual-studio-2010.aspx" /><id>http://blogs.msdn.com/b/mapo/archive/2010/01/26/development-material-for-windows-7-net-framework-4-0-and-visual-studio-2010.aspx</id><published>2010-01-26T22:21:00Z</published><updated>2010-01-26T22:21:00Z</updated><content type="html">&lt;P&gt;For all devs interested in the very latest Microsoft software development technologies there are two new bundles of presentations, hands-on labs, and demos for you to download. First there is the "&lt;A href="http://www.microsoft.com/downloads/details.aspx?familyid=1C333F06-FADB-4D93-9C80-402621C600E7&amp;amp;displaylang=en" mce_href="http://www.microsoft.com/downloads/details.aspx?familyid=1C333F06-FADB-4D93-9C80-402621C600E7&amp;amp;displaylang=en"&gt;Windows 7 Training Kit For Developers&lt;/A&gt;" (84MB) that will teach you how to leverage new features&amp;nbsp;and capabilities available&amp;nbsp;in Microsoft Windows 7 and then there the January release of the&amp;nbsp;"&lt;A href="http://www.microsoft.com/downloads/details.aspx?FamilyID=752CB725-969B-4732-A383-ED5740F02E93&amp;amp;displaylang=en" mce_href="http://www.microsoft.com/downloads/details.aspx?FamilyID=752CB725-969B-4732-A383-ED5740F02E93&amp;amp;displaylang=en"&gt;Visual Studio 2010 and .NET Framework 4 Training Kit&lt;/A&gt;" (152MB) covering topics such as&amp;nbsp; C# 4.0, Visual Basic 10, F#, WCF, WPF, WF, ASP.NET 4, Entity Framework, ADO.NET Data Services, Visual Studio Team System. Get them all now!&lt;/P&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9953752" width="1" height="1"&gt;</content><author><name>mapo</name><uri>http://blogs.msdn.com/mapo/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>Microsoft Visual Studio 2010 and Team Foundation Server 2010 Beta 2 virtual machines</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/mapo/archive/2009/12/27/microsoft-visual-studio-2010-and-team-foundation-server-2010-beta-2-virtual-machines.aspx" /><id>http://blogs.msdn.com/b/mapo/archive/2009/12/27/microsoft-visual-studio-2010-and-team-foundation-server-2010-beta-2-virtual-machines.aspx</id><published>2009-12-27T18:50:00Z</published><updated>2009-12-27T18:50:00Z</updated><content type="html">Microsoft Visual Studio 2010 and Team Foundation Server 2010 Beta 2 virtual machines are available for &lt;A href="http://www.microsoft.com/downloads/details.aspx?familyid=426CDFFC-53B5-46A5-89D3-E2ECD23570C6&amp;amp;displaylang=en" mce_href="http://www.microsoft.com/downloads/details.aspx?familyid=426CDFFC-53B5-46A5-89D3-E2ECD23570C6&amp;amp;displaylang=en"&gt;Hyper-V&lt;/A&gt;, &lt;A href="http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;amp;FamilyID=27d91e63-e33b-4cef-a331-f20d343da9de" mce_href="http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;amp;FamilyID=27d91e63-e33b-4cef-a331-f20d343da9de"&gt;Windows Virtual PC&lt;/A&gt; and &lt;A href="http://www.microsoft.com/downloads/details.aspx?familyid=540777B0-CBD7-485E-BDE5-23A1D4F442E0&amp;amp;displaylang=en" mce_href="http://www.microsoft.com/downloads/details.aspx?familyid=540777B0-CBD7-485E-BDE5-23A1D4F442E0&amp;amp;displaylang=en"&gt;Microsoft Virtual PC 2007 SP1&lt;/A&gt;. If you want, you can get the ISO for Visual Studio 2010 Ultimate Beta 2 &lt;A href="http://www.microsoft.com/downloads/details.aspx?FamilyID=dc333ac8-596d-41e3-ba6c-84264e761b81&amp;amp;displaylang=en" mce_href="http://www.microsoft.com/downloads/details.aspx?FamilyID=dc333ac8-596d-41e3-ba6c-84264e761b81&amp;amp;displaylang=en"&gt;here&lt;/A&gt;. Great walkthroughs for Visual Studio 2010 and .NET Framework 4 Beta 2 are also &lt;A href="http://msdn.microsoft.com/en-us/vstudio/dd441784.aspx" mce_href="http://msdn.microsoft.com/en-us/vstudio/dd441784.aspx"&gt;available for you&lt;/A&gt; to try out the new features of version 4 of the .NET Framework and of the forthcoming version of Visual Studio. A Visual Studio 2010 and .NET Framework 4 Training Kit is available for download &lt;A href="http://www.microsoft.com/downloads/details.aspx?familyid=752CB725-969B-4732-A383-ED5740F02E93&amp;amp;displaylang=en" mce_href="http://www.microsoft.com/downloads/details.aspx?familyid=752CB725-969B-4732-A383-ED5740F02E93&amp;amp;displaylang=en"&gt;here&lt;/A&gt;.&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9941420" width="1" height="1"&gt;</content><author><name>mapo</name><uri>http://blogs.msdn.com/mapo/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>"Microsoft Architect Insight Conference 2009" presentations and recordings</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/mapo/archive/2009/12/26/microsoft-architect-insight-conference-2009-presentations-and-recordings.aspx" /><id>http://blogs.msdn.com/b/mapo/archive/2009/12/26/microsoft-architect-insight-conference-2009-presentations-and-recordings.aspx</id><published>2009-12-26T14:00:00Z</published><updated>2009-12-26T14:00:00Z</updated><content type="html">Videos and presentations of the 19 technical sessions that took place in&amp;nbsp;May 09&amp;nbsp;in London during&amp;nbsp;the "Microsoft Architect Insight Conference 2009" are online for you to download them. Covered topics go from Software + Service to IT trends, from Oslo to Windows Azure. Go get them all&amp;nbsp;&lt;A href="http://msdn.microsoft.com/en-gb/architecture/dd135210.aspx" mce_href="http://msdn.microsoft.com/en-gb/architecture/dd135210.aspx"&gt;here&lt;/A&gt;.&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9941262" width="1" height="1"&gt;</content><author><name>mapo</name><uri>http://blogs.msdn.com/mapo/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>BizTalk project fails at being created</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/mapo/archive/2009/11/17/biztalk-project-fails-at-being-created.aspx" /><id>http://blogs.msdn.com/b/mapo/archive/2009/11/17/biztalk-project-fails-at-being-created.aspx</id><published>2009-11-17T09:17:00Z</published><updated>2009-11-17T09:17:00Z</updated><content type="html">&lt;P&gt;It seems that Visual Studio 2008 updates may break BizTalk projects creation. To fix this situation you need to edit a system registry value. On x86 machines set the following:&lt;/P&gt;
&lt;P&gt;HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\VisualStudio\9.0\Projects\FAE04EC0-301F-11d3-BF4B-00C04F79EFBC}\PossibleProjectExtensions="csproj;btproj"&lt;/P&gt;
&lt;P&gt;on x64 machines set the following:&lt;/P&gt;
&lt;P&gt;HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\VisualStudio\9.0\Projects\FAE04EC0-301F-11d3-BF4B-00C04F79EFBC\PossibleProjectExtensions="csproj;btproj"&lt;/P&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9923452" width="1" height="1"&gt;</content><author><name>mapo</name><uri>http://blogs.msdn.com/mapo/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>Evaluate Biztalk 2009</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/mapo/archive/2009/10/31/evaluate-biztalk-2009.aspx" /><id>http://blogs.msdn.com/b/mapo/archive/2009/10/31/evaluate-biztalk-2009.aspx</id><published>2009-10-31T14:45:00Z</published><updated>2009-10-31T14:45:00Z</updated><content type="html">If you are in the process of evaluating the Biztalk 2009 (the Microsoft platform for EAI, B2B and BPM) you might be interesting in reading the "&lt;A href="http://www.microsoft.com/downloads/details.aspx?FamilyID=1f839374-17df-43b9-840e-60c11f20f42b&amp;amp;displaylang=en" mce_href="http://www.microsoft.com/downloads/details.aspx?FamilyID=1f839374-17df-43b9-840e-60c11f20f42b&amp;amp;displaylang=en"&gt;Microsoft BizTalk Server 2009 Technical Overview&lt;/A&gt;" whitepaper and the&amp;nbsp;"&lt;A href="http://download.microsoft.com/documents/australia/windowsserversystem/biztalk2006/Understanding_BTS06.pdf" mce_href="http://download.microsoft.com/documents/australia/windowsserversystem/biztalk2006/Understanding_BTS06.pdf"&gt;Understanding BizTalk Server 2006&lt;/A&gt;" whitepaper by David Chappell,&amp;nbsp;that is still a valid document to provide an overview of the latest Biztalk platform. Finally, if you want to quickly try out a fully installed and configured&amp;nbsp;instance of Biztalk 2009, download the virtual machine over &lt;A href="http://www.microsoft.com/downloads/details.aspx?FamilyID=CED208EF-D31E-4711-BC13-AC0227E80D88&amp;amp;displaylang=en" mce_href="http://www.microsoft.com/downloads/details.aspx?FamilyID=CED208EF-D31E-4711-BC13-AC0227E80D88&amp;amp;displaylang=en"&gt;here&lt;/A&gt;. The VM has everything you need to evaluate the product (BizTalk Server 2009, SQL Server 2008, SharePoint Server 2007, Microsoft&amp;nbsp;.NET 3.5 framework&amp;nbsp;and five hand-on-labs).&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9915664" width="1" height="1"&gt;</content><author><name>mapo</name><uri>http://blogs.msdn.com/mapo/ProfileUrlRedirect.ashx</uri></author></entry><entry><title>Run Wireshark on Windows 7 x64</title><link rel="alternate" type="text/html" href="http://blogs.msdn.com/b/mapo/archive/2009/09/11/run-wireshark-on-windows-7-x64.aspx" /><id>http://blogs.msdn.com/b/mapo/archive/2009/09/11/run-wireshark-on-windows-7-x64.aspx</id><published>2009-09-11T18:38:00Z</published><updated>2009-09-11T18:38:00Z</updated><content type="html">Today I tried installing the latest version of &lt;A href="http://www.wireshark.org/" mce_href="http://www.wireshark.org/"&gt;Wireshark&lt;/A&gt; (version 1.2.1 rev 29141) on my Windows 7 x64 laptop. What happened is that installation of WinPcap 4.1 beta5, bundled with Wireshark, failed making Wireshark unusable. What I did next was to&amp;nbsp;go on &lt;A href="http://www.winpcap.org/" mce_href="http://www.winpcap.org/"&gt;WinPcap's website&lt;/A&gt; and download WinPcap 4.1 beta5. On the downloaded WinPcap's setup file I set it to run in "Vista compatibility mode" and then successfully installed it. At this point on the Wireshark shortcut icon I set Wireshark to always be executed in "Vista compatibility mode" and now&amp;nbsp;this nice network monitor works just fine on my&amp;nbsp;Windows 7 Ultimate x64.&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9894245" width="1" height="1"&gt;</content><author><name>mapo</name><uri>http://blogs.msdn.com/mapo/ProfileUrlRedirect.ashx</uri></author></entry></feed>