<?xml version="1.0" encoding="utf-8"?><?xml-stylesheet title="XSL formatting" type="text/xsl" href="http://blog.it-spirit.eu/feed/rss2/xslt" ?><rss version="2.0"
  xmlns:dc="http://purl.org/dc/elements/1.1/"
  xmlns:wfw="http://wellformedweb.org/CommentAPI/"
  xmlns:content="http://purl.org/rss/1.0/modules/content/"
  xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
  <title>IT-Spirit Knowledge Base</title>
  <link>http://blog.it-spirit.eu/</link>
  <atom:link href="http://blog.it-spirit.eu:82/feed/rss2" rel="self" type="application/rss+xml"/>
  <description></description>
  <language>en</language>
  <pubDate>Thu, 13 Jan 2011 14:07:22 +0100</pubDate>
  <copyright></copyright>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Dotclear</generator>
  
    
  <item>
    <title>Scripting inside SharePoint with PowerShell - PART II Playing with lists and items...</title>
    <link>http://blog.it-spirit.eu/post/2010/12/31/Scripting-inside-SharePoint-with-PowerShell-PART-II-Playing-with-lists-and-items...</link>
    <guid isPermaLink="false">urn:md5:9789e2d99e2abce39dfab7868c5ef2e9</guid>
    <pubDate>Fri, 31 Dec 2010 17:05:00 +0100</pubDate>
    <dc:creator>Michael</dc:creator>
        <category>MOSS 2010</category>
            
    <description>    &lt;em&gt;This sample code show how you can script easily SP lists and items, this
example lists all lists items for sites and sub sites and write the result into
a text file:&lt;/em&gt;
&lt;div&gt;&lt;em&gt;&lt;br /&gt;&lt;/em&gt;&lt;/div&gt;
&lt;div&gt;
[System.Reflection.Assembly]::LoadWithPartialName(&amp;quot;Microsodt.SharePoint&amp;quot;)&lt;/div&gt;
&lt;div&gt;$logfolder = &amp;quot;c:\Logs&amp;quot;&lt;/div&gt;
&lt;div&gt;$Siteurl = &amp;quot;http://sp.com&amp;quot;&lt;/div&gt;
&lt;div&gt;$mysite = new-object Microsoft.SharePoint.SPSite($Siteurl)&lt;/div&gt;
&lt;div&gt;$Filename &amp;quot;Report.txt&amp;quot;&lt;/div&gt;
&lt;div&gt;$LogDate = get-date -uformat &amp;quot;%Y/%m/%d&amp;quot;&lt;/div&gt;
&lt;div&gt;new-item -path $logfolder -name $Filename - type file -force&lt;/div&gt;
&lt;div&gt;add-content -path $logfolder\$Filename -value &amp;quot;Date ; URL ; ListName ; ID
; Title ; Name&amp;quot;&lt;/div&gt;
&lt;div&gt;$rootweb = $mysite.RootWeb&lt;/div&gt;
&lt;div&gt;Foreach ($web in $mysite.Allwebs)&lt;/div&gt;
&lt;div&gt;{&lt;/div&gt;
&lt;div&gt;$lists = $web.Lits&lt;/div&gt;
&lt;div&gt;foreach ($list in $lists)&lt;/div&gt;
&lt;div&gt;{&lt;/div&gt;
&lt;div&gt;$txt = &amp;quot;List Name:&amp;quot; + $list.Title&lt;/div&gt;
&lt;div&gt;write-output $txt&lt;/div&gt;
&lt;div&gt;$items = $list.Items&lt;/div&gt;
&lt;div&gt;foreach ($listitem in $items)&lt;/div&gt;
&lt;div&gt;{&lt;/div&gt;
&lt;div&gt;$txt = $LogDate + &amp;quot;;&amp;quot; + $web.Url + &amp;quot;;&amp;quot; + $list.Title + &amp;quot;;&amp;quot; + $listitem.ID
+ &amp;quot;;&amp;quot; + $listitem.Title + &amp;quot;;&amp;quot; $listitem.Name&lt;/div&gt;
&lt;div&gt;write-output $txt&lt;/div&gt;
&lt;div&gt;add-content -path $logfolder\$Filename -value $txt&lt;/div&gt;
&lt;div&gt;}&lt;/div&gt;
&lt;div&gt;}&lt;/div&gt;
&lt;div&gt;}&lt;/div&gt;
&lt;div&gt;In few words, In the first loop we taking each web site and in the second
loop we list all lists for this web site and in the third loop we taking
specific attributes for each items.&lt;/div&gt;
&lt;div&gt;In the next article we will see much operation and automation scripts for
SP 2010 such as backup, restore, manage account, etc.&lt;/div&gt;</description>
    
    
    
      </item>
    
  <item>
    <title>SQL Server Check List for Sharepoint 2007/2010 installation</title>
    <link>http://blog.it-spirit.eu/post/2010/11/14/SQL-Server-Check-List-for-Sharepoint-2007/2010-installation</link>
    <guid isPermaLink="false">urn:md5:70ebec5c33d27830c801726b28645547</guid>
    <pubDate>Sun, 14 Nov 2010 15:33:00 +0100</pubDate>
    <dc:creator>Michael</dc:creator>
        <category>MS-SQL2008</category>
        <category>MOSS</category><category>SharePoint 2010</category><category>SQL</category><category>SQL 2008</category>    
    <description>    &lt;p&gt;This article review all things you need to think when you plan to install a
