<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for SharePointed</title>
	<atom:link href="http://www.sharepointed.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.sharepointed.com</link>
	<description>All things SharePoint</description>
	<lastBuildDate>Fri, 27 Jan 2012 03:00:28 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
	<item>
		<title>Comment on The My Site of [user name] is scheduled for deletion by Ian Hayse</title>
		<link>http://www.sharepointed.com/2009/01/30/the-my-site-of-user-name-is-scheduled-for-deletion/comment-page-1/#comment-8785</link>
		<dc:creator>Ian Hayse</dc:creator>
		<pubDate>Fri, 27 Jan 2012 03:00:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.sharepointed.com/2009/01/30/the-my-site-of-user-name-is-scheduled-for-deletion/#comment-8785</guid>
		<description>i&#039;d say PowerShell it.
if you need help with the script, let me know.</description>
		<content:encoded><![CDATA[<p>i&#8217;d say PowerShell it.<br />
if you need help with the script, let me know.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The My Site of [user name] is scheduled for deletion by Bob</title>
		<link>http://www.sharepointed.com/2009/01/30/the-my-site-of-user-name-is-scheduled-for-deletion/comment-page-1/#comment-8784</link>
		<dc:creator>Bob</dc:creator>
		<pubDate>Thu, 26 Jan 2012 15:43:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.sharepointed.com/2009/01/30/the-my-site-of-user-name-is-scheduled-for-deletion/#comment-8784</guid>
		<description>All well and good, but what about if I want to delete a bunch of user profiles.  Is there a way to shut the email notification for MySites off?</description>
		<content:encoded><![CDATA[<p>All well and good, but what about if I want to delete a bunch of user profiles.  Is there a way to shut the email notification for MySites off?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Update Hyperlink Field in SharePoint with PowerShell by Ian Hayse</title>
		<link>http://www.sharepointed.com/2011/09/09/update-hyperlink-field-in-sharepoint-with-powershell/comment-page-1/#comment-8771</link>
		<dc:creator>Ian Hayse</dc:creator>
		<pubDate>Thu, 19 Jan 2012 20:04:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.sharepointed.com/?p=680#comment-8771</guid>
		<description>I use the free PowerShell editor from Quest.
http://www.quest.com/powershell/

Make sure to add the add-pssnapin...
Also try updating a sub-site.

Your code should look something like this:

[code]
Add-PSSnapin Microsoft.SharePoint.PowerShell

$web = Get-SPWeb &quot;sharepoint/sites/yourSubSite&quot; 
$spList = $web.Lists[&quot;Your List Name&quot;]

			foreach($Item in $spList.Items )
			{
				$ofldurl= new-object Microsoft.SharePoint.SPFieldUrlValue($Item[&quot;URL&quot;])

				$ofldurl.URL = $ofldurl.URL.Replace(&quot;1033/&quot;, &quot;&quot;)
				$ofldurl.Description = $ofldurl.Description.Replace($ofldurl.Description, $ofldurl.Description)

				$item[&quot;URL&quot;] = $ofldurl
				$item.update()
			}

$Web.Dispose()
[/code]</description>
		<content:encoded><![CDATA[<p>I use the free PowerShell editor from Quest.<br />
<a href="http://www.quest.com/powershell/" rel="nofollow">http://www.quest.com/powershell/</a></p>
<p>Make sure to add the add-pssnapin&#8230;<br />
Also try updating a sub-site.</p>
<p>Your code should look something like this:</p>
<pre class="brush: plain; title: ; notranslate">
Add-PSSnapin Microsoft.SharePoint.PowerShell

$web = Get-SPWeb &quot;sharepoint/sites/yourSubSite&quot;
$spList = $web.Lists[&quot;Your List Name&quot;]

			foreach($Item in $spList.Items )
			{
				$ofldurl= new-object Microsoft.SharePoint.SPFieldUrlValue($Item[&quot;URL&quot;])

				$ofldurl.URL = $ofldurl.URL.Replace(&quot;1033/&quot;, &quot;&quot;)
				$ofldurl.Description = $ofldurl.Description.Replace($ofldurl.Description, $ofldurl.Description)

				$item[&quot;URL&quot;] = $ofldurl
				$item.update()
			}

$Web.Dispose()
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Update Hyperlink Field in SharePoint with PowerShell by Paolo Tarsis</title>
		<link>http://www.sharepointed.com/2011/09/09/update-hyperlink-field-in-sharepoint-with-powershell/comment-page-1/#comment-8768</link>
		<dc:creator>Paolo Tarsis</dc:creator>
		<pubDate>Thu, 19 Jan 2012 18:38:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.sharepointed.com/?p=680#comment-8768</guid>
		<description>When I tried to run the script (having first modified it to point to things in my world),  I received the following error:
New-Object : Cannot find type [Microsoft.SharePoint.SPSite]: make sure the assembly containing this type is loaded.
At Z:\extranets\fixurls.ps1:6 char:21
+ $spSite = new-object &lt;&lt;&lt;&lt;  Microsoft.SharePoint.SPSite($siteurl)
    + CategoryInfo          : InvalidType: (:) [New-Object], PSArgumentException
    + FullyQualifiedErrorId : TypeNotFound,Microsoft.PowerShell.Commands.NewObjectCommand


It seems I missing some software, any ideas on what?  Thanks!</description>
		<content:encoded><![CDATA[<p>When I tried to run the script (having first modified it to point to things in my world),  I received the following error:<br />
New-Object : Cannot find type [Microsoft.SharePoint.SPSite]: make sure the assembly containing this type is loaded.<br />
At Z:\extranets\fixurls.ps1:6 char:21<br />
+ $spSite = new-object &lt;&lt;&lt;&lt;  Microsoft.SharePoint.SPSite($siteurl)<br />
    + CategoryInfo          : InvalidType: (:) [New-Object], PSArgumentException<br />
    + FullyQualifiedErrorId : TypeNotFound,Microsoft.PowerShell.Commands.NewObjectCommand</p>
<p>It seems I missing some software, any ideas on what?  Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Unable to load workflow actions from the server by Lothar</title>
		<link>http://www.sharepointed.com/2011/08/16/unable-to-load-workflow-actions-from-the-server/comment-page-1/#comment-8712</link>
		<dc:creator>Lothar</dc:creator>
		<pubDate>Sat, 17 Dec 2011 16:13:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.sharepointed.com/?p=647#comment-8712</guid>
		<description>...you saved my day - thanks a lot!</description>
		<content:encoded><![CDATA[<p>&#8230;you saved my day &#8211; thanks a lot!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Unable to load workflow actions from the server by Mark</title>
		<link>http://www.sharepointed.com/2011/08/16/unable-to-load-workflow-actions-from-the-server/comment-page-1/#comment-8637</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Wed, 16 Nov 2011 22:16:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.sharepointed.com/?p=647#comment-8637</guid>
		<description>I was running into the same thing.  I downloaded Fiddler2 and installed it, had to get it to decrypt the https traffic, but sure enough it identified a missing feature.  I had to remove the feature a few days before to perform a service pack update on the server, copied over the files and it started working again.  Great find.</description>
		<content:encoded><![CDATA[<p>I was running into the same thing.  I downloaded Fiddler2 and installed it, had to get it to decrypt the https traffic, but sure enough it identified a missing feature.  I had to remove the feature a few days before to perform a service pack update on the server, copied over the files and it started working again.  Great find.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on HTTP Error 503. The service is unavailable. by Marvin Masson</title>
		<link>http://www.sharepointed.com/2009/06/08/http-error-503-the-service-is-unavailable/comment-page-1/#comment-8636</link>
		<dc:creator>Marvin Masson</dc:creator>
		<pubDate>Wed, 16 Nov 2011 18:04:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.sharepointed.com/?p=394#comment-8636</guid>
		<description>After trying many things this worked for me. In my case the password never changed. It just quit working after a microsoft update. To change the password, right click the SBS app pool, select Basic Settings, find account and click the (...) button. It will then prompt you for username and password and wham you are back in business.</description>
		<content:encoded><![CDATA[<p>After trying many things this worked for me. In my case the password never changed. It just quit working after a microsoft update. To change the password, right click the SBS app pool, select Basic Settings, find account and click the (&#8230;) button. It will then prompt you for username and password and wham you are back in business.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Copy List from 2007 to 2010 by Ian Hayse</title>
		<link>http://www.sharepointed.com/2011/08/12/copy-list-from-2007-to-2010/comment-page-1/#comment-8598</link>
		<dc:creator>Ian Hayse</dc:creator>
		<pubDate>Fri, 04 Nov 2011 00:07:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.sharepointed.com/?p=641#comment-8598</guid>
		<description>true.
Better way would be to use PowerShell.</description>
		<content:encoded><![CDATA[<p>true.<br />
Better way would be to use PowerShell.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Copy List from 2007 to 2010 by Jedik</title>
		<link>http://www.sharepointed.com/2011/08/12/copy-list-from-2007-to-2010/comment-page-1/#comment-8595</link>
		<dc:creator>Jedik</dc:creator>
		<pubDate>Thu, 03 Nov 2011 15:09:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.sharepointed.com/?p=641#comment-8595</guid>
		<description>i did this and its very nice way to copy, but it just doesn&#039;t work when list contains items with folder type. all items land in main store</description>
		<content:encoded><![CDATA[<p>i did this and its very nice way to copy, but it just doesn&#8217;t work when list contains items with folder type. all items land in main store</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SharePoint Designer Sucks by Ian Hayse</title>
		<link>http://www.sharepointed.com/2011/10/05/sharepoint-designer-sucks/comment-page-1/#comment-8517</link>
		<dc:creator>Ian Hayse</dc:creator>
		<pubDate>Fri, 14 Oct 2011 23:03:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.sharepointed.com/?p=711#comment-8517</guid>
		<description>It was one of those days when I posted this.

Spend 1/4 mill on software and hardware for new farm.
SP Designer randomly crashes, no bueno.</description>
		<content:encoded><![CDATA[<p>It was one of those days when I posted this.</p>
<p>Spend 1/4 mill on software and hardware for new farm.<br />
SP Designer randomly crashes, no bueno.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

