<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" 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:copyright="http://blogs.law.harvard.edu/tech/rss" xmlns:image="http://purl.org/rss/1.0/modules/image/">
    <channel>
        <title>Do you SharePoint?</title>
        <link>http://www.vitendy.com/Default.aspx</link>
        <description>Let's talk about it.</description>
        <language>en-US</language>
        <copyright>Vitendy</copyright>
        <generator>Subtext Version 2.1.2.2</generator>
        <image>
            <title>Do you SharePoint?</title>
            <url>http://www.vitendy.com/images/RSS2Image.gif</url>
            <link>http://www.vitendy.com/Default.aspx</link>
            <width>77</width>
            <height>60</height>
        </image>
        <item>
            <title>Dealing with SPListItemVersion and his cousin SPFileVersion during SPFile or SPListItem copying</title>
            <category>Development</category>
            <category>WSS 3.0</category>
            <category>MOSS 2007</category>
            <link>http://www.vitendy.com/archive/2009/10/03/dealing-with-splistitemversion-and-his-cousin-spfileversion-during-spfile-or.aspx</link>
            <description>&lt;p&gt;Since I spent so many hours on this, I figured I'll post this to remember...&lt;/p&gt;
&lt;p&gt;&lt;font size="2"&gt;&lt;strong&gt;When copying SPFiles from one doc library to another, a few things to keep in mind:&lt;/strong&gt;&lt;/font&gt;&lt;/p&gt;
&lt;ul&gt;
    &lt;li&gt;&lt;font size="2"&gt;SPFileVersion will not let you get a reference to the SPFile (per MSDN) so &lt;strong&gt;don't &lt;/strong&gt;do this: SPWeb.GetFile(SPFileVersion.Url) because SPFile.Item will be null&lt;/font&gt;&lt;/li&gt;
    &lt;li&gt;&lt;font size="2"&gt;SPFileVersionCollection (SPFile.Versions) is not in sync with SPListItemVersionCollection. SPFile.Versions actually does NOT return the current version.  So, iterate through all SPFileVersions and use SPFile.Versions.GetVersionFromLabel(SPListItemVersion.VersionLabel)&lt;/font&gt;&lt;/li&gt;
    &lt;li&gt;&lt;font size="2"&gt;To keep the check in comments with each version, use the following method to add a file to the target library: SPList.RootFolder.Files.Add(url,bytes,true,&lt;strong&gt;SPFileVersion.CheckInComments,&lt;/strong&gt;false)&lt;/font&gt;&lt;/li&gt;
    &lt;li&gt;&lt;font size="2"&gt;Iterate through versions via a SortedDictionary by Created date property -- the goal is to use SPListItemVersion information to update the newly created SPFile meta data.&lt;/font&gt;&lt;/li&gt;
    &lt;li&gt;&lt;font size="2"&gt;SPFile.Item.Update() will create a new version; UpdateOverwriteVersion() will not; use the latter with SPFileVersions; use the former when adding a new SPListItem, to set values and incremenet versions.&lt;/font&gt;&lt;/li&gt;
    &lt;li&gt;&lt;font size="2"&gt;Upload the current version of SPFile outside the SPListItemVersions loop&lt;/font&gt;&lt;/li&gt;
    &lt;li&gt;&lt;font size="2"&gt;Be mindful that SPListItemVersion returns Modified and Created values as non-local time, so convert it.&lt;/font&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;font size="2"&gt;Consider disabling item events during copy.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font size="2"&gt;A good reference:&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font size="2"&gt;&lt;font face="Arial"&gt;&lt;a href="http://www.k2distillery.com/2007/10/copy-version-history-with_5.html"&gt;http://www.k2distillery.com/2007/10/copy-version-history-with_5.html&lt;/a&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font size="2" /&gt;&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;&lt;img src="http://www.vitendy.com/aggbug/27.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Vitendy</dc:creator>
            <guid>http://www.vitendy.com/archive/2009/10/03/dealing-with-splistitemversion-and-his-cousin-spfileversion-during-spfile-or.aspx</guid>
            <pubDate>Sat, 03 Oct 2009 15:23:07 GMT</pubDate>
            <wfw:comment>http://www.vitendy.com/comments/27.aspx</wfw:comment>
            <comments>http://www.vitendy.com/archive/2009/10/03/dealing-with-splistitemversion-and-his-cousin-spfileversion-during-spfile-or.aspx#feedback</comments>
            <wfw:commentRss>http://www.vitendy.com/comments/commentRss/27.aspx</wfw:commentRss>
        </item>
        <item>
            <title>Subtext refuses to send e-mail via the contact form</title>
            <category>Development</category>
            <link>http://www.vitendy.com/archive/2009/09/30/subtext-refuses-to-send-e-mail-via-the-contact-form.aspx</link>
            <description>&lt;p&gt;SubText is my choice blogging app for this Blog. It's .Net based, open source, and just nifty. Yesterday I had a cow with it though. The contact form refused to send notification e-mails. No error was generated. That was confusing, discouraging and frustrating -- since potential clients contact me via this blog.&lt;/p&gt;