SQL server for an Sharepoint 2007/2010 infrastructure.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;ins&gt;Check list before the installation: &lt;/ins&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;_&lt;strong&gt;Virtual or physical server?&lt;/strong&gt; &lt;em&gt;Keep in mind that is not
recommended to install SQL server for SP into a virtual machine due that SP
consummes more disk i/o, storage, processor and memory.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;_&lt;strong&gt;High avaibility? What else?&lt;/strong&gt; &lt;em&gt;It's strongly
recommended to install SQL server in cluster, but now with SP 2010 you can use
the SQL mirroring technologies to provide high avaibility if you do
not want to use the MS cluszering technologie.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;_&lt;strong&gt;Which version about SQL?&lt;/strong&gt; &lt;em&gt;Avoid SQL 2005 installation
definitively. Focus your efforts on SQL 2008 installation. The First question
is SQL 2008  or SQL 2008 R2? If you install a MOSS 2007 then choose SQL
2008 but if you plan to install SP 2010 then install SQL 2008 R2 or SQL 2008
SP1 with CU2 (this is mandatory for SP 2010). If your SQL servers have at
maximum 8 CPUs, 64 Gb of memory and only two nodes in case of cluster
installation choose SQL 2008/R2 Standard edition, if you have servers with more
resources you must install the Enterprise edition.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;em&gt;_&lt;/em&gt;Dedicated SQL instance or not?&lt;/strong&gt; &lt;em&gt;For
Sharepoint infrastructure you must have dedicated SQL instance and no other
programs or applications installed on the SQL server because SP consume more
disk i/o and storage. For SP 2010 it is recommended to install one SQL instance
for the content databases and another instance for search databases.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;_&lt;strong&gt;Plan your storage.&lt;/strong&gt; &lt;em&gt;Choose if it's possible a storage
with great performance about disk i/o, plan to format each lun with 64K cluster
size, and provision one lun for databases system + tlogs, one or many luns for
SP content databases, one or many luns for tlogs about content databases. Apply
the same policy for search databases, with SP 2010 it's better to have an
another SQL instance to hosts the search databases. For better performance you
can isolate the SP config and admin content databases on a separated and
dedicated lun. &lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;_Plan your backup.&lt;/strong&gt; &lt;em&gt; For the tool who backup your
databases, I prefer to choose MS SCDPM, but if you don't have this tool, you
can script a backup with the stsadm command line or by powershell cmdlet in SP
2010. In other case you can backup your databases with you backup software. To
restore it, plan to have an another farm (recovery farm), that means to have
sufficient storage on this farm and this farm ust have the level about
templates, features, solutions, etc.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;That all! This article has been write as is and provides some
basics information for your governance plan about your infrastructure and to
ask you the rights questions.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;&lt;br /&gt;&lt;/em&gt;&lt;/p&gt;</description>
    
    
    
      </item>
    
  <item>
    <title>Configuring your web application with IIS 7.0 and Kerberos</title>
    <link>http://blog.it-spirit.eu/post/2010/01/30/Configuring-your-web-application-with-IIS-7.0-and-Kerberos</link>
    <guid isPermaLink="false">urn:md5:e56f26f0f6d4a7a5a9b0d1ad71641d67</guid>
    <pubDate>Sat, 30 Jan 2010 17:46:00 +0100</pubDate>
    <dc:creator>Michael</dc:creator>
        <category>Windows SharePoint Service 3.0</category>
        <category>IIS 7.0</category><category>Kerberos</category><category>MOSS</category><category>SharePoint</category><category>SharePoint 2010</category><category>WSS 3.0</category>    
    <description>    &lt;p&gt;This Article describes how to set Kerberos for your SharePoint Web
