<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>My SharePoint of View &#187; Tools</title>
	<atom:link href="http://mysharepointofview.com/category/tools/feed/" rel="self" type="application/rss+xml" />
	<link>http://mysharepointofview.com</link>
	<description>Thoughts, reflections and solutions from the field in SharePoint land</description>
	<lastBuildDate>Tue, 10 Aug 2010 18:23:23 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Web Application builder</title>
		<link>http://mysharepointofview.com/2009/09/web-application-builder/</link>
		<comments>http://mysharepointofview.com/2009/09/web-application-builder/#comments</comments>
		<pubDate>Tue, 08 Sep 2009 19:00:44 +0000</pubDate>
		<dc:creator>Mattias Karlsson</dc:creator>
				<category><![CDATA[Script]]></category>
		<category><![CDATA[Solution]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[Site Collection]]></category>
		<category><![CDATA[User group]]></category>
		<category><![CDATA[Web Application]]></category>

		<guid isPermaLink="false">http://mysharepointofview.com/?p=444</guid>
		<description><![CDATA[
Visualize yourself the scenario were you are about to set up a SharePoint environment containing a lot of Web Applications and that some of them needs to be extended both two and three times. Add to that, that you need to set it up in a Test, QA and a production environment and in the same [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://mysharepointofview.com/wp-content/uploads/2009/08/ConfigGenerator.jpg"></a></p>
<p>Visualize yourself the scenario were you are about to set up a SharePoint environment containing a lot of Web Applications and that some of them needs to be extended both two and three times. Add to that, that you need to set it up in a Test, QA and a production environment and in the same way have a good recovery plan for setting them up again in case of a disaster.</p>
<p>In two earlier posts I have written about how to <a href="http://mysharepointofview.com/2009/06/create-new-web-application-with-powershell/">create a Web Application</a> and how to <a href="http://mysharepointofview.com/2009/07/extend-a-web-application-with-powershell/">extend a Web Application</a>using PowerShell. Now it’s time to combine the two into one script where we use a input file as source. In this case I decided to use Excel, so it&#8217;s easy to fill in all info on your Web Applications in an Excel file. By using a macro you can then by pushing a button in Excel generate a xml-config and that&#8217;s the one to use as input for your PowerShell script.</p>
<p>First, let me introduce the Config Generator. This is an excel file where you fill in the info on the Web Applications that you want to set up. Below is a list of all the settings you fill in, in the Excel sheet. One Web Application or extend of Web Application per row.</p>
<table border="1" width="100%">
<tbody>
<tr>
<td><strong>Setting</strong></td>
<td><strong>Value</strong></td>
<td><strong>Example</strong></td>
</tr>
<tr>
<td>Type</td>
<td>New/Extend <em>(drop down)</em></td>
<td> New</td>
</tr>
<tr>
<td>Extend</td>
<td> url of site to extend if applicable</td>
<td> http://portalsite.com</td>
</tr>
<tr>
<td>WebAppDisplayName</td>
<td> Used e.g. in IIS</td>
<td> The Portal site</td>
</tr>
<tr>
<td>WebAppHostHeader</td>
<td> the url of the site</td>
<td> portalsite.com</td>
</tr>
<tr>
<td>LoadBalancerURL</td>
<td> The load balancer url</td>
<td> http://portalsite.com</td>
</tr>
<tr>
<td>WebAppPort</td>
<td> Port to use</td>
<td> 80</td>
</tr>
<tr>
<td>SSL</td>
<td> true/false <em>(drop down)</em></td>
<td> false</td>
</tr>
<tr>
<td>AllowAnynomousAccess</td>
<td> true/false <em>(drop down)</em></td>
<td> false</td>
</tr>
<tr>
<td>Zone</td>
<td> Default/Internet/Extranet/Intranet/Custom <em>(drop down)</em></td>
<td> Default</td>
</tr>
<tr>
<td>WebAppContentDBName</td>
<td> Name of the content database</td>
<td> WebApp_PortalSite_01</td>
</tr>
<tr>
<td>WebAppPoolName</td>
<td> IIS Application pool to use.</td>
<td> Portalsite</td>
</tr>
<tr>
<td>WebAppPoolUsername</td>
<td> Username to use as identity of Application Pool, if applicable</td>
<td> Username</td>
</tr>
<tr>
<td>WebAppPoolPassword</td>
<td> Password for the Application Pool identity account</td>
<td> Password</td>
</tr>
<tr>
<td>DatabaseServer</td>
<td> Database server to use</td>
<td> SQLsrv01</td>
</tr>
<tr>
<td>ISSRootDirectory</td>
<td> File path to your IIS root directory</td>
<td> c:\inetpub\wwwroot\&#8230;</td>
</tr>
</tbody>
</table>
<p>As you can see you have a couple of fields related to the IIS Application Pool. What the script does is that, if you have filled in the WebAppUsername the Application Pool will be created with the new credentials. If you leave the WebAppUsername blank it assumes that the Application Pool exist and connects the site to that Application Pool.</p>
<p>You will also find columns to insert Site Collection information. This info will be put into the config file as well and used for creating the root Site Collection of your new Web Application. The following settings are available:</p>
<table border="1" width="100%">
<tbody>
<tr>
<td><strong>Setting</strong></td>
<td><strong>Value</strong></td>
<td><strong>Example</strong></td>
</tr>
<tr>
<td>Title</td>
<td>Title of the site</td>
<td>Start page</td>
</tr>
<tr>
<td>Description</td>
<td>Description of the site</td>
<td>This is the start page for the Sales organisation</td>
</tr>
<tr>
<td>Template</td>
<td>The template name to use. To view existing templates<br />
an their name check this <a href="http://www.powershell.nu/2009/01/08/create-a-new-site-in-sharepoint/" target="_blank">article</a></td>
<td>STS#1</td>
</tr>
<tr>
<td>Admin</td>
<td>AD-account of who should be owner of the site</td>
<td> AD\username</td>
</tr>
<tr>
<td>AdminName</td>
<td> The display name of the admin</td>
<td> Mattias Karlsson</td>
</tr>
<tr>
<td>AdminEmail</td>
<td>The e-mail address of the admin</td>
<td>Mattias.Karlsson@nima.com</td>
</tr>
</tbody>
</table>
<p>When you have filled in the info on all your Web Applications just push the Generate Config File button and Excel will generate a config.xml file in the same folder as the Excel file is located in.</p>
<p><a href="http://mysharepointofview.com/wp-content/uploads/2009/08/ConfigGenerator.jpg"><img title="ConfigGenerator" src="http://mysharepointofview.com/wp-content/uploads/2009/08/ConfigGenerator-300x180.jpg" alt="ConfigGenerator" width="450" /></a></p>
<p>What you then need to do is to copy the config.xml to the server along with the CreateWebApps.ps1 file.</p>
<p>Open up the PowerShell command shell, include the file CreateWebApps.ps1 file by typing:</p>
<p><strong>. ./CreateWebApps.ps1</strong></p>
<p>Then you call the function by typing:</p>
<p><em><strong>SP-WebAppBuilder -ConfigPath [path]\config.xml</strong></em></p>
<p>This will now generate all your Web Applications as you have specified in the Excel-file so go grab yourself some coffee and let the script handle the rest.</p>
<p>The above example is an teaser of what will be covered in the coming book <a href="http://www.sharepointandpowershell.com/" target="_blank">SharePoint and PowerShell &#8211; In real life</a> that I together with <a href="http://powershell.nu" target="_blank">Niklas Goude</a> is writing. The code can be found in the <a href="http://mysharepointofview.com/downloads">download </a>section.</p>
]]></content:encoded>
			<wfw:commentRss>http://mysharepointofview.com/2009/09/web-application-builder/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Add Custom HTTP Headers programmatically</title>
		<link>http://mysharepointofview.com/2009/08/add-custom-http-headers-programmatically/</link>
		<comments>http://mysharepointofview.com/2009/08/add-custom-http-headers-programmatically/#comments</comments>
		<pubDate>Thu, 27 Aug 2009 16:59:37 +0000</pubDate>
		<dc:creator>Mattias Karlsson</dc:creator>
				<category><![CDATA[Script]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[Fiddler]]></category>
		<category><![CDATA[HTTP Headers]]></category>
		<category><![CDATA[IIS 6]]></category>

		<guid isPermaLink="false">http://mysharepointofview.com/?p=492</guid>
		<description><![CDATA[When you work with farms with multiple WFE’s that sits behind a loadbalancer and Virtual IP it can sometimes be difficult troubleshooting since you don’t know what server your client is connected to.
I sometimes use Fiddler (which is a great tool by the way) when inspect the HTTP traffic, but without a custom HTTP Header [...]]]></description>
			<content:encoded><![CDATA[<p>When you work with farms with multiple WFE’s that sits behind a loadbalancer and Virtual IP it can sometimes be difficult troubleshooting since you don’t know what server your client is connected to.</p>
<p>I sometimes use <a href="www.fiddlertool.com/" target="_blank">Fiddler </a>(which is a great tool by the way) when inspect the HTTP traffic, but without a custom HTTP Header it makes the hole process much more difficult.</p>
<p>Once again, I’m not much for repetitive tasks and in this case I had a lot of WFE’s and web applications. Therefore I put together a small script that enumerates and adds ServerName: [Servername] as custom HTTP header to all your sites on the server. You find it in my <a href="http://mysharepointofview.com/downloads">download </a>section under IIS. And please don’t hang me for not making a beautiful script, It was a quick and dirty one and if you want to shape it up please feel free to do so.</p>
]]></content:encoded>
			<wfw:commentRss>http://mysharepointofview.com/2009/08/add-custom-http-headers-programmatically/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Problem creating Site from custom Site Template</title>
		<link>http://mysharepointofview.com/2009/06/problemcreating-site-from-custom-site-template/</link>
		<comments>http://mysharepointofview.com/2009/06/problemcreating-site-from-custom-site-template/#comments</comments>
		<pubDate>Sun, 07 Jun 2009 19:00:47 +0000</pubDate>
		<dc:creator>Mattias Karlsson</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[SharePoint Inspector]]></category>
		<category><![CDATA[Site Template]]></category>
		<category><![CDATA[STP Inspector]]></category>
		<category><![CDATA[STSADM]]></category>

		<guid isPermaLink="false">http://mysharepointofview.com/?p=346</guid>
		<description><![CDATA[Recently I have had some problems with a Custom Site Template, and after a lot of testing I decided to seek help from the brilliant and helpful SharePoint community so I added a thread at the MSDN forums.
The Problem was that I were about to update a Global Site Template. The template was sent to me [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I have had some problems with a Custom Site Template, and after a lot of testing I decided to seek help from the brilliant and helpful SharePoint community so I added a thread at the MSDN forums.</p>
<p>The Problem was that I were about to update a Global Site Template. The template was sent to me from the customer and should be implemented in one of our staging environments to be tested and then finally published in the production environment.</p>
<p>Since this was a new version of an already existing template I started with deleting the template with stsadm (<a href="http://technet.microsoft.com/en-us/library/cc263068.aspx" target="_blank">stsadm -o deletetemplate</a>) and then I used the stsadm again to add the template (<a href="http://technet.microsoft.com/en-us/library/cc261822.aspx" target="_blank">stsadm -o addtemplate</a>). But when using the addtemplate I get:</p>
<p><strong>Web template with file MyTemplateName.stp already exists</strong></p>
<p>I did a <a href="http://technet.microsoft.com/en-us/library/cc263342.aspx" target="_blank">enumtemplates</a> to see if the template I deleted really had been deleted and it had. I tried to delete it again but then but got:</p>
<p><strong>Could not find web template MyTeamplateName.stp</strong></p>
<p>I then tried to add the template with a new name and this worked fine but when I created a new Site Collection based on the newly added template, I received yet another error message:</p>
<p><strong>The template you have chosen is invalid or cannot be found.</strong></p>
<p>I jumped to the conclusion a bit too fast and thought that this was related to each other. I was wrong. It turned out that this was a two folded problem and I have only found a solution to the last part.<br />
I found out with help from a simple yet excellent Codeplex tool named <a href="http://stpinspector.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=18552" target="_blank">STP Inspector</a> that allows you to examine your stp file and I then found out that we did not have the same solutions (or at least same versions of solutions) in our different staging environments. The template was generated from a environment with one newer solution and therefore had Feature that was not installed on the environment were I tried to add the new template to.<br />
To find out what feature it was I used another great tool from Codeplex, <a href="http://www.codeplex.com/spi" target="_blank">SharePoint Inspector</a>. Both tools are very useful and I totally recommend putting them into you &#8220;toolbox&#8221; when working and troubleshooting SharePoint problems.</p>
<p>So what happened to the first problem? Well I have not solved this and neither have I got any response from the brilliant people on msdn forums so I guess this is a quite unique problem I have ran in to. For now I have down prioritized it but if you have a good suggestion I would much appreciate it, just leave a comment here or on the forum thread found here: <a href="http://social.msdn.microsoft.com/Forums/en-US/sharepointadmin/thread/cff841dd-00b2-4706-9a71-6f112eeef2ab">http://social.msdn.microsoft.com/Forums/en-US/sharepointadmin/thread/cff841dd-00b2-4706-9a71-6f112eeef2ab</a></p>
]]></content:encoded>
			<wfw:commentRss>http://mysharepointofview.com/2009/06/problemcreating-site-from-custom-site-template/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A word about troubleshooting the Explorer View</title>
		<link>http://mysharepointofview.com/2009/05/a-word-about-troubleshooting-the-explorer-view/</link>
		<comments>http://mysharepointofview.com/2009/05/a-word-about-troubleshooting-the-explorer-view/#comments</comments>
		<pubDate>Mon, 04 May 2009 21:02:04 +0000</pubDate>
		<dc:creator>Mattias Karlsson</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[Explorer View]]></category>
		<category><![CDATA[Fiddler]]></category>
		<category><![CDATA[MOSS]]></category>
		<category><![CDATA[NetMon]]></category>
		<category><![CDATA[WebDav]]></category>
		<category><![CDATA[WSS]]></category>

		<guid isPermaLink="false">http://mysharepointofview.com/?p=296</guid>
		<description><![CDATA[The Explorer view in SharePoint is a very useful feature when working with files and enables you to for instance drag and drop files into a SharePoint Document library, directly from you client or between folders in the Document Library. However, if you do a search on &#8220;SharePoint Explorer View&#8221; you quickly find that there [...]]]></description>
			<content:encoded><![CDATA[<p>The Explorer view in SharePoint is a very useful feature when working with files and enables you to for instance drag and drop files into a SharePoint Document library, directly from you client or between folders in the Document Library. However, if you do a search on &#8220;SharePoint Explorer View&#8221; you quickly find that there are a lot of problems registered in KB&#8217;s and forums about the feature. Sometimes it does not work as expected and sometimes not at all and unfortunately SharePoint often has to take the blame for it when it&#8217;s actually almost always a problem outside of SharePoint.</p>
<p>There are a lot of things that can cause problems with the explorer and therefore comes here a troubleshooting guide.</p>
<p>First of all let&#8217;s just briefly explain how this Explorer View works. The Explorer View is a built in SharePoint View and is available out of the box on both WSS and Moss. What happens when you switch to the View is that the content of the Document Library is displayed as if you are using an Explorer Window on your computer. Depending on what Browser you use the window opens up as new Explorer Window or integrated in the browser itself.</p>
<p>In the background the protocol that is used is WebDav. WebDav is the updated version of the old FrontPage RPC protocol (FPRPC). When you try to open a Document Library in the Explorer View WebDav tries to connect to the SharePoint Library and if it for some reason fails, it has a fallback function and tries to connect via the FPRPC.<br />
There are two easy ways to see if your connection is done using WebDav or FPRPC. When connected to the Document Library, look at the path displayed in the Explorer Window. If you see a path looking like a mapped drive starting with two back slash &#8221; \\&#8221; then your connection is done with WebDav, if you instead have http:// in the path then it&#8217;s a FPRPC connection you have. You can also determine it by right click in the Explorer Window and look at the options that are given. If it&#8217;s a limited menu appearing then you have the FPRPC.</p>
<p> <img class="alignnone size-full wp-image-298" title="spfprpc" src="http://mysharepointofview.com/wp-content/uploads/2009/05/spfprpc.jpg" alt="spfprpc" width="206" height="146" /></p>
<p>If the menu looks just like when you working with files locally on your computer then you are using WebDav.</p>
<p><img class="alignnone size-full wp-image-299" title="spwebdav" src="http://mysharepointofview.com/wp-content/uploads/2009/05/spwebdav.jpg" alt="spwebdav" width="402" height="425" /></p>
<p> </p>
<p>Since WebDav is a much better protocol you should aim for having this protocol working instead of the older FPRPC. Earlier (Windows XP and backwards) WebDav were only possible through port 80, but with Windows Vista there were an updated version to the WebDav Client on Windows machines and it now allows https. If you are not running Windows Vista I recommend you to download these and install this:  <a href="http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;FamilyID=17c36612-632e-4c04-9382-987622ed1d64">http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;FamilyID=17c36612-632e-4c04-9382-987622ed1d64</a></p>
<p>A common misunderstanding about WebDav and SharePoint is that you need to allow WebDav in the Web server extension in IIS to get the Explorer view to work. It&#8217;s true that it uses WebDav but SharePoint handles this in itself and therefore it actually doesn&#8217;t matter if you have it enabled or not, at least not for the Explorer View. If you are using other components or for instance SharePoint Designer then you need to enable it and by default its disabled.</p>
<p>If you have made sure that you have the latest WebDav client and you still for some reason can&#8217;t access or use the Explorer view properly you should start with deleting temp files located in your nethood folder located in:</p>
<p>Windows XP:<br />
 <em>c:\documents and settings\[Username]\nethood</em></p>
<p>Windows Vista<br />
<em>c:\users\[Username]\nethood</em></p>
<p>And you should also delete the cache files located in:</p>
<p>Windows XP<br />
<em>c:\documents and settings\[Username]\application data\microsoft\web server extensions\cache</em></p>
<p>Windows Vista<br />
<em>C:\Users\[Username]\AppData\Roaming\Microsoft\Web Server Extensions\Cache</em></p>
<p>This should especially be done if you have connected to the Document Library via FPRPC earlier and now want to make it work with WebDav. Note that after deleting this you should reboot your client.</p>
<p>In one of my recent assignments we had a big problem with the Explorer view not working in some of our environments and in some it worked like a charm. We also had different results depending on client. So finally we opened up a case at Microsoft and it turned out that there is a bug in Windows XP (that they don&#8217;t intend to fix since XP is now in a Extended Support Phase) were the Webclient and mrxdav services is started in the wrong order.<br />
To see if this is the problem start a commander and type:</p>
<p><em>net stop webclient,<br />
net stop mrxdav<br />
net start webclient</em></p>
<p>This is something that could be incorporated in the logon script to ensure proper functionality of the client. There is unfortunately no known KB for this which is a pity since there are probably more then one that has encountered this problem.</p>
<p>If this still doesn&#8217;t work you should start looking in to Proxy server, Firewalls or Load Balancing server. To test and troubleshoot network problems related to the Explorer view is a whole other story but there are a couple of good tools I recommend.</p>
<p>Fiddler is a free tool for logging all your http or https traffic and then afterwards you can analyse it you find it here: <a href="http://www.fiddler2.com/fiddler2/">http://www.fiddler2.com/fiddler2/</a></p>
<p>NetMon is a Microsoft tool for analysing traffic and can be used both on your client and on your server. Found here: <a href="http://www.microsoft.com/downloads/details.aspx?familyid=f4db40af-1e08-4a21-a26b-ec2f4dc4190d&amp;displaylang=en">http://www.microsoft.com/downloads/details.aspx?familyid=f4db40af-1e08-4a21-a26b-ec2f4dc4190d&amp;displaylang=en</a></p>
<p>If you want to learn more the Explorer View and the WebDav protocol you should defenately read the Microsoft Whitepaper named Understanding and Troubleshoot SharePoint Explorer. It&#8217;s a couple of years old but much of it still applies.</p>
<p><a href="http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;FamilyID=c523ac7a-5724-48be-b973-641e805588f4">http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;FamilyID=c523ac7a-5724-48be-b973-641e805588f4</a></p>
]]></content:encoded>
			<wfw:commentRss>http://mysharepointofview.com/2009/05/a-word-about-troubleshooting-the-explorer-view/feed/</wfw:commentRss>
		<slash:comments>20</slash:comments>
		</item>
		<item>
		<title>SharePoint migration tool</title>
		<link>http://mysharepointofview.com/2009/02/sharepoint-migration-tool/</link>
		<comments>http://mysharepointofview.com/2009/02/sharepoint-migration-tool/#comments</comments>
		<pubDate>Tue, 03 Feb 2009 16:55:28 +0000</pubDate>
		<dc:creator>Mattias Karlsson</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[Migration]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Xplica]]></category>

		<guid isPermaLink="false">http://mysharepointofview.com/?p=122</guid>
		<description><![CDATA[This will be the first post in a series were I will talk about useful SharePoint tools and applications. The tools will be everything from Codeplex and freeware to licensed third-party products. But before we hit of I would like to emphasize that this is tools that I have worked with in my projects and [...]]]></description>
			<content:encoded><![CDATA[<p>This will be the first post in a series were I will talk about useful SharePoint tools and applications. The tools will be everything from Codeplex and freeware to licensed third-party products. But before we hit of I would like to emphasize that this is tools that I have worked with in my projects and that I neither work for the software providers nor get any kind of royalties for this. Its pure knowledge sharing.</p>
<p>First out is a migration tool called <a title="http://www.vyapin.com/products/enterprisenetworktools/xplica2007.htm" href="http://" target="_blank">Xplica</a>. The tool helps you migrate documents from on SharePoint 2003 or SharePoint w3 environment to another WSS or Moss environment. It is mainly used when moving from an old unstructured SharePoint 2003 environment to a brand new Moss setup. The tool needs to be purchased but the price very reasonable.</p>
<p>For being a small and simple tool it has a lot of different settings and features. It can maintain existing metadata such as creation date and last modified by, but you can also create a reference file with your new metadata values so that you can move and add metadata at the same time. Other options you have is to schedule the migration (so it can be done by night), keep old versions and remove stinky folder structures so that they end up in a plain list, ready to create views on.</p>
<p>I used this tool quite recently and for smaller migrations I like it and can recommend it. I also initially had some problems (that was security based) so I contacted their support and got a quick and good answer that helped me.</p>
<p>Below are a couple of screenshots.</p>
<p> <img class="alignnone size-full wp-image-123" title="xplica01" src="http://mysharepointofview.com/wp-content/uploads/2009/02/xplica01.png" alt="xplica01" /></p>
<p><img class="alignnone size-full wp-image-124" title="xplica02" src="http://mysharepointofview.com/wp-content/uploads/2009/02/xplica02.png" alt="xplica02" /></p>
<p><img class="alignnone size-full wp-image-125" title="xplica03" src="http://mysharepointofview.com/wp-content/uploads/2009/02/xplica03.png" alt="xplica03" /></p>
<p><img class="alignnone size-full wp-image-126" title="xplica04" src="http://mysharepointofview.com/wp-content/uploads/2009/02/xplica04.png" alt="xplica04" /></p>
<p><img class="alignnone size-medium wp-image-127" title="xplica05" src="http://mysharepointofview.com/wp-content/uploads/2009/02/xplica05.png?w=300" alt="xplica05" /></p>
]]></content:encoded>
			<wfw:commentRss>http://mysharepointofview.com/2009/02/sharepoint-migration-tool/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