&lt;p&gt;There were only two places that I knew of where changes could be made to the e-mail delivery mechanism. web.config file to set the smtp server and the contact form code to execute the delivery. &lt;/p&gt;
&lt;p&gt;The mystery deepened when I could setup SubText on a couple of spare servers. Contact form worked just fine. What gives?&lt;/p&gt;
&lt;p&gt;Well apparently during setup SubText requests an OPTIONAL e-mail address when setting up a user account for a blog. That e-mail address is used to deliver e-mail messages to from the contact form. Here all this time I was thinking it was the &lt;font face="Arial"&gt;HostEmailAddress in web.config that these messages would be routed to. &lt;/font&gt;&lt;/p&gt;
&lt;p&gt;After setting the e-mail address in the &lt;font face="Arial"&gt;&lt;strong&gt;subtext_Config&lt;/strong&gt; table in SQL. Messages started to work. Oh how magical!&lt;/font&gt; &lt;/p&gt;
&lt;p&gt;All this to say, as a developer, I was just given a glimpse at what users may sometimes experience when I fail to clearly establish expectations for the operation of a system. Lesson learned!&lt;/p&gt;&lt;img src="http://www.vitendy.com/aggbug/26.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Vitendy</dc:creator>
            <guid>http://www.vitendy.com/archive/2009/09/30/subtext-refuses-to-send-e-mail-via-the-contact-form.aspx</guid>
            <pubDate>Wed, 30 Sep 2009 22:00:01 GMT</pubDate>
            <wfw:comment>http://www.vitendy.com/comments/26.aspx</wfw:comment>
            <comments>http://www.vitendy.com/archive/2009/09/30/subtext-refuses-to-send-e-mail-via-the-contact-form.aspx#feedback</comments>
            <wfw:commentRss>http://www.vitendy.com/comments/commentRss/26.aspx</wfw:commentRss>
        </item>
        <item>
            <title>Forgot password for VMWare Workstation instance (Windows Server 2003)</title>
            <category>Hosting</category>
            <link>http://www.vitendy.com/archive/2009/09/18/forget-password-for-vmware-workstation-instance-windows-server-2003.aspx</link>
            <description>&lt;p&gt;So what happens when you change your ONLY admin password for one of your critical VMware images at 2am during a caffeine induced and chocolate supported coding nights?  And then forget it?&lt;/p&gt;