Application, we consider that the kerberos is correctly confugured on the SQL
side: SQL Service run with an Active Directory Account and the associated SPN
is configured...&lt;/p&gt;
&lt;p&gt;&lt;ins&gt;&lt;strong&gt;To create and configure web application with kerberos follow
these steps&lt;/strong&gt;&lt;/ins&gt;:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Create an Active Directory user account to run the IIS application
pool.&lt;/li&gt;
&lt;li&gt;Set the SPN on this account.&lt;/li&gt;
&lt;li&gt;Trust Kerberos delegation on this account.&lt;/li&gt;
&lt;li&gt;Grant the rights &amp;quot;Local and Remote Activation&amp;quot; on the application pool
account for the following DCOM object: IIS WARMREG ADMIN (for all web front end
servers).&lt;/li&gt;
&lt;li&gt;Add the application pool account into the User Rights Assignments: &amp;quot;Act as
a part of Operating System&amp;quot; (for all web front end servers).&lt;/li&gt;
&lt;li&gt;Create the web application with &lt;strong&gt;Host Header&lt;/strong&gt; and select
&lt;strong&gt;Kerberos&lt;/strong&gt; for the authentication methods. Run the application
pool with the application pool account created before.&lt;/li&gt;
&lt;li&gt;Edit the ApplicationHost.Config file on all web front end servers, locate
this tag: &amp;lt;local path=&amp;quot;name of yoursite&amp;quot;&amp;gt;, next locate &amp;lt;windows
security...&amp;gt; and modifify this tag as follow: &amp;lt;Windows security=....
&lt;strong&gt;UseAppPoolCredentials=&amp;quot;TRUE&amp;quot;
UseKernelMode=&amp;quot;TRUE&amp;quot;&lt;span&gt;&lt;strong&gt;&amp;gt;&lt;/strong&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;Your are done&lt;strong&gt;&lt;span&gt;&lt;strong&gt;.&lt;br /&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/li&gt;
&lt;/ol&gt;</description>
    
    
    
      </item>
    
  <item>
    <title>MOSS 2010 and Farm Configuration Wizzard Utility</title>
    <link>http://blog.it-spirit.eu/post/2010/01/22/MOSS-2010-and-Farm-Configuration-Wizzard-Utility</link>
    <guid isPermaLink="false">urn:md5:e7fba10572134b060ba284761b2e044a</guid>
    <pubDate>Fri, 22 Jan 2010 11:02:00 +0100</pubDate>
    <dc:creator>Michael</dc:creator>
        <category>MOSS 2010</category>
        <category>MOSS</category><category>MOSS 2010</category><category>SharePoint 2010</category>    
    <description>    &lt;p&gt;A nice feature has been introduced with MOSS  2010: The farm
configuration wieeard, this tools configure quickly your farm, web application
and site collections, in our case we discuss about the service account and the
rights granting by this wizzard into the system....&lt;/p&gt;
&lt;p&gt;Go to your Central Admin page and read the following article.&lt;/p&gt;
&lt;p&gt;&lt;img style=&quot;width: 500px; height: 312px;&quot; title=&quot;Confwizz1.jpg, Jan 2010&quot; alt=&quot;&quot; src=&quot;http://blog.it-spirit.eu/public/MOSS2010/.Confwizz1_m.jpg&quot; /&gt;&lt;/p&gt;
&lt;p&gt;After clicking on the Configuration Farm Wizzard, the system ask you for a
service account, please create this account first in the Active Directory with
no privilege only Domain Users.&lt;/p&gt;
&lt;p&gt;&lt;img style=&quot;width: 506px; height: 246px;&quot; title=&quot;confwizz3.jpg, Jan 2010&quot; alt=&quot;&quot; src=&quot;http://blog.it-spirit.eu/public/MOSS2010/.confwizz3_m.jpg&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img title=&quot;confwizz4.jpg, Jan 2010&quot; alt=&quot;&quot; src=&quot;http://blog.it-spirit.eu/public/MOSS2010/.confwizz4_m.jpg&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Choose your services...&lt;/p&gt;
&lt;ins&gt;
&lt;p&gt;&lt;ins&gt;&lt;strong&gt;Note: In your example, we skip the site collection
collection....&lt;/strong&gt;&lt;/ins&gt;&lt;/p&gt;
&lt;/ins&gt;
&lt;p&gt;Ok now we have services configured, we look on our server the privileges
granted by this setup for this account:&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;strong&gt;This account is member of:&lt;/strong&gt; IIS_IUSRS, WSS_WPG, Performance
Monitor Users.&lt;br /&gt;
&lt;strong&gt;This account have the following privileges:&lt;/strong&gt; Adjust a Memory
Quotas for a process, Logon as service, Replace a level token.&lt;br /&gt;</description>
    
    
    
      </item>
    
  <item>
    <title>SharePoint 2010 Beta - First Contact</title>
    <link>http://blog.it-spirit.eu/post/2010/01/10/SharePoint-2010-Beta-First-Contact</link>
    <guid isPermaLink="false">urn:md5:8cfa4f19243309af60fee549b7598c2b</guid>
    <pubDate>Sun, 10 Jan 2010 15:03:00 +0100</pubDate>
    <dc:creator>Michael</dc:creator>
        <category>MOSS 2010</category>
        <category>MOSS</category><category>MOSS 2010</category><category>SharePoint</category><category>SharePoint 2010</category>    
    <description>    &lt;h4 style=&quot;text-decoration: underline;&quot;&gt;Prerequisites&lt;/h4&gt;
&lt;p&gt;First thing when you decide to test MOSS 2010 is to install an W2k8 64 bits,
the SQL server must be a SQL 2008 64 bits SP1 with CU2.&lt;br /&gt;
After that launch the setup and read the following instructions (In our Case
SQL and MOSS are installed on the same machine).&lt;br /&gt;
We decide to install the Farm in Kerberos authentication procotol.&lt;/p&gt;
&lt;p&gt;Before to begin the MOSS installation you must install the following
hotfix:&lt;/p&gt;
&lt;p&gt;&lt;span style=&quot;font-family: 'Arial','sans-serif'; font-size: 10pt;&quot;&gt;&lt;a href=&quot;http://connect.microsoft.com/VisualStudio/Downloads/DownloadDetails.aspx?DownloadID=21953&quot;&gt;
http://connect.microsoft.com/VisualStudio/Downloads/DownloadDetails.aspx?DownloadID=21953&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;

