<?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/"
	>

<channel>
	<title>Eddy Blanco</title>
	<atom:link href="http://eddyblanco.com/blog/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://eddyblanco.com/blog</link>
	<description>Sharepoint Making Technology Simpler</description>
	<pubDate>Sun, 04 Sep 2011 19:02:35 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>BDC Service Application Throttle Settings in SharePoint 2010</title>
		<link>http://eddyblanco.com/blog/?p=148</link>
		<comments>http://eddyblanco.com/blog/?p=148#comments</comments>
		<pubDate>Thu, 25 Aug 2011 14:36:05 +0000</pubDate>
		<dc:creator>eddyblanco</dc:creator>
		
		<category><![CDATA[Sharepoint]]></category>

		<guid isPermaLink="false">http://eddyblanco.com/blog/?p=148</guid>
		<description><![CDATA[If the throttle limit is exceeded, end users will received a message with the following “Unable to display this web part” following with the correlation ID.
You could either modify the throttle with a specified max return or turn off.
To Turn Off
1.
$bdcProxy = Get-SPServiceApplicationProxy &#124; where {$_.GetType().FullName -eq (‘Microsoft.SharePoint.BusinessData.SharedService.’ + ‘BdcServiceApplicationProxy’)}
2.
$dbRule = Get-SPBusinessDataCatalogThrottleConfig -Scope Database -ThrottleType [...]]]></description>
			<content:encoded><![CDATA[<p>If the throttle limit is exceeded, end users will received a message with the following “Unable to display this web part” following with the correlation ID.<br />
You could either modify the throttle with a specified max return or turn off.</p>
<p><strong>To Turn Off<br />
</strong>1.<br />
$bdcProxy = Get-SPServiceApplicationProxy | where {$_.GetType().FullName -eq (‘Microsoft.SharePoint.BusinessData.SharedService.’ + ‘BdcServiceApplicationProxy’)}<br />
2.<br />
$dbRule = Get-SPBusinessDataCatalogThrottleConfig -Scope Database -ThrottleType Items -ServiceApplicationProxy $bdcProxy<br />
3.<br />
Set-SPBusinessDataCatalogThrottleConfig -Identity $dbRule -Enforced:$false</p>
<p><strong>To Modified </strong></p>
<p>1.<br />
Add-PSSSnapin Microsoft.SharePoint.PowerShell -ErrorAction SilentlyContinue<br />
$bdc = Get-SPServiceApplicationProxy |<br />
Where {$_ -match &#8220;Business Data Connectivity&#8221;}</p>
<p>2.<br />
$throttle = Get-SPBusinessDataCatalogThrotteConfig<br />
-ThrottleType Items -Scope Database -ServiceApplicationProxy $bdc</p>
<p>3.<br />
Set-SpBusinessDataCatalogThrottleConfig -Maximum 10000<br />
-Default 8000 -Identity $Throttle</p>
]]></content:encoded>
			<wfw:commentRss>http://eddyblanco.com/blog/?feed=rss2&amp;p=148</wfw:commentRss>
		</item>
		<item>
		<title>Developers DashBoard in Sharepoint 2010</title>
		<link>http://eddyblanco.com/blog/?p=145</link>
		<comments>http://eddyblanco.com/blog/?p=145#comments</comments>
		<pubDate>Sun, 05 Jun 2011 21:55:59 +0000</pubDate>
		<dc:creator>eddyblanco</dc:creator>
		
		<category><![CDATA[Sharepoint]]></category>

		<guid isPermaLink="false">http://eddyblanco.com/blog/?p=145</guid>
		<description><![CDATA[In order to enable the dashboard run the following PowerShell command
 
To enable:
$dash = [Microsoft.SharePoint.Administration.SPWebService]::ContentService
$settings = $dash.DeveloperDashboardSettings
$settings.DisplayLevel = [Microsoft.SharePoint.Administration.SPDeveloperDashboardLevel]::OnDemand
$settings.Update()

To disable it:
$dash = [Microsoft.SharePoint.Administration.SPWebService]::ContentService
$settings = $dash.DeveloperDashboardSettings
$settings.DisplayLevel = [Microsoft.SharePoint.Administration.SPDeveloperDashboardLevel]::Off
$settings.Update()
]]></description>
			<content:encoded><![CDATA[<p>In order to enable the dashboard run the following PowerShell command</p>
<p> </p>
<p><strong>To enable:</strong></p>
<p>$dash = [Microsoft.SharePoint.Administration.SPWebService]::ContentService<br />
$settings = $dash.DeveloperDashboardSettings<br />
$settings.DisplayLevel = [Microsoft.SharePoint.Administration.SPDeveloperDashboardLevel]::OnDemand<br />
$settings.Update()</p>
<p><strong></strong></p>
<p><strong>To disable it:</strong></p>
<p>$dash = [Microsoft.SharePoint.Administration.SPWebService]::ContentService<br />
$settings = $dash.DeveloperDashboardSettings<br />
$settings.DisplayLevel = [Microsoft.SharePoint.Administration.SPDeveloperDashboardLevel]::Off<br />
$settings.Update()</p>
]]></content:encoded>
			<wfw:commentRss>http://eddyblanco.com/blog/?feed=rss2&amp;p=145</wfw:commentRss>
		</item>
		<item>
		<title>Project Server 2010 Installation</title>
		<link>http://eddyblanco.com/blog/?p=70</link>
		<comments>http://eddyblanco.com/blog/?p=70#comments</comments>
		<pubDate>Wed, 03 Nov 2010 20:31:23 +0000</pubDate>
		<dc:creator>eddyblanco</dc:creator>
		
		<category><![CDATA[Project Server]]></category>

		<category><![CDATA[Project Server 2010]]></category>

		<guid isPermaLink="false">http://eddyblanco.com/blog/?p=70</guid>
		<description><![CDATA[During the installation of Project Server 2010 there are a few items that should be considered, one of them been the Common Language Runtime which increases the performance by 20%
sp_configure ‘clr enabled’ , 1;
go
Reconfigure;
go
]]></description>
			<content:encoded><![CDATA[<p>During the installation of Project Server 2010 there are a few items that should be considered, one of them been the Common Language Runtime which increases the performance by 20%</p>
<blockquote><p>sp_configure ‘clr enabled’ , 1;<br />
go<br />
Reconfigure;<br />
go</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://eddyblanco.com/blog/?feed=rss2&amp;p=70</wfw:commentRss>
		</item>
		<item>
		<title>How to copy files across SharePoint libraries.</title>
		<link>http://eddyblanco.com/blog/?p=61</link>
		<comments>http://eddyblanco.com/blog/?p=61#comments</comments>
		<pubDate>Fri, 22 Jan 2010 13:03:51 +0000</pubDate>
		<dc:creator>eddyblanco</dc:creator>
		
		<category><![CDATA[Sharepoint]]></category>

		<category><![CDATA[MOSS 2007]]></category>

		<guid isPermaLink="false">http://eddyblanco.com/blog/?p=61</guid>
		<description><![CDATA[Yesterday, I was working on a SharePoint Workflow. I needed to copy the final InfoPath (xml) to a different library. My first thought was to use the spfile.copyto but that gave me the &#8220;Value does not fall within the expected range.&#8221; or COM errors.
Instead of wasting my time trying to figure out how to make the copyto  [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday, I was working on a SharePoint Workflow. I needed to copy the final InfoPath (xml) to a different library. My first thought was to use the spfile.copyto but that gave me the &#8220;Value does not fall within the expected range.&#8221; or COM errors.<br />
Instead of wasting my time trying to figure out how to make the copyto  method copy across site collections, I did the following.<br />
   </p>
<blockquote><p>SPFile file = workflowProperties.Item.File;<br />
string xmlFileContent = System.Text.Encoding.Default.GetString(file.OpenBinary());<br />
int index = xmlFileContent.IndexOf(”&lt;?xml”);<br />
if (index != 0)<br />
    xmlFileContent = xmlFileContent.Remove(0, index);<br />
XmlDocument doc = new XmlDocument();<br />
doc.LoadXml(xmlFileContent);<br />
XmlNamespaceManager mgr = new XmlNamespaceManager(doc.NameTable);<br />
mgr.AddNamespace(”my”, @”http://schemas.microsoft.com/office/infopath/2003/myXSD/2007-10-05T17:30:02”</p></blockquote>
<p> I needed to set the status before I move to the new location.</p>
<blockquote><p>XmlNode nodeStatus = doc.DocumentElement.SelectSingleNode(&#8221;/my:myFields/my:FormStatus&#8221;, mgr);<br />
nodeStatus.InnerText = status;<br />
char[] newFile = doc.InnerXml.ToCharArray();<br />
file.SaveBinary(System.Text.Encoding.Default.GetBytes(newFile));<br />
Stream s = file2.OpenBinaryStream();<br />
SPFolder target = curweb.GetFolder(&#8221;Contract&#8221;);<br />
SPFile ofile = curweb.GetFile(&#8221;Contract/&#8221; + _requestName + &#8220;.xml&#8221;);<br />
if (ofile.Exists)<br />
    ofile.Delete();<br />
target.Files.Add(_requestName + &#8220;.xml&#8221;, s);<br />
fileURLWorkSpace = thedestinationlocation-URL + _requestName + &#8220;.xml&#8221;;<br />
target.Update(</p>
<p> Hope this helps someone.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://eddyblanco.com/blog/?feed=rss2&amp;p=61</wfw:commentRss>
		</item>
		<item>
		<title>Installing the PWA site for Sharepoint</title>
		<link>http://eddyblanco.com/blog/?p=54</link>
		<comments>http://eddyblanco.com/blog/?p=54#comments</comments>
		<pubDate>Wed, 21 Oct 2009 13:58:25 +0000</pubDate>
		<dc:creator>eddyblanco</dc:creator>
		
		<category><![CDATA[Project Server]]></category>

		<guid isPermaLink="false">http://eddyblanco.com/blog/?p=54</guid>
		<description><![CDATA[The process to install an instance of Project Server 2007 and the PWA site required a several steps. Please follow the instructions below.
First we have to make sure that the “Project Application Services” is running.
Open the SharePoint Central Administration website and select the “Operations” tab under Topology and services select “Services on Server”. Select “Project [...]]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal" style="margin: 0in 0in 10pt;"><span style="font-family: Calibri; font-size: small;">The process to install an instance of Project Server 2007 and the PWA site required a several steps. Please follow the instructions below.</span></p>
<p class="MsoNormal" style="margin: 0in 0in 10pt;"><span style="font-family: Calibri; font-size: small;">First we have to make sure that the “Project Application Services” is running.</span></p>
<p class="MsoNormal" style="margin: 0in 0in 10pt;"><span style="font-family: Calibri; font-size: small;">Open the </span><strong><span style="line-height: 115%; font-family: &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: #4c4c4c; font-size: 10pt;">SharePoint Central Administration</span></strong><span style="line-height: 115%; font-family: &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: #4c4c4c; font-size: 10pt;"> website and select the “<strong style="mso-bidi-font-weight: normal;">Operations”</strong> tab under Topology and services select “Services on Server”. Select “Project Application” and start the “Project Application Service” if is stop.</span></p>
<p class="MsoNormal" style="margin: 0in 0in 10pt;"><span style="line-height: 115%; font-family: &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: #4c4c4c; font-size: 10pt;">In order to install the PWA site do the following</span></p>
<p class="MsoNormal" style="margin: 0in 0in 10pt;"><span style="font-family: Calibri; font-size: small;">Open the </span><strong><span style="line-height: 115%; font-family: &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: #4c4c4c; font-size: 10pt;">SharePoint Central Administration </span></strong><span style="line-height: 115%; font-family: &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: #4c4c4c; font-size: 10pt; mso-bidi-font-weight: bold;">website. Select SharedServices1 or the name of your SSP link in the left menu. Then select</span></p>
<p><a href="http://eddyblanco.com/blog/wp-content/uploads/2009/10/admin-01.jpg"><img class="alignnone size-medium wp-image-55" title="admin-01" src="http://eddyblanco.com/blog/wp-content/uploads/2009/10/admin-01-300x193.jpg" alt="admin-01" width="300" height="193" /></a><a href="http://eddyblanco.com/blog/wp-content/uploads/2009/10/admin-04.jpg"></a></p>
<p><span style="line-height: 115%; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;; font-size: 11pt; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: 'Times New Roman'; mso-bidi-theme-font: minor-bidi; mso-no-proof: yes; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA;">Then Click on the “Project Web Access Site” under Project Server heading. </span></p>
<p><span style="line-height: 115%; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;; font-size: 11pt; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: 'Times New Roman'; mso-bidi-theme-font: minor-bidi; mso-no-proof: yes; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA;"><a href="http://eddyblanco.com/blog/wp-content/uploads/2009/10/admin-03.jpg"><img class="alignnone size-medium wp-image-57" title="admin-03" src="http://eddyblanco.com/blog/wp-content/uploads/2009/10/admin-03-300x193.jpg" alt="admin-03" width="300" height="193" /></a></span></p>
<p class="MsoNormal" style="margin: 0in 0in 10pt;"><span style="mso-no-proof: yes;"><span style="font-size: small;"><span style="font-family: Calibri;">Under the “Manage Project Web Access Site” Click the Create Project Web Acess Site button.<a href="http://eddyblanco.com/blog/wp-content/uploads/2009/10/admin-03.jpg"></a></span></span></span></p>
<p><a href="http://eddyblanco.com/blog/wp-content/uploads/2009/10/admin-04.jpg"><img class="alignnone size-medium wp-image-58" title="admin-04" src="http://eddyblanco.com/blog/wp-content/uploads/2009/10/admin-04-300x193.jpg" alt="admin-04" width="300" height="193" /></a></p>
<p class="MsoNormal" style="line-height: 20.4pt; margin: 0in 0in 0pt;"><span style="font-family: &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: #4c4c4c; font-size: 10pt; mso-fareast-font-family: 'Times New Roman';">On the <strong>Create Project Web Access Site</strong> page, enter the following information, then click the <strong>OK</strong> </span><span style="font-family: &quot;Times New Roman&quot;,&quot;serif&quot;; color: #4c4c4c; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"></span></p>
<p class="MsoNormal" style="line-height: 20.4pt; margin: 0in 0in 0pt 0.5in;"><span style="font-family: &quot;Times New Roman&quot;,&quot;serif&quot;; color: #4c4c4c; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"> </span></p>
<p class="MsoNormal" style="line-height: 20.4pt; margin: 0in 0in 0pt;"><strong><span style="font-family: &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: #4c4c4c; font-size: 10pt; mso-fareast-font-family: 'Times New Roman';">SharePoint Web Application to host Project Web Access:</span></strong><span style="font-family: &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: #4c4c4c; font-size: 10pt; mso-fareast-font-family: 'Times New Roman';"> &lt;The Name of the website&gt;</span><span style="font-family: &quot;Times New Roman&quot;,&quot;serif&quot;; color: #4c4c4c; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"></span></p>
<p class="MsoNormal" style="line-height: 20.4pt; margin: 0in 0in 0pt;"><strong><span style="font-family: &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: #4c4c4c; font-size: 10pt; mso-fareast-font-family: 'Times New Roman';">Project Web Access path:</span></strong><span style="font-family: &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: #4c4c4c; font-size: 10pt; mso-fareast-font-family: 'Times New Roman';"> PWA</span><span style="font-family: &quot;Times New Roman&quot;,&quot;serif&quot;; color: #4c4c4c; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"></span></p>
<p class="MsoNormal" style="line-height: 20.4pt; margin: 0in 0in 0pt;"><strong><span style="font-family: &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: #4c4c4c; font-size: 10pt; mso-fareast-font-family: 'Times New Roman';">Administrator account: </span></strong><span style="font-family: &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: #4c4c4c; font-size: 10pt; mso-fareast-font-family: 'Times New Roman';">&lt;Account&gt;</span><span style="font-family: &quot;Times New Roman&quot;,&quot;serif&quot;; color: #4c4c4c; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"></span></p>
<p class="MsoNormal" style="line-height: 20.4pt; margin: 0in 0in 0pt;"><strong><span style="font-family: &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: #4c4c4c; font-size: 10pt; mso-fareast-font-family: 'Times New Roman';">Primary Database:</span></strong><span style="font-family: &quot;Times New Roman&quot;,&quot;serif&quot;; color: #4c4c4c; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"></span></p>
<p class="MsoNormal" style="line-height: 20.4pt; margin: 0in 0in 0pt 1.5in;"><strong><span style="font-family: &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: #4c4c4c; font-size: 10pt; mso-fareast-font-family: 'Times New Roman';">Primary database server:</span></strong><span style="font-family: &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: #4c4c4c; font-size: 10pt; mso-fareast-font-family: 'Times New Roman';"> &lt;Server Name&gt;</span><span style="font-family: &quot;Times New Roman&quot;,&quot;serif&quot;; color: #4c4c4c; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"></span></p>
<p class="MsoNormal" style="line-height: 20.4pt; margin: 0in 0in 0pt 1.5in;"><strong><span style="font-family: &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: #4c4c4c; font-size: 10pt; mso-fareast-font-family: 'Times New Roman';">Published database name:</span></strong><span style="font-family: &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: #4c4c4c; font-size: 10pt; mso-fareast-font-family: 'Times New Roman';"> Default is &lt;ProjectServer_Published&gt;</span><span style="font-family: &quot;Times New Roman&quot;,&quot;serif&quot;; color: #4c4c4c; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"></span></p>
<p class="MsoNormal" style="line-height: 20.4pt; margin: 0in 0in 0pt 1.5in;"><strong><span style="font-family: &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: #4c4c4c; font-size: 10pt; mso-fareast-font-family: 'Times New Roman';">Draft database name:</span></strong><span style="font-family: &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: #4c4c4c; font-size: 10pt; mso-fareast-font-family: 'Times New Roman';"> Default is &lt;ProjectServer_Draft&gt;</span><span style="font-family: &quot;Times New Roman&quot;,&quot;serif&quot;; color: #4c4c4c; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"></span></p>
<p class="MsoNormal" style="line-height: 20.4pt; margin: 0in 0in 0pt 1.5in;"><strong><span style="font-family: &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: #4c4c4c; font-size: 10pt; mso-fareast-font-family: 'Times New Roman';">Archive database name: </span></strong><span style="font-family: &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: #4c4c4c; font-size: 10pt; mso-fareast-font-family: 'Times New Roman';">Default is &lt;ProjectServer_Archive&gt;</span><span style="font-family: &quot;Times New Roman&quot;,&quot;serif&quot;; color: #4c4c4c; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"></span></p>
<p class="MsoNormal" style="line-height: 20.4pt; margin: 0in 0in 0pt;"><strong><span style="font-family: &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: #4c4c4c; font-size: 10pt; mso-fareast-font-family: 'Times New Roman';">Reporting Database:</span></strong><span style="font-family: &quot;Times New Roman&quot;,&quot;serif&quot;; color: #4c4c4c; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"></span></p>
<p class="MsoNormal" style="line-height: 20.4pt; margin: 0in 0in 0pt 1.5in;"><strong><span style="font-family: &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: #4c4c4c; font-size: 10pt; mso-fareast-font-family: 'Times New Roman';">Use the primary database server:</span></strong><span style="font-family: &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: #4c4c4c; font-size: 10pt; mso-fareast-font-family: 'Times New Roman';"> Yes</span><span style="font-family: &quot;Times New Roman&quot;,&quot;serif&quot;; color: #4c4c4c; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';"></span></p>
<p class="MsoNormal" style="line-height: 20.4pt; margin: 0in 0in 0pt 1.5in;"><strong><span style="font-family: &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: #4c4c4c; font-size: 10pt; mso-fareast-font-family: 'Times New Roman';">Reporting database name:</span></strong><span style="font-family: &quot;Tahoma&quot;,&quot;sans-serif&quot;; color: #4c4c4c; font-size: 10pt; mso-fareast-font-family: 'Times New Roman';"> Default is <span style="mso-spacerun: yes;"> </span>&lt;ProjectServer_Reporting&gt;</span></p>
<p class="MsoNormal" style="line-height: 20.4pt; margin: 0in 0in 0pt;"><span style="font-family: &quot;Times New Roman&quot;,&quot;serif&quot;; color: #4c4c4c; font-size: 12pt; mso-fareast-font-family: 'Times New Roman';">At the end is going to take a few minutes to create the PWA site and DB’s. Click on refresh tilt you see “Provisioned” Once is completed the PWA site is ready. </span></p>
<p><a href="http://eddyblanco.com/blog/wp-content/uploads/2009/10/admin-04.jpg"></a></p>
]]></content:encoded>
			<wfw:commentRss>http://eddyblanco.com/blog/?feed=rss2&amp;p=54</wfw:commentRss>
		</item>
		<item>
		<title>Planning for SharePoint 2010 - Upgrade Planning and Guidance</title>
		<link>http://eddyblanco.com/blog/?p=52</link>
		<comments>http://eddyblanco.com/blog/?p=52#comments</comments>
		<pubDate>Mon, 19 Oct 2009 11:01:45 +0000</pubDate>
		<dc:creator>eddyblanco</dc:creator>
		
		<category><![CDATA[Sharepoint]]></category>

		<category><![CDATA[Sharepoint Migration]]></category>

		<guid isPermaLink="false">http://eddyblanco.com/blog/?p=52</guid>
		<description><![CDATA[This is a series of White Papers that have been published by Microsoft before the reveal of Sharepoint 2010 at Sharepoint Coference 2009.   
Microsoft SharePoint Server 2010 Upgrade Planning
Microsoft SharePoint Server 2010 — Test Your Upgrade Process
Microsoft SharePoint Server 2010 — Services Upgrade

]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal" style="margin: 0in 0in 10pt;"><span style="line-height: 115%; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black; font-size: 9pt;">This is a series of White Papers that have been published by Microsoft before the reveal of Sharepoint 2010 at Sharepoint Coference 2009. <span style="mso-spacerun: yes;"> </span><span style="mso-spacerun: yes;"> </span></span></p>
<p class="MsoNormal" style="margin: 0in 0in 10pt;"><span style="line-height: 115%; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black; font-size: 9pt;"><a href="http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;FamilyID=eef6f604-9faa-4ea8-b000-569c656b7420#tm" target="_blank">Microsoft SharePoint Server 2010 Upgrade Planning</a><br />
<a href="http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;FamilyID=d7389d9f-f70f-4226-89aa-a96a05a497f0#tm" target="_blank">Microsoft SharePoint Server 2010 — Test Your Upgrade Process</a><br />
<a href="http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;FamilyID=8a6ce527-1ac3-4642-bd04-5e93efc364f6#tm" target="_blank">Microsoft SharePoint Server 2010 — Services Upgrade</a><br />
</span></p>
]]></content:encoded>
			<wfw:commentRss>http://eddyblanco.com/blog/?feed=rss2&amp;p=52</wfw:commentRss>
		</item>
		<item>
		<title>SharePoint 2010 requirements</title>
		<link>http://eddyblanco.com/blog/?p=48</link>
		<comments>http://eddyblanco.com/blog/?p=48#comments</comments>
		<pubDate>Tue, 12 May 2009 01:22:15 +0000</pubDate>
		<dc:creator>eddyblanco</dc:creator>
		
		<category><![CDATA[Sharepoint]]></category>

		<guid isPermaLink="false">http://eddyblanco.com/blog/?p=48</guid>
		<description><![CDATA[Microsoft just announced the Sharepoint 2010 preliminary system requirements. From this point on only 64bit of Sharepoint and SQL are supported.
 
Link
]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal" style="margin: 0in 0in 0pt"><span style="font-family: Times New Roman;">Microsoft just announced the Sharepoint 2010 preliminary system requirements. From this point on only 64bit of Sharepoint and SQL are supported.</span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt"> </p>
<p class="MsoNormal" style="margin: 0in 0in 0pt"><span style="font-family: Times New Roman;"><a title="http://blogs.msdn.com/sharepoint/archive/2009/05/07/announcing-sharepoint-server-2010-preliminary-system-requirements.aspx" href="http://" target="_blank">Link</a></span></p>
]]></content:encoded>
			<wfw:commentRss>http://eddyblanco.com/blog/?feed=rss2&amp;p=48</wfw:commentRss>
		</item>
		<item>
		<title>WSS 3 /MOSS SP2 errors encounter</title>
		<link>http://eddyblanco.com/blog/?p=47</link>
		<comments>http://eddyblanco.com/blog/?p=47#comments</comments>
		<pubDate>Wed, 29 Apr 2009 17:36:25 +0000</pubDate>
		<dc:creator>eddyblanco</dc:creator>
		
		<category><![CDATA[Sharepoint]]></category>

		<guid isPermaLink="false">http://eddyblanco.com/blog/?p=47</guid>
		<description><![CDATA[After installing WSS 3 SP2 I encounter the following error.
Server error: http://go.microsoft.com/fwlink?LinkID=96177
I try the following and nothing happened, after started changing the version number in the SQL DB and that broke the entire solution.
USE master;
GO
EXEC sp_configure &#8217;show advanced option&#8217;, &#8216;1&#8242;;
RECONFIGURE WITH OVERRIDE;
EXEC sp_configure;
psconfig -cmd upgrade
stsadm -o upgrade –forceupgrade -inplace
stsadm -o upgrade -url http://laptopdev -inplace –forceupgrade
At [...]]]></description>
			<content:encoded><![CDATA[<p>After installing WSS 3 SP2 I encounter the following error.</p>
<p>Server error: <a href="http://go.microsoft.com/fwlink?LinkID=96177">http://go.microsoft.com/fwlink?LinkID=96177</a><br />
I try the following and nothing happened, after started changing the version number in the SQL DB and that broke the entire solution.<br />
USE master;<br />
GO<br />
EXEC sp_configure &#8217;show advanced option&#8217;, &#8216;1&#8242;;<br />
RECONFIGURE WITH OVERRIDE;<br />
EXEC sp_configure;<br />
psconfig -cmd upgrade<br />
stsadm -o upgrade –forceupgrade -inplace<br />
stsadm -o upgrade -url <a href="http://laptopdev/">http://laptopdev</a> -inplace –forceupgrade</p>
<p>At this point I try the “Sharepoint products and technologies configuration”  and created a new Config DB , reinstall the entire and then restore the old DB<br />
stsadm.exe -o addcontentdb -url <a href="http://laptopdev/">http://laptopdev:80</a> -databasename WSS_Content -databaseserver laptopdev</p>
]]></content:encoded>
			<wfw:commentRss>http://eddyblanco.com/blog/?feed=rss2&amp;p=47</wfw:commentRss>
		</item>
		<item>
		<title>Sending mail using c#</title>
		<link>http://eddyblanco.com/blog/?p=46</link>
		<comments>http://eddyblanco.com/blog/?p=46#comments</comments>
		<pubDate>Thu, 05 Mar 2009 15:21:52 +0000</pubDate>
		<dc:creator>eddyblanco</dc:creator>
		
		<category><![CDATA[Sharepoint]]></category>

		<guid isPermaLink="false">http://eddyblanco.com/blog/?p=46</guid>
		<description><![CDATA[The simple program will send emails at the end of the month.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Net.Mail;
namespace SendEmailLastDayofMonth
{
    class Program
    {
        static void Main(string[] args)
        {
            DateTime lastDayofMonth = new DateTime(DateTime.Today.Year, DateTime.Today.Month, DateTime.DaysInMonth(DateTime.Today.Year,DateTime.Today.Month));
            if(DateTime.Today == lastDayofMonth)
            {
                try
                {
                    MailMessage mM = new MailMessage();
                    mM.From = new MailAddress(&#8221;eddyblanco@gmail.com&#8220;);
                    mM.To.Add(&#8221;eddyblanco@gmail.com&#8220;);
                    mM.Subject = &#8220;Text Subject&#8221;;
                    mM.Body = [...]]]></description>
			<content:encoded><![CDATA[<p>The simple program will send emails at the end of the month.</p>
<p>using System;<br />
using System.Collections.Generic;<br />
using System.Linq;<br />
using System.Text;<br />
using System.Net.Mail;</p>
<p>namespace SendEmailLastDayofMonth<br />
{<br />
    class Program<br />
    {<br />
        static void Main(string[] args)<br />
        {<br />
            DateTime lastDayofMonth = new DateTime(DateTime.Today.Year, DateTime.Today.Month, DateTime.DaysInMonth(DateTime.Today.Year,DateTime.Today.Month));</p>
<p>            if(DateTime.Today == lastDayofMonth)<br />
            {<br />
                try<br />
                {</p>
<p>                    MailMessage mM = new MailMessage();<br />
                    mM.From = new MailAddress(&#8221;<a href="mailto:eddyblanco@gmail.com">eddyblanco@gmail.com</a>&#8220;);<br />
                    mM.To.Add(&#8221;<a href="mailto:eddyblanco@gmail.com">eddyblanco@gmail.com</a>&#8220;);<br />
                    mM.Subject = &#8220;Text Subject&#8221;;<br />
                    mM.Body = &#8220;The body of the email&#8221;;<br />
                    mM.IsBodyHtml = true;<br />
                    mM.Priority = MailPriority.High;<br />
                    SmtpClient sC = new SmtpClient(&#8221;smtp.mail.eddyblanco.com&#8221;);<br />
                    sC.Send(mM);<br />
                  </p>
<p>                }<br />
                catch<br />
                {<br />
                 <br />
                }<br />
            }<br />
        }<br />
    }<br />
}</p>
]]></content:encoded>
			<wfw:commentRss>http://eddyblanco.com/blog/?feed=rss2&amp;p=46</wfw:commentRss>
		</item>
		<item>
		<title>Warning: Importing Group &#8220;Group Name&#8221;</title>
		<link>http://eddyblanco.com/blog/?p=45</link>
		<comments>http://eddyblanco.com/blog/?p=45#comments</comments>
		<pubDate>Sat, 28 Feb 2009 18:37:22 +0000</pubDate>
		<dc:creator>eddyblanco</dc:creator>
		
		<category><![CDATA[Sharepoint]]></category>

		<guid isPermaLink="false">http://eddyblanco.com/blog/?p=45</guid>
		<description><![CDATA[Today in the process of a SharePoint migration I encounter several Warnings in the logs. Warning: User or group xxxx cannot be resolved.
The problem is every security group that has the ID’s with the warning above do not come over on the import, which shows up as a warning in the import log as.
Warning: Importing [...]]]></description>
			<content:encoded><![CDATA[<p>Today in the process of a SharePoint migration I encounter several Warnings in the logs. Warning: User or group xxxx cannot be resolved.</p>
<p>The problem is every security group that has the ID’s with the warning above do not come over on the import, which shows up as a warning in the import log as.</p>
<p>Warning: Importing Group &lt;Group Name&gt;</p>
<p>The SQL query below when run on the content DB will return all groups that have the owner ID’s specified in the warning.</p>
<p>select * from groups with (nolock) where owner = XXXX</p>
]]></content:encoded>
			<wfw:commentRss>http://eddyblanco.com/blog/?feed=rss2&amp;p=45</wfw:commentRss>
		</item>
	</channel>
</rss>