&lt;p&gt;Enter:&lt;font face="Arial"&gt;&lt;strong&gt;CD-konboot-v1.1-2in1  [&lt;a href="http://www.piotrbania.com/all/kon-boot/"&gt;site&lt;/a&gt;] [&lt;a href="http://www.piotrbania.com/all/kon-boot/data/CD-konboot-v1.1-2in1.zip"&gt;ISO&lt;/a&gt;]&lt;/strong&gt;&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;A. Download the CD-ISO&lt;/p&gt;
&lt;p&gt;B. Assign the ISO as a CD ROM to the troubled VMWare instance, boot.&lt;/p&gt;
&lt;p&gt;C. Hit ESC during Vmware boot, choose to boot from CD&lt;/p&gt;
&lt;p&gt;D. Let it do its thing&lt;/p&gt;
&lt;p&gt;E. Login with administrator user -- password can be &lt;strong&gt;anything -- &lt;/strong&gt;but once logged in reset the administrator account password&lt;/p&gt;
&lt;p&gt;Continue coding.&lt;/p&gt;&lt;img src="http://www.vitendy.com/aggbug/25.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Vitendy</dc:creator>
            <guid>http://www.vitendy.com/archive/2009/09/18/forget-password-for-vmware-workstation-instance-windows-server-2003.aspx</guid>
            <pubDate>Fri, 18 Sep 2009 14:55:28 GMT</pubDate>
            <wfw:comment>http://www.vitendy.com/comments/25.aspx</wfw:comment>
            <comments>http://www.vitendy.com/archive/2009/09/18/forget-password-for-vmware-workstation-instance-windows-server-2003.aspx#feedback</comments>
            <wfw:commentRss>http://www.vitendy.com/comments/commentRss/25.aspx</wfw:commentRss>
        </item>
        <item>
            <title>CustomMasterUrl, MasterUrl, default.master, custom.master and ChromeMasterUrl</title>
            <link>http://www.vitendy.com/archive/2009/05/26/custommasterurl-masterurl-default.master-custom.master-and-chromemasterurl.aspx</link>
            <description>&lt;p&gt;When changed through the API or ONET.XML, the following is true:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Site Master Page is set via SPWeb.CustomMasterUrl (Publishing Pages use this)&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;System Master Page is set via SPWeb.MasterUrl (Forms and Views pages use this)&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Try it at home (the code below doesn't work with sub sites):&lt;/p&gt;
&lt;p&gt;In Visual Studio, create a new C# Windows Project, Console Application. Add a reference to the Microsoft.SharePoint namespace. In the Program.cs file, paste this just inside the static void Main(string[] args):&lt;br /&gt;
&lt;/p&gt;
&lt;div style="FONT-SIZE: 8pt; BACKGROUND: white; COLOR: black; FONT-FAMILY: Courier New"&gt;
&lt;p style="MARGIN: 0px"&gt;&lt;span style="COLOR: blue"&gt;try&lt;/span&gt;&lt;/p&gt;
&lt;p style="MARGIN: 0px"&gt;{&lt;/p&gt;
&lt;p style="MARGIN: 0px"&gt; &lt;/p&gt;
&lt;p style="MARGIN: 0px"&gt;    &lt;span style="COLOR: blue"&gt;string&lt;/span&gt; siteURL = &lt;span style="COLOR: #a31515"&gt;"http://changethistoyoursite"&lt;/span&gt;;&lt;/p&gt;
&lt;p style="MARGIN: 0px"&gt;  &lt;/p&gt;
&lt;p style="MARGIN: 0px"&gt;    &lt;span style="COLOR: blue"&gt;string&lt;/span&gt; newCustomMasterUrl = &lt;span style="COLOR: #a31515"&gt;"/_catalogs/masterpage/???.master"&lt;/span&gt;; &lt;span style="COLOR: green"&gt;//replace ??? with your master&lt;/span&gt;&lt;/p&gt;
&lt;p style="MARGIN: 0px"&gt;    &lt;span style="COLOR: blue"&gt;string&lt;/span&gt; newMasterUrl = &lt;span style="COLOR: #a31515"&gt;"/_catalogs/masterpage/???.master"&lt;/span&gt;;  &lt;span style="COLOR: green"&gt;//replace ??? with your master&lt;/span&gt;&lt;/p&gt;
&lt;p style="MARGIN: 0px"&gt; &lt;/p&gt;
&lt;p style="MARGIN: 0px"&gt;    &lt;span style="COLOR: blue"&gt;using&lt;/span&gt; (&lt;span style="COLOR: #2b91af"&gt;SPSite&lt;/span&gt; site = &lt;span style="COLOR: blue"&gt;new&lt;/span&gt; &lt;span style="COLOR: #2b91af"&gt;SPSite&lt;/span&gt;(siteURL))&lt;/p&gt;
&lt;p style="MARGIN: 0px"&gt;    {&lt;/p&gt;
&lt;p style="MARGIN: 0px"&gt; &lt;/p&gt;
&lt;p style="MARGIN: 0px"&gt;        &lt;span style="COLOR: blue"&gt;using&lt;/span&gt; (&lt;span style="COLOR: #2b91af"&gt;SPWeb&lt;/span&gt; web = site.OpenWeb())&lt;/p&gt;
&lt;p style="MARGIN: 0px"&gt;        {&lt;/p&gt;
&lt;p style="MARGIN: 0px"&gt;            &lt;span style="COLOR: blue"&gt;string&lt;/span&gt; relativeUrl = (site.ServerRelativeUrl);&lt;/p&gt;
&lt;p style="MARGIN: 0px"&gt;            &lt;span style="COLOR: blue"&gt;if&lt;/span&gt; (relativeUrl == &lt;span style="COLOR: #a31515"&gt;@"/"&lt;/span&gt;)&lt;/p&gt;
&lt;p style="MARGIN: 0px"&gt;                relativeUrl = &lt;span style="COLOR: #a31515"&gt;""&lt;/span&gt;;&lt;/p&gt;
&lt;p style="MARGIN: 0px"&gt; &lt;/p&gt;
&lt;p style="MARGIN: 0px"&gt;            &lt;span style="COLOR: #2b91af"&gt;Console&lt;/span&gt;.WriteLine(&lt;span style="COLOR: #a31515"&gt;"Current settings: "&lt;/span&gt;);&lt;/p&gt;
&lt;p style="MARGIN: 0px"&gt;            &lt;span style="COLOR: #2b91af"&gt;Console&lt;/span&gt;.WriteLine(&lt;span style="COLOR: #a31515"&gt;"MasterUrl:"&lt;/span&gt; + web.MasterUrl);&lt;/p&gt;
&lt;p style="MARGIN: 0px"&gt;            &lt;span style="COLOR: #2b91af"&gt;Console&lt;/span&gt;.WriteLine(&lt;span style="COLOR: #a31515"&gt;"CustomMasterUrl: "&lt;/span&gt; + web.CustomMasterUrl);&lt;/p&gt;
&lt;p style="MARGIN: 0px"&gt; &lt;/p&gt;
&lt;p style="MARGIN: 0px"&gt;            &lt;span style="COLOR: #2b91af"&gt;Console&lt;/span&gt;.WriteLine();&lt;/p&gt;
&lt;p style="MARGIN: 0px"&gt; &lt;/p&gt;
&lt;p style="MARGIN: 0px"&gt;            &lt;span style="COLOR: #2b91af"&gt;Console&lt;/span&gt;.WriteLine(&lt;span style="COLOR: #a31515"&gt;"Changing to: "&lt;/span&gt;);&lt;/p&gt;
&lt;p style="MARGIN: 0px"&gt;            &lt;span style="COLOR: #2b91af"&gt;Console&lt;/span&gt;.WriteLine(&lt;span style="COLOR: #a31515"&gt;"MasterUrl:"&lt;/span&gt; + relativeUrl + newMasterUrl);&lt;/p&gt;
&lt;p style="MARGIN: 0px"&gt;            &lt;span style="COLOR: #2b91af"&gt;Console&lt;/span&gt;.WriteLine(&lt;span style="COLOR: #a31515"&gt;"CustomMasterUrl: "&lt;/span&gt; + relativeUrl + newCustomMasterUrl);&lt;/p&gt;
&lt;p style="MARGIN: 0px"&gt; &lt;/p&gt;
&lt;p style="MARGIN: 0px"&gt;            web.MasterUrl = relativeUrl + newMasterUrl;&lt;/p&gt;
&lt;p style="MARGIN: 0px"&gt;            web.CustomMasterUrl = relativeUrl + newCustomMasterUrl;&lt;/p&gt;
&lt;p style="MARGIN: 0px"&gt;            web.Update();&lt;/p&gt;
&lt;p style="MARGIN: 0px"&gt; &lt;/p&gt;
&lt;p style="MARGIN: 0px"&gt;            &lt;span style="COLOR: #2b91af"&gt;Console&lt;/span&gt;.WriteLine(&lt;span style="COLOR: #a31515"&gt;"Changed."&lt;/span&gt;);&lt;/p&gt;
&lt;p style="MARGIN: 0px"&gt; &lt;/p&gt;
&lt;p style="MARGIN: 0px"&gt;            &lt;span style="COLOR: #2b91af"&gt;Console&lt;/span&gt;.WriteLine();&lt;/p&gt;
&lt;p style="MARGIN: 0px"&gt;            &lt;span style="COLOR: #2b91af"&gt;Console&lt;/span&gt;.WriteLine(&lt;span style="COLOR: #a31515"&gt;"Changed to: "&lt;/span&gt;);&lt;/p&gt;
&lt;p style="MARGIN: 0px"&gt;            &lt;span style="COLOR: #2b91af"&gt;Console&lt;/span&gt;.WriteLine(&lt;span style="COLOR: #a31515"&gt;"MasterUrl:"&lt;/span&gt; + web.MasterUrl);&lt;/p&gt;
&lt;p style="MARGIN: 0px"&gt;            &lt;span style="COLOR: #2b91af"&gt;Console&lt;/span&gt;.WriteLine(&lt;span style="COLOR: #a31515"&gt;"CustomMasterUrl:"&lt;/span&gt; + web.CustomMasterUrl);&lt;/p&gt;
&lt;p style="MARGIN: 0px"&gt;        }&lt;/p&gt;
&lt;p style="MARGIN: 0px"&gt;    }&lt;/p&gt;
&lt;p style="MARGIN: 0px"&gt;}&lt;/p&gt;
&lt;p style="MARGIN: 0px"&gt;&lt;span style="COLOR: blue"&gt;catch&lt;/span&gt; (&lt;span style="COLOR: #2b91af"&gt;Exception&lt;/span&gt; ex)&lt;/p&gt;
&lt;p style="MARGIN: 0px"&gt;{&lt;/p&gt;
&lt;p style="MARGIN: 0px"&gt;    &lt;span style="COLOR: #2b91af"&gt;Console&lt;/span&gt;.WriteLine(ex.Message);&lt;/p&gt;
&lt;p style="MARGIN: 0px"&gt;}&lt;/p&gt;
&lt;p style="MARGIN: 0px"&gt; &lt;/p&gt;
&lt;p style="MARGIN: 0px"&gt;&lt;span style="COLOR: #2b91af"&gt;Console&lt;/span&gt;.WriteLine();&lt;/p&gt;
&lt;p style="MARGIN: 0px"&gt;&lt;span style="COLOR: #2b91af"&gt;Console&lt;/span&gt;.WriteLine(&lt;span style="COLOR: #a31515"&gt;"Press ENTER to exit."&lt;/span&gt;);&lt;/p&gt;
&lt;p style="MARGIN: 0px"&gt;&lt;span style="COLOR: #2b91af"&gt;Console&lt;/span&gt;.ReadKey();&lt;/p&gt;
&lt;p style="MARGIN: 0px"&gt; &lt;/p&gt;
&lt;p style="MARGIN: 0px"&gt; &lt;/p&gt;
&lt;p style="MARGIN: 0px"&gt;Reference:&lt;/p&gt;
&lt;p style="MARGIN: 0px"&gt;&lt;font face="Arial"&gt;&lt;a href="http://msdn.microsoft.com/en-us/library/bb687712.aspx"&gt;http://msdn.microsoft.com/en-us/library/bb687712.aspx&lt;/a&gt;&lt;/font&gt;&lt;/p&gt;
&lt;p style="MARGIN: 0px"&gt; &lt;/p&gt;
&lt;/div&gt;&lt;img src="http://www.vitendy.com/aggbug/24.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Vitaly</dc:creator>
            <guid>http://www.vitendy.com/archive/2009/05/26/custommasterurl-masterurl-default.master-custom.master-and-chromemasterurl.aspx</guid>
            <pubDate>Wed, 27 May 2009 00:19:59 GMT</pubDate>
            <wfw:comment>http://www.vitendy.com/comments/24.aspx</wfw:comment>
            <comments>http://www.vitendy.com/archive/2009/05/26/custommasterurl-masterurl-default.master-custom.master-and-chromemasterurl.aspx#feedback</comments>
            <wfw:commentRss>http://www.vitendy.com/comments/commentRss/24.aspx</wfw:commentRss>
        </item>
        <item>
            <title>More MOSS search crawler issues </title>
            <category>Development</category>
            <category>MOSS 2007</category>
            <link>http://www.vitendy.com/archive/2009/05/09/more-moss-search-crawler-issues.aspx</link>
            <description>&lt;p&gt;&lt;font face="Arial"&gt;&lt;strong&gt;"The crawler could not communicate with the server. Check that the server is available and that the firewall access is configured correctly.."&lt;/strong&gt;&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;This error sometimes shows up in the Crawl Log in the SSP.&lt;/p&gt;
&lt;p&gt;The issue in my case was a custom database that the crawler account did not have access to. Of course an easy way to figure this out is to login to the website as the crawler account -- to see what it sees...  It worked. A quick adjustment of SQL permissions and voila, we're crawling again.&lt;br /&gt;
&lt;/p&gt;&lt;img src="http://www.vitendy.com/aggbug/23.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Vitaly</dc:creator>
            <guid>http://www.vitendy.com/archive/2009/05/09/more-moss-search-crawler-issues.aspx</guid>
            <pubDate>Sat, 09 May 2009 19:45:33 GMT</pubDate>
            <wfw:comment>http://www.vitendy.com/comments/23.aspx</wfw:comment>
            <comments>http://www.vitendy.com/archive/2009/05/09/more-moss-search-crawler-issues.aspx#feedback</comments>
            <slash:comments>1</slash:comments>
            <wfw:commentRss>http://www.vitendy.com/comments/commentRss/23.aspx</wfw:commentRss>
        </item>
        <item>
            <title>MOSS Search Crawler not crawling content on Devevelopment machine</title>
            <category>Development</category>
            <category>MOSS 2007</category>
            <link>http://www.vitendy.com/archive/2009/05/09/moss-search-crawler-not-crawling-content-on-devevelopment-machine.aspx</link>
            <description>&lt;p&gt;Pesky little thing. MS introduced a loopback security check for websites accessed locally on the server. &lt;/p&gt;
&lt;p&gt;To fix:&lt;font face="Arial"&gt;&lt;a href="http://support.microsoft.com/kb/896861"&gt;http://support.microsoft.com/kb/896861&lt;/a&gt;&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;Click &lt;strong class="uiterm"&gt;Start&lt;/strong&gt;, click &lt;strong class="uiterm"&gt;Run&lt;/strong&gt;, type &lt;span class="userInput"&gt;regedit&lt;/span&gt;, and then click &lt;strong class="uiterm"&gt;OK&lt;/strong&gt;. &lt;/p&gt;
&lt;li&gt;In Registry Editor, locate and then click the following registry key:
&lt;div class="indent"&gt;&lt;strong class="uiterm"&gt;HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa&lt;/strong&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;Right-click &lt;strong class="uiterm"&gt;Lsa&lt;/strong&gt;, point to &lt;strong class="uiterm"&gt;New&lt;/strong&gt;, and then click &lt;strong class="uiterm"&gt;DWORD Value&lt;/strong&gt;. &lt;/li&gt;
&lt;li&gt;Type &lt;span class="userInput"&gt;DisableLoopbackCheck&lt;/span&gt;, and then press ENTER. &lt;/li&gt;
&lt;li&gt;Right-click &lt;strong class="uiterm"&gt;DisableLoopbackCheck&lt;/strong&gt;, and then click &lt;strong class="uiterm"&gt;Modify&lt;/strong&gt;. &lt;/li&gt;
&lt;li&gt;In the &lt;strong class="uiterm"&gt;Value data&lt;/strong&gt; box, type &lt;span class="userInput"&gt;1&lt;/span&gt;, and then click &lt;strong class="uiterm"&gt;OK&lt;/strong&gt;. &lt;/li&gt;
&lt;li&gt;Quit Registry Editor, and then restart your computer.&lt;/li&gt;
&lt;p&gt; &lt;/p&gt;&lt;img src="http://www.vitendy.com/aggbug/21.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Vitaly</dc:creator>
            <guid>http://www.vitendy.com/archive/2009/05/09/moss-search-crawler-not-crawling-content-on-devevelopment-machine.aspx</guid>
            <pubDate>Sat, 09 May 2009 19:09:43 GMT</pubDate>
            <wfw:comment>http://www.vitendy.com/comments/21.aspx</wfw:comment>
            <comments>http://www.vitendy.com/archive/2009/05/09/moss-search-crawler-not-crawling-content-on-devevelopment-machine.aspx#feedback</comments>
            <wfw:commentRss>http://www.vitendy.com/comments/commentRss/21.aspx</wfw:commentRss>
        </item>
        <item>
            <title>VMWare Workstation 6.5 Conversion Wizard Issue</title>
            <link>http://www.vitendy.com/archive/2009/04/27/vmware-workstation-6.5-conversion-wizard-issue.aspx</link>
            <description>&lt;p&gt;Here is an error that is somewhat puzzling. But the solution was simple enough.&lt;/p&gt;
&lt;p&gt;When converting an existing Microsoft Virtual PC instance to WMWare, I got this error:&lt;/p&gt;
&lt;p&gt;&lt;em&gt;Unable to load the source virtual machine or image. The file might be corrupt, or of an unsupported format.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;&lt;img height="187" width="493" alt="" src="/images/www_vitendy_com/BlogPosts/blog_vmware_error_import_wizard.jpg" /&gt;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;The Log Info link directed me to &lt;font face="Arial"&gt;C:\Windows\Temp\vmware-temp\ &lt;/font&gt;&lt;/p&gt;
&lt;p&gt;Opened &lt;font face="Arial"&gt;vmware-converter-0.log file to find this:&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face="Arial"&gt;&lt;em&gt;[#3] [2009-04-27 19:28:38.626 'App' 5696 verbose] [,0] DISKLIB-LIB   : Failed to open 'D:\VPC\MOSSDEV\CommonStore.vhd' with flags 0x15 (The system cannot find the file specified).&lt;/em&gt;&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;The VPC to be converted references a VHD file in a different folder than where the .VMC file is. Apparently the wizard is looking for .VHD files in the same folder, regardless of the actual setting...&lt;/p&gt;
&lt;p&gt;A quick edit of the VPC settings (remove or move the VHD file) and all is well.&lt;/p&gt;
&lt;p&gt;&lt;font size="3" /&gt;&lt;/p&gt;&lt;img src="http://www.vitendy.com/aggbug/17.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Vitaly</dc:creator>
            <guid>http://www.vitendy.com/archive/2009/04/27/vmware-workstation-6.5-conversion-wizard-issue.aspx</guid>
            <pubDate>Tue, 28 Apr 2009 00:05:09 GMT</pubDate>
            <wfw:comment>http://www.vitendy.com/comments/17.aspx</wfw:comment>
            <comments>http://www.vitendy.com/archive/2009/04/27/vmware-workstation-6.5-conversion-wizard-issue.aspx#feedback</comments>
            <wfw:commentRss>http://www.vitendy.com/comments/commentRss/17.aspx</wfw:commentRss>
        </item>
        <item>
            <title>Do you know your LDAP string?</title>
            <category>Development</category>
            <link>http://www.vitendy.com/archive/2008/11/02/do-you-know-your-ldap-string.aspx</link>
            <description>&lt;p&gt;You should. But here is a tool that can help get it:&lt;/p&gt;
&lt;p&gt;&lt;font face="Arial"&gt;&lt;a href="http://www.infopathdev.com/files/folders/help_files/entry25827.aspx"&gt;http://www.infopathdev.com/files/folders/help_files/entry25827.aspx&lt;/a&gt;&lt;/font&gt;&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;&lt;img src="http://www.vitendy.com/aggbug/16.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Vitaly</dc:creator>
            <guid>http://www.vitendy.com/archive/2008/11/02/do-you-know-your-ldap-string.aspx</guid>
            <pubDate>Sun, 02 Nov 2008 19:16:59 GMT</pubDate>
            <wfw:comment>http://www.vitendy.com/comments/16.aspx</wfw:comment>
            <comments>http://www.vitendy.com/archive/2008/11/02/do-you-know-your-ldap-string.aspx#feedback</comments>
            <wfw:commentRss>http://www.vitendy.com/comments/commentRss/16.aspx</wfw:commentRss>
        </item>
        <item>
            <title>CLR .Net Versions</title>
            <category>Development</category>
            <link>http://www.vitendy.com/archive/2008/09/29/clr-.net-versions.aspx</link>
            <description>&lt;p&gt;Do you know the difference between .Net CLR versions? Is 2.0.50727.1433 newere than 2.0.50727.42? What's the difference? &lt;/p&gt;
&lt;p&gt;Here is a nice reference:&lt;/p&gt;
&lt;p&gt;&lt;font face="Arial"&gt;&lt;a href="http://alt.pluralsight.com/wiki/default.aspx/Keith/DotnetVersionWiki.html"&gt;http://alt.pluralsight.com/wiki/default.aspx/Keith/DotnetVersionWiki.html&lt;/a&gt;&lt;/font&gt;&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;&lt;img src="http://www.vitendy.com/aggbug/14.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Vitaly</dc:creator>
            <guid>http://www.vitendy.com/archive/2008/09/29/clr-.net-versions.aspx</guid>
            <pubDate>Mon, 29 Sep 2008 16:09:30 GMT</pubDate>
            <wfw:comment>http://www.vitendy.com/comments/14.aspx</wfw:comment>
            <comments>http://www.vitendy.com/archive/2008/09/29/clr-.net-versions.aspx#feedback</comments>
            <wfw:commentRss>http://www.vitendy.com/comments/commentRss/14.aspx</wfw:commentRss>
        </item>
        <item>
            <title>Import Excel Sheet to SQL Server 2005 database</title>
            <category>Development</category>
            <link>http://www.vitendy.com/archive/2008/07/15/import-excel-sheet-to-sql-server-2005-database.aspx</link>
            <description>&lt;p&gt;What should be a simple engagement turned into a headache this evening. Importing from Excel in Sql 2005 has become more cumbersome due to various 'issues' with the import/export wizard.  So here is a good solution:&lt;/p&gt;
&lt;p&gt;SELECT * INTO XLImport4 FROM OPENROWSET('Microsoft.Jet.OLEDB.4.0','Excel 8.0;Database=C:\test\xltest.xls', [Customers$])&lt;/p&gt;
&lt;p&gt;May have to enable Ad Hoc Remote queries in SAC.&lt;/p&gt;
&lt;p&gt;May have to place the Excel file on the SQL server's file system.&lt;/p&gt;
&lt;p&gt;Reference: &lt;font face="Arial"&gt;&lt;a href="http://support.microsoft.com/kb/321686/en-us"&gt;http://support.microsoft.com/kb/321686/en-us&lt;/a&gt;&lt;/font&gt;&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt; &lt;/p&gt;&lt;img src="http://www.vitendy.com/aggbug/12.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Vitaly</dc:creator>
            <guid>http://www.vitendy.com/archive/2008/07/15/import-excel-sheet-to-sql-server-2005-database.aspx</guid>
            <pubDate>Tue, 15 Jul 2008 08:20:42 GMT</pubDate>
            <wfw:comment>http://www.vitendy.com/comments/12.aspx</wfw:comment>
            <comments>http://www.vitendy.com/archive/2008/07/15/import-excel-sheet-to-sql-server-2005-database.aspx#feedback</comments>
            <wfw:commentRss>http://www.vitendy.com/comments/commentRss/12.aspx</wfw:commentRss>
        </item>
    </channel>
</rss>