&lt;br /&gt;
&lt;ins&gt;&lt;strong&gt;Good Thing&lt;/strong&gt;&lt;/ins&gt;&lt;br /&gt;
&lt;br /&gt;
You can install prerequistes software automaticlally through internet!!!! The
setup module Install IIS7 and configure it transparently!!!!&lt;br /&gt;
During the installation prerequistes the setup install the following
softwares:&lt;/p&gt;
&lt;p style=&quot;margin: 0cm 0cm 0; line-height: normal;&quot; class=&quot;MsoNormal&quot;&gt;
&lt;span style=&quot;font-family: 'Arial','sans-serif'; font-size: 10pt;&quot;&gt;• Windows
Server 2008 Service Pack 2&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin: 0cm 0cm 0; line-height: normal;&quot; class=&quot;MsoNormal&quot;&gt;
&lt;span style=&quot;font-family: 'Arial','sans-serif'; font-size: 10pt;&quot;&gt;• Application
Server Role, Web Server (IIS) Role&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin: 0cm 0cm 0; line-height: normal;&quot; class=&quot;MsoNormal&quot;&gt;
&lt;span style=&quot;font-family: 'Arial','sans-serif'; font-size: 10pt;&quot;&gt;• Microsoft
SQL Server 2008 Native Client&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin: 0cm 0cm 0; line-height: normal;&quot; class=&quot;MsoNormal&quot;&gt;
&lt;span style=&quot;font-family: 'Arial','sans-serif'; font-size: 10pt;&quot;&gt;• Microsoft
.NET Framework 3.5 SP1&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin: 0cm 0cm 0; line-height: normal;&quot; class=&quot;MsoNormal&quot;&gt;
&lt;span style=&quot;font-family: 'Arial','sans-serif'; font-size: 10pt;&quot;&gt;• Windows
PowerShell(TM) V2 (CTP3)&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin: 0cm 0cm 0; line-height: normal;&quot; class=&quot;MsoNormal&quot;&gt;
&lt;span style=&quot;font-family: 'Arial','sans-serif'; font-size: 10pt;&quot;&gt;• Microsoft
&amp;quot;Geneva&amp;quot; Framework Runtime&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin: 0cm 0cm 0; line-height: normal;&quot; class=&quot;MsoNormal&quot;&gt;
&lt;span style=&quot;font-family: 'Arial','sans-serif'; font-size: 10pt;&quot;&gt;• Microsoft
Sync Framework Runtime v1.0 (x64)&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin: 0cm 0cm 0; line-height: normal;&quot; class=&quot;MsoNormal&quot;&gt;
&lt;span style=&quot;font-family: 'Arial','sans-serif'; font-size: 10pt;&quot;&gt;• Microsoft
Chart Controls for Microsoft .NET Framework 3.5&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin: 0cm 0cm 0; line-height: normal;&quot; class=&quot;MsoNormal&quot;&gt;
&lt;span style=&quot;font-family: 'Arial','sans-serif'; font-size: 10pt;&quot;&gt;• Microsoft
Filter Pack 2.0&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin: 0cm 0cm 0; line-height: normal;&quot; class=&quot;MsoNormal&quot;&gt;
&lt;span style=&quot;font-family: 'Arial','sans-serif'; font-size: 10pt;&quot;&gt;• Microsoft
SQL Server 2008 Analysis Services ADOMD.NET&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin: 0cm 0cm 0; line-height: normal;&quot; class=&quot;MsoNormal&quot;&gt; &lt;/p&gt;
&lt;p style=&quot;margin: 0cm 0cm 0; line-height: normal;&quot; class=&quot;MsoNormal&quot;&gt;
&lt;span style=&quot;font-family: 'Arial','sans-serif'; font-size: 10pt;&quot;&gt;After
Installing the prerequisites softwares, launch the setup installation MOSS
program and choose the following options:&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin: 0cm 0cm 0; line-height: normal;&quot; class=&quot;MsoNormal&quot;&gt; &lt;/p&gt;
&lt;p style=&quot;margin: 0cm 0cm 0; line-height: normal;&quot; class=&quot;MsoNormal&quot;&gt;
&lt;span style=&quot;font-family: 'Arial','sans-serif'; font-size: 10pt;&quot;&gt;_Installation
choice step, please choose Server Farm, look the Web Front options is not
here....&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin: 0cm 0cm 0; line-height: normal;&quot; class=&quot;MsoNormal&quot;&gt;
&lt;span style=&quot;font-family: 'Arial','sans-serif'; font-size: 10pt;&quot;&gt;_Server type
step, please choose Complete install and leave the default options.&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin: 0cm 0cm 0; line-height: normal;&quot; class=&quot;MsoNormal&quot;&gt; &lt;/p&gt;
&lt;h4 style=&quot;margin: 0cm 0cm 0; line-height: normal;&quot; class=&quot;MsoNormal&quot;&gt;
&lt;span style=&quot;font-family: 'Arial','sans-serif'; font-size: 10pt;&quot;&gt;&lt;ins&gt;SharePoint Products
Wizzard step&lt;/ins&gt;&lt;/span&gt;&lt;/h4&gt;
&lt;p style=&quot;margin: 0cm 0cm 0; line-height: normal;&quot; class=&quot;MsoNormal&quot;&gt; &lt;/p&gt;
&lt;p style=&quot;margin: 0cm 0cm 0; line-height: normal;&quot; class=&quot;MsoNormal&quot;&gt;
&lt;span style=&quot;font-family: 'Arial','sans-serif'; font-size: 10pt;&quot;&gt;Before to
launch the wizzard, please create two Active Directory accounts: One for setup
MOSS and another one for Farm Admin purpose, for the Farm Admin account please
set the SPN, grant this into IIS WarmReg Dcom object with local and remote
activation. Grant the farm admin account local admin of the MOSS server. For
the Setup MOSS account grant this into SQL with the following roles: DBCreator,
SecuriyAdmin.&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin: 0cm 0cm 0; line-height: normal;&quot; class=&quot;MsoNormal&quot;&gt;
&lt;span style=&quot;font-family: 'Arial','sans-serif'; font-size: 10pt;&quot;&gt;After that,
log on the MOSS server with the setup account credentials and apply the
following procedure:&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin: 0cm 0cm 0; line-height: normal;&quot; class=&quot;MsoNormal&quot;&gt; &lt;/p&gt;
&lt;p style=&quot;margin: 0cm 0cm 0; line-height: normal;&quot; class=&quot;MsoNormal&quot;&gt;
&lt;span style=&quot;font-family: 'Arial','sans-serif'; font-size: 10pt;&quot;&gt;_Create a New
Farm.&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin: 0cm 0cm 0; line-height: normal;&quot; class=&quot;MsoNormal&quot;&gt;
&lt;span style=&quot;font-family: 'Arial','sans-serif'; font-size: 10pt;&quot;&gt;_Specify the
SQL instance and give theFarm Admin credentials.&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin: 0cm 0cm 0; line-height: normal;&quot; class=&quot;MsoNormal&quot;&gt;
&lt;span style=&quot;font-family: 'Arial','sans-serif'; font-size: 10pt;&quot;&gt;_Wait few
minutes,the setup is creating your farm.&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin: 0cm 0cm 0; line-height: normal;&quot; class=&quot;MsoNormal&quot;&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p style=&quot;margin: 0cm 0cm 0; line-height: normal;&quot; class=&quot;MsoNormal&quot;&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p style=&quot;margin: 0cm 0cm 0; line-height: normal;&quot; class=&quot;MsoNormal&quot;&gt;
&lt;span style=&quot;font-family: 'Arial','sans-serif'; font-size: 10pt;&quot;&gt;&lt;strong&gt;New
Security features during the setup wizzard: Passphrase to secure communication
between farm, data and servers:&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin: 0cm 0cm 0; line-height: normal;&quot; class=&quot;MsoNormal&quot;&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p style=&quot;margin: 0cm 0cm 0; line-height: normal;&quot; class=&quot;MsoNormal&quot;&gt;
&lt;span style=&quot;font-family: 'Arial','sans-serif'; font-size: 10pt;&quot;&gt;&lt;strong&gt;&lt;img title=&quot;New Security Features, Jan 2010&quot; style=&quot;margin: 0 auto; display: block;&quot; alt=&quot;&quot; src=&quot;http://blog.it-spirit.eu/public/MOSS2010/.mosspassphrase_m.jpg&quot; /&gt;&lt;/strong&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin: 0cm 0cm 0; line-height: normal;&quot; class=&quot;MsoNormal&quot;&gt; &lt;/p&gt;
&lt;p style=&quot;margin: 0cm 0cm 0; line-height: normal;&quot; class=&quot;MsoNormal&quot;&gt;
&lt;span style=&quot;font-family: 'Arial','sans-serif'; font-size: 10pt;&quot;&gt;&lt;strong&gt;As
you can see no great news about the installation, the new things is just
to simplify the setup process with no choice between complete, web front or
stand alone, juste Server Farm or Stand Alone and the last thing is the setup
process is capable to dowlnload the requirement.&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;margin: 0cm 0cm 0; line-height: normal;&quot; class=&quot;MsoNormal&quot;&gt; &lt;/p&gt;
&lt;p&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 &lt;/p&gt;</description>
    
    
    
      </item>
    
  <item>
    <title>Exporting/Importing a Site Collection with a cab file (STSADM)</title>
    <link>http://blog.it-spirit.eu/post/2009/10/17/Exporting-a-Site-Collection-into-cab-file-%28STSADM%29</link>
    <guid isPermaLink="false">urn:md5:3b60a2478c513fbee5d0b4904223cf00</guid>
    <pubDate>Sat, 17 Oct 2009 19:06:00 +0200</pubDate>
    <dc:creator>Michael</dc:creator>
        <category>Windows SharePoint Service 3.0</category>
        <category>SharePoint</category><category>WSS 3.0</category>    
    <description>    &lt;p&gt;It's usefull to export Site Collection when you need to migrate your site
between SharePoint farm, or just to pass from one environment to another
envirnment (i.e :dev to QA).&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;ins&gt;On the source server:&lt;/ins&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Connect one of your MOSS server and type the following command:&lt;/p&gt;
&lt;p&gt;stsadm -o export -URL &lt;a href=&quot;http://your_site_collection/&quot;&gt;http://your_site_collection&lt;/a&gt; -filename
youtpath\your_filename.cab -cabsize 1024 -versions 1&lt;/p&gt;
&lt;p&gt;&lt;em&gt;Versions:&lt;/em&gt; 1 to 4, 1 for Major Version (default) ; 2 the
current version, either the last major or the last minor; 3 Last major and last
minor version for files and list items and 4 All versions for files and list
items.&lt;/p&gt;
&lt;p&gt;If you need to import the security, you can the following switch:
&lt;em&gt;&lt;strong&gt;-includeusersecurity.&lt;/strong&gt;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;ins&gt;Note:&lt;/ins&gt;&lt;/strong&gt;If you want to increase import performance
add the following switch: &lt;strong&gt;&lt;em&gt;-nofilecompression.&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;ins&gt;Technical reference:&lt;/ins&gt;&lt;/strong&gt; &lt;a href=&quot;http://technet.microsoft.com/en-us/library/cc262759.aspx&quot; hreflang=&quot;en&quot;&gt;http://technet.microsoft.com/en-us/library/cc262759.aspx&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;ins&gt;On the target server:&lt;/ins&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Copy all the cab files from the source server to the target server, create a
new web application befor to import the site collection, and type the following
command:&lt;/p&gt;
&lt;p&gt;stsadm -o import -URL &lt;a href=&quot;http://your-web_app/&quot;&gt;http://your-web_app&lt;/a&gt;
-filename path_of_your_cab_file_or_folder(nofilecompression only)
-updateversions 1 to 3&lt;/p&gt;
&lt;p&gt;&lt;em&gt;Updateversions:&lt;/em&gt;&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Add new versions to the current file (default)&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Overwrite the file and all of its versions (delete then insert)&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Ignore the file if it exists on the destination&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&lt;strong&gt;&lt;ins&gt;Technical reference:&lt;/ins&gt;&lt;/strong&gt; &lt;a href=&quot;http://technet.microsoft.com/en-us/library/cc261866.aspx&quot;&gt;http://technet.microsoft.com/en-us/library/cc261866.aspx&lt;/a&gt;&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;</description>
    
    
    
      </item>
    
  <item>
    <title>Scripting inside SharePoint with PowerShell - PART I Getting Started...</title>
    <link>http://blog.it-spirit.eu/post/2009/10/17/Scripting-inside-WSS-3.0-with-PowerShell-PART-I-Getting-Started</link>
    <guid isPermaLink="false">urn:md5:0c03764747e2958f6a39ae3594f92590</guid>
    <pubDate>Sat, 17 Oct 2009 18:41:00 +0200</pubDate>
    <dc:creator>Michael</dc:creator>
        <category>Windows SharePoint Service 3.0</category>
        <category>PowerShell</category><category>SharePoint</category><category>WSS 3.0</category>    
    <description>    &lt;h4&gt;&lt;ins&gt;Download the following tools:&lt;/ins&gt;&lt;/h4&gt;
&lt;p&gt;&lt;strong&gt;_PowerShell for windows 2003:&lt;/strong&gt; &lt;a href=&quot;http://www.microsoft.com/downloads/details.aspx?FamilyID=10EE29AF-7C3A-4057-8367-C9C1DAB6E2BF&amp;amp;displaylang=en&quot;&gt;
http://www.microsoft.com/downloads/details.aspx?FamilyID=10EE29AF-7C3A-4057-8367-C9C1DAB6E2BF&amp;amp;displaylang=en&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;_Powergui:&lt;/strong&gt; &lt;a href=&quot;http://www.powergui.org/downloads.jspa&quot;&gt;http://www.powergui.org/downloads.jspa&lt;/a&gt; ,
this is optional but is a very useful gui for scripting and navigating between
methods and class...&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;_Powerpacks for SharePoint:&lt;/strong&gt; &lt;a href=&quot;http://www.powergui.org/kbcategory.jspa?categoryID=354&quot;&gt;http://www.powergui.org/kbcategory.jspa?categoryID=354&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Install all products and when you are finished to install Powergui, add the
SharePoint packages.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;ins&gt;Note:&lt;/ins&gt;&lt;/strong&gt;Keep in mind, you can write yourscript only
on the WSS server because the remote commands does not exists, all tools must
be installed on one of WSS server who is member of your farm. &lt;/p&gt;
&lt;h4&gt;&lt;ins&gt;The basics...&lt;/ins&gt;&lt;/h4&gt;
&lt;p&gt;When you write a script for WSS, the first line begin by:&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;&lt;em&gt;[System.Reflection.Assembly]::LoadWithPartialName(&amp;quot;Microsoft.SharePoint&amp;quot;)
| Where-Object { $_.GetType().FullName -ne &amp;quot;System.Reflection.Assembly&amp;quot; }
---&amp;gt;Recomended&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;OR&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;&lt;em&gt;[System.Reflection.Assembly]::LoadWithPartialName(&amp;quot;Microsoft.SharePoint&amp;quot;)
---&amp;gt;In some examples through Internet...&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;After loading into the GAC the DLL for SharePoint, you must to connect
on the site where you need to script...&lt;/p&gt;
&lt;p&gt;&lt;em&gt;&lt;strong&gt;$SiteUrl =&lt;/strong&gt;&lt;/em&gt; &lt;a href=&quot;http://yoursite/&quot;&gt;&lt;em&gt;&lt;strong&gt;http://yoursite&lt;/strong&gt;&lt;/em&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;&lt;strong&gt;#Creating your SP site object....&lt;/strong&gt;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;&lt;strong&gt;$Site = new-object
Microsoft.SharePoint.SPSite($Site)&lt;/strong&gt;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;After that, you can display for example the site properties:&lt;/p&gt;
&lt;p&gt;&lt;em&gt;&lt;strong&gt;$Site.AllWebs | format-table | URL,
LastItemModifiedDate, Created&lt;/strong&gt;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;ins&gt;&lt;strong&gt;Note: If you use the SharePoint PowerPack, you can browse
through the $Site variable and you can see all propreties and
methods.&lt;/strong&gt;&lt;/ins&gt;&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt; &lt;/p&gt;</description>
    
    
    
      </item>
    
  <item>
    <title>How to upload new SharePoint Template?</title>
    <link>http://blog.it-spirit.eu/post/2009/10/03/How-to-upload-new-SharePoint-Template</link>
    <guid isPermaLink="false">urn:md5:af6372c59919468cd3f7d2c3d8e7abe5</guid>
    <pubDate>Sat, 03 Oct 2009 16:18:00 +0200</pubDate>
    <dc:creator>Michael</dc:creator>
        <category>Windows SharePoint Service 3.0</category>
        <category>SharePoint</category><category>WSS 3.0</category>    
    <description>    &lt;p&gt;First see if you have &amp;quot;Application Template&amp;quot; tab, when you create a new
site, if not please follow this procedure:&lt;/p&gt;
&lt;p&gt;Download the ApplicationTemplateCore file: &lt;a href=&quot;http://blog.it-spirit.eu/tag/http://www.microsoft.com/downloads/details.aspx?FamilyId=C1039E13-94DA-4D7D-8CAE-3B96FA5A4045&amp;amp;displaylang=en&quot;&gt;
&lt;/a&gt;&lt;a href=&quot;http://www.microsoft.com/downloads/details.aspx?FamilyId=C1039E13-94DA-4D7D-8CAE-3B96FA5A4045&amp;amp;displaylang=en&quot;&gt;http://www.microsoft.com/downloads/details.aspx?FamilyId=C1039E13-94DA-4D7D-8CAE-3B96FA5A4045&amp;amp;displaylang=en&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Extract the WSP file and type the following command lines:&lt;/p&gt;
&lt;p&gt;stsadm - o addsolution -filename
&lt;strong&gt;&amp;lt;path&amp;gt;\ApplicationTemplateCore.wsp&lt;/strong&gt; (result:Operation
completed successfully.)&lt;/p&gt;
&lt;p&gt;stsadm -o deploysolution -name Application TemplateCore.wsp -immediate
-allowGacDeployment (result: Timer job successfully created.)&lt;/p&gt;
&lt;p&gt;stsadmn -o copyappbincontent&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;If the Application Template Core is already deployed, please follow this
procedure:&lt;/p&gt;
&lt;p&gt;After you have extract the WSP file:&lt;/p&gt;
&lt;p&gt;stsadm -o addsolution -filename
&lt;strong&gt;&amp;lt;path&amp;gt;\Your_WSP_File&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;stsadm -o deploysolution -name &lt;strong&gt;Your_WSP_File&lt;/strong&gt; -immediate
-allowGacDeployment&lt;/p&gt;
&lt;p&gt;After that check in the Solution management (Click the
&lt;strong&gt;Operations&lt;/strong&gt; tab, and then click &lt;strong&gt;Solution
management&lt;/strong&gt; under global configuration.) if your template is deployed
(&lt;strong&gt;status is shown Globally Deployed&lt;/strong&gt;), type the follwing
command: iis reset.&lt;/p&gt;
&lt;p&gt;You are done, one time you go to the Create Site, you will see under the
Application Template tab, your template.&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;</description>
    
    
    
      </item>
    
  <item>
    <title>How to create HTTP Enpoint and Web Service without IIS?</title>
    <link>http://blog.it-spirit.eu/post/2009/08/02/How-to-create-HTTP-Enpoint-and-Web-Service-without-IIS</link>
    <guid isPermaLink="false">urn:md5:dd0079af5012b89d6d1efe78d29878df</guid>
    <pubDate>Sun, 02 Aug 2009 12:19:00 +0200</pubDate>
    <dc:creator>Michael</dc:creator>
        <category>MS-SQL2005</category>
        <category>SQL 2005</category>    
    <description>    &lt;p&gt;&lt;strong&gt;Create HTTP endpoint can be usefull when you want to retrieve data
on database without to install iis or to develop an application, in this
exemple we create a Web Service who getdata in XML format by using a web
service.&lt;/strong&gt;&lt;/p&gt;
&lt;h3&gt;&lt;ins&gt;STEP 1: Create the store procedure.&lt;/ins&gt;&lt;/h3&gt;
&lt;p&gt;&lt;em&gt;&lt;code&gt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;CREATE PROCEDURE
[dbo].[GetContacts] &lt;em&gt;--&amp;gt;This store procedure retrieve Contacts from the
Contact table...&lt;/em&gt;&lt;/span&gt;&lt;/code&gt;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;AS BEGIN SET NOCOUNT ON;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;SELECT TOP&lt;/span&gt; &lt;span style=&quot;color: rgb(255, 0, 0);&quot;&gt;20&lt;/span&gt; &lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;[FirstName],[LastName] FROM&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;[Person].[Contact] ORDER BY [LastName];&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;END&lt;/span&gt;&lt;/p&gt;
&lt;h3&gt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;&lt;ins&gt;STEP 2: Reserve the HTTP name
space.&lt;/ins&gt;&lt;/span&gt;&lt;/h3&gt;
&lt;p&gt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;When you create an HTTP endpoint, you
need to check if you don't have an IIS server runing, or if the port 80 is in
used, after that youmust reserve the name of yourwebsite by the following
command:&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;sp_reserve_http_namespace N'http://MyServer:80'  --&amp;gt; in this
exemple the site &lt;a href=&quot;http://myserver%20is/&quot;&gt;http://MyServer is&lt;/a&gt;
reserved.&lt;br /&gt;
GO&lt;/em&gt;&lt;/p&gt;
&lt;h3&gt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;&lt;ins&gt;STEP 3: Create the HTTP
Endpoint.&lt;/ins&gt;&lt;/span&gt;&lt;/h3&gt;
&lt;p&gt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;Select your database and execute this
T-SQL script:&lt;/span&gt;&lt;/p&gt;
&lt;pre&gt;
&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;CREATE ENDPOINT AW_Contacts&lt;br /&gt;
STATE &lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt; Started&lt;br /&gt;
AS HTTP&lt;br /&gt;
(&lt;br /&gt;
PATH &lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;'&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 128, 128);&quot;&gt;/Contacts&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;'&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;,&lt;br /&gt;
AUTHENTICATION &lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt; (INTEGRATED), &lt;em&gt;--&amp;gt; You can choose NTLM if you want...&lt;/em&gt;&lt;br /&gt;
PORTS &lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt; (CLEAR),&lt;br /&gt;
SITE &lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;'http://myserver&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;'&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;&lt;br /&gt;
)&lt;br /&gt;
FOR SOAP&lt;br /&gt;
(&lt;br /&gt;
WEBMETHOD &lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;'&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 128, 128);&quot;&gt;GetContacts&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;'&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;&lt;br /&gt;
(NAME &lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;'&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 128, 128);&quot;&gt;AdventureWorks.dbo.GetContacts&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;'&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;),&lt;br /&gt;
WSDL &lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt; DEFAULT,&lt;br /&gt;
DATABASE &lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;'&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 128, 128);&quot;&gt;AdventureWorks&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;'&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;,&lt;br /&gt;
NAMESPACE &lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt; DEFAULT&lt;br /&gt;
)&lt;/span&gt;&lt;/span&gt;
&lt;/pre&gt;
&lt;p&gt;&lt;strong&gt;&lt;ins&gt;Your HTTP Endpoint is created, to access type the following
URL:&lt;/ins&gt; &lt;a href=&quot;http://myserver/Contacts?WSDL&quot;&gt;http://myserver/Contacts?WSDL&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;ins&gt;NOTE: Don't forget to fix the &amp;quot;Connect&amp;quot; right for the accounts
who access on this web service.&lt;/ins&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt; &lt;/p&gt;</description>
    
    
    
      </item>
    
  <item>
    <title>Moving TempDB database on SQL 2005</title>
    <link>http://blog.it-spirit.eu/post/2009/07/02/first</link>
    <guid isPermaLink="false">urn:md5:ac9147f393ac3fdd84185f792d73eb43</guid>
    <pubDate>Thu, 02 Jul 2009 22:42:00 +0000</pubDate>
    <dc:creator>Michael</dc:creator>
        <category>MS-SQL2005</category>
        <category>SQL 2005</category>    
    <description>    &lt;h4 id=&quot;subjcns!892A511E98920003!241&quot; class=&quot;beTitle&quot;&gt;&lt;ins&gt;Moving TempDB
database on SQL 2005&lt;/ins&gt;&lt;/h4&gt;
&lt;div id=&quot;msgcns!892A511E98920003!241&quot; class=&quot;bvMsg&quot;&gt;
&lt;p&gt;When you configure your SQL server server it's important to move
your TempDB databse on another disk, to do taht follow steps
below: &lt;/p&gt;
&lt;p&gt;Use the following query:&lt;/p&gt;
&lt;p&gt;&lt;em&gt;use master ;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;go&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;alter database tempdb modify file (name= tempdev, filename= 'target
path\tempdb.mdf') ;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;go ;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Repeat this command for each files linked on this DB.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;ins&gt;&lt;strong&gt;Note: If you move on sql cluster, check that the target disk is
include in the dependencies of the sql service.&lt;/strong&gt;&lt;/ins&gt;&lt;/p&gt;
&lt;p&gt;&lt;ins&gt;&lt;a href=&quot;http://support.microsoft.com/kb/224071&quot; hreflang=&quot;en&quot;&gt;KB
Article: KB 224071.&lt;/a&gt;&lt;/ins&gt;&lt;/p&gt;
&lt;/div&gt;</description>
    
    
    
      </item>
    
</channel>
</rss>
