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

<channel>
	<title>SharePoint 2010 Archives - Blog IT</title>
	<atom:link href="https://blogit.create.pt/tag/sharepoint-2010/feed/" rel="self" type="application/rss+xml" />
	<link>https://blogit.create.pt/tag/sharepoint-2010/</link>
	<description>Create IT blogger community</description>
	<lastBuildDate>Thu, 10 Jan 2019 12:46:18 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.1</generator>
	<item>
		<title>Activating all Publishing Feature &#8211; Programmatically &#038; Powershell &#8211; SharePoint 2010, 2013, 2016 &#038; Online:</title>
		<link>https://blogit.create.pt/fabiocarvalho/2017/07/28/activating-all-publishing-feature-programmatically-powershell-sharepoint-2010-2013-2016-online/</link>
					<comments>https://blogit.create.pt/fabiocarvalho/2017/07/28/activating-all-publishing-feature-programmatically-powershell-sharepoint-2010-2013-2016-online/#respond</comments>
		
		<dc:creator><![CDATA[Fábio Carvalho]]></dc:creator>
		<pubDate>Fri, 28 Jul 2017 21:50:48 +0000</pubDate>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[Office]]></category>
		<category><![CDATA[Microsoft 365]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Administration]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Publishing Site]]></category>
		<category><![CDATA[SharePoint 2010]]></category>
		<category><![CDATA[SharePoint 2013]]></category>
		<category><![CDATA[SharePoint 2016]]></category>
		<category><![CDATA[SharePoint Online]]></category>
		<guid isPermaLink="false">http://blogit.create.pt/fabiocarvalho/?p=3774</guid>

					<description><![CDATA[<p>Hi Everyone!!! Today i will talk about Publishing Features!!! During this afternoon I was trying to activate Publishing Features but i wasn&#8217;t having success because Page Library not was created on activation! So there are more than two Publishing Feature that we need have in consideration, it&#8217;s not enough Activate Publishing Infrastructure Feature and Publishing Feature. If [&#8230;]</p>
<p>The post <a href="https://blogit.create.pt/fabiocarvalho/2017/07/28/activating-all-publishing-feature-programmatically-powershell-sharepoint-2010-2013-2016-online/">Activating all Publishing Feature &#8211; Programmatically &#038; Powershell &#8211; SharePoint 2010, 2013, 2016 &#038; Online:</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Hi Everyone!!!</p>
<p>Today i will talk about Publishing Features!!! During this afternoon I was trying to activate Publishing Features but i wasn&#8217;t having success because Page Library not was created on activation! So there are more than two Publishing Feature that we need have in consideration, it&#8217;s not enough Activate Publishing Infrastructure Feature and Publishing Feature. If you want activate all Publishing Features you can do it pragmatically or using Powershell script:</p>
<p><span style="color: #800000"><strong>SharePoint Server &#8211; Powershell:</strong></span></p>
<pre class="brush: bash; title: ; notranslate"> 
Disable-SPFeature –identity 'publishingSite' -URL http://server/ -force
Disable-SPFeature –identity 'PublishingResources' -URL http://server/-force
Disable-SPFeature –identity 'Publishing' -URL http://server/ -force
Disable-SPFeature –identity 'PublishingLayouts' -URL http://server/ -force
Disable-SPFeature –identity 'publishingweb' -URL http://server/ -force

Enable-SPFeature –identity 'publishingSite' -URL http://server/ -force
Enable-SPFeature –identity 'PublishingResources' -URL http://server/ -force
Enable-SPFeature –identity 'Publishing' -URL http://server/ -force
Enable-SPFeature –identity 'PublishingLayouts' -URL http://server/ -force
Enable-SPFeature –identity 'publishingweb' -URL http://server/ -force
</pre>
<p><span style="color: #800000"><strong>SharePoint Online &#8211; Powershell:</strong></span></p>
<pre class="brush: bash; title: ; notranslate"> 
Disable-SPOFeature –Identity &quot;F6924D36-2FA8-4f0b-B16D-06B7250180FA&quot; -Scope Site
Disable-SPOFeature –Identity &quot;AEBC918D-B20F-4a11-A1DB-9ED84D79C87E&quot; -Scope Site
Disable-SPOFeature –Identity &quot;22A9EF51-737B-4ff2-9346-694633FE4416&quot; -Scope Web
Disable-SPOFeature –Identity &quot;D3F51BE2-38A8-4e44-BA84-940D35BE1566&quot; -Scope Site
Disable-SPOFeature –Identity &quot;94C94CA6-B32F-4da9-A9E3-1F3D343D7ECB&quot; -Scope Web

Enable-SPOFeature –Identity &quot;F6924D36-2FA8-4f0b-B16D-06B7250180FA&quot; -Scope Site
Enable-SPOFeature –Identity &quot;AEBC918D-B20F-4a11-A1DB-9ED84D79C87E&quot; -Scope Site
Enable-SPOFeature –Identity &quot;22A9EF51-737B-4ff2-9346-694633FE4416&quot; -Scope Web
Enable-SPOFeature –Identity &quot;D3F51BE2-38A8-4e44-BA84-940D35BE1566&quot; -Scope Site
Enable-SPOFeature –Identity &quot;94C94CA6-B32F-4da9-A9E3-1F3D343D7ECB&quot; -Scope Web
</pre>
<p><strong><span style="color: #800000">Also that you can activate Programmatically:</span></strong></p>
<pre class="brush: jscript; title: ; notranslate"> 

        private void ActivatePublishingFeatures(SPWeb web, SPSite site)
        {
            // Publishing Site
            string sharePointPublishingSite = &quot;f6924d36-2fa8-4f0b-b16d-06b7250180fa&quot;;
            Guid sharePointPublishingSiteGuid = new Guid(sharePointPublishingSite);

            if (site.Features&#x5B;sharePointPublishingSiteGuid] == null)
            {
                site.Features.Add(sharePointPublishingSiteGuid, true);
            }

            // Publishing Resources
            string sharePointPublishingResources = &quot;aebc918d-b20f-4a11-a1db-9ed84d79c87e&quot;;
            Guid sharePointPublishingResourcesGuid = new Guid(sharePointPublishingResources);

            if (site.Features&#x5B;sharePointPublishingResourcesGuid] == null)
            {
                site.Features.Add(sharePointPublishingResourcesGuid, true);
            }

            // Publishing
            string sharePointPublishing = &quot;22a9ef51-737b-4ff2-9346-694633fe4416&quot;;
            Guid sharePointPublishingGuid = new Guid(sharePointPublishing);

            if (web.Features&#x5B;sharePointPublishingGuid] == null)
            {
                web.Features.Add(sharePointPublishingGuid, true);
            }

            // Publishing Layouts
            string sharePointPublishingLayouts = &quot;d3f51be2-38a8-4e44-ba84-940d35be1566&quot;;
            Guid sharePointPublishingLayoutsGuid = new Guid(sharePointPublishingLayouts);

            if (site.Features&#x5B;sharePointPublishingLayoutsGuid] == null)
            {
                site.Features.Add(sharePointPublishingLayoutsGuid, true);
            }

            // Publishing Web
            string sharePointServerPublishingWeb = &quot;94c94ca6-b32f-4da9-a9e3-1f3d343d7ecb&quot;;
            Guid sharePointServerPublishingWebGuid = new Guid(sharePointServerPublishingWeb);

            if (web.Features&#x5B;sharePointServerPublishingWebGuid] == null)
            {
                web.Features.Add(sharePointServerPublishingWebGuid, true);
            }
        }
</pre>
<p>Thanks</p>
<p><span style="color: #800000"><a href="https://www.linkedin.com/in/fmrgc/"><strong>Fábio Carvalho</strong></a></span><br />
SharePoint Consultant<br />
<strong>|create|</strong><span style="color: #ff0000"><strong>it</strong></span><strong>|</strong></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>The post <a href="https://blogit.create.pt/fabiocarvalho/2017/07/28/activating-all-publishing-feature-programmatically-powershell-sharepoint-2010-2013-2016-online/">Activating all Publishing Feature &#8211; Programmatically &#038; Powershell &#8211; SharePoint 2010, 2013, 2016 &#038; Online:</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blogit.create.pt/fabiocarvalho/2017/07/28/activating-all-publishing-feature-programmatically-powershell-sharepoint-2010-2013-2016-online/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>SharePoint &#8211; Get all alerts from a specific SP List/Library using Powershell</title>
		<link>https://blogit.create.pt/fabiocarvalho/2017/03/25/sharepoint-get-all-alerts-from-a-specific-sp-listlibrary-using-powershell/</link>
					<comments>https://blogit.create.pt/fabiocarvalho/2017/03/25/sharepoint-get-all-alerts-from-a-specific-sp-listlibrary-using-powershell/#comments</comments>
		
		<dc:creator><![CDATA[Fábio Carvalho]]></dc:creator>
		<pubDate>Sat, 25 Mar 2017 10:52:54 +0000</pubDate>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Administration]]></category>
		<category><![CDATA[SharePoint 2010]]></category>
		<category><![CDATA[SharePoint 2013]]></category>
		<category><![CDATA[SharePoint 2016]]></category>
		<guid isPermaLink="false">http://blogit.create.pt/fabiocarvalho/?p=3011</guid>

					<description><![CDATA[<p>Hey Everyone!!! Today i will talk about List and Library Alerts and how can you get all Active alerts for a specific list using powershell script and how can you disable all alerts. This is very useful script, when you need move a large list of items on a maintenance routine and you don&#8217;t want [&#8230;]</p>
<p>The post <a href="https://blogit.create.pt/fabiocarvalho/2017/03/25/sharepoint-get-all-alerts-from-a-specific-sp-listlibrary-using-powershell/">SharePoint &#8211; Get all alerts from a specific SP List/Library using Powershell</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Hey Everyone!!!</p>
<p>Today i will talk about <strong>List and Library Alerts</strong> and how can you get all Active alerts for a specific list using powershell script and how can you disable all alerts.</p>
<p>This is very <strong>useful script</strong>, when you need move a <strong>large list</strong> <strong>of items</strong> on a maintenance routine and <strong>you don&#8217;t want send a large number of emails/ notifications</strong> for users who subscribe alerts, this script help you <strong>disable and enable</strong> them.</p>
<p>This first PowerShell Script get all SharePoint list alerts with state <strong>active</strong>.</p>
<pre class="brush: bash; title: ; notranslate"> 

Add-PSSnapin Microsoft.SharePoint.PowerShell –ErrorAction SilentlyContinue

#Variables
$WebURL = &quot;http://YourWebUrl&quot;
$ListName=&quot;YourListName&quot;

#Function to Get All Active Alerts on a Given List
Function Get-ListAlerts($WebURL, $ListName)
{
  #Get the Web and List objects
  $Web = Get-SPWeb $WebURL
  $List = $web.Lists.TryGetList($ListName)

  #Get All Alerts created in the list - Which are Active
  $ListAlerts = $Web.Alerts | Where-Object {($_.List.Title -eq $List.Title) -and ($_.Status -eq &quot;ON&quot;)}

  foreach($Alert in $ListAlerts)
  {
          write-host &quot;Alert' - $($Alert.Title)' Created for User - '$($Alert.User.Name)'&quot;
  }

 #Dispose web object
 $Web.Dispose()
}

#Call the function Appropriately to Disable or Enable Alerts 
Disable-ListAlerts $WebURL $ListName

 </pre>
<p>&nbsp;</p>
<p>If you want <strong>disable</strong> all alerts on this specific list you just need run the following script.</p>
<pre class="brush: bash; title: ; notranslate"> 

Add-PSSnapin Microsoft.SharePoint.PowerShell –ErrorAction SilentlyContinue

#Variables
$WebURL = &quot;http://YourWebUrl&quot;
$ListName=&quot;YourListName&quot;

#Function to Disable All Active Alerts on a Given List
Function Disable-ListAlerts($WebURL, $ListName)
{
  #Get the Web and List objects
  $Web = Get-SPWeb $WebURL
  $List = $web.Lists.TryGetList($ListName)

  #Get All Alerts created in the list - Which are Active
  $ListAlerts = $Web.Alerts | Where-Object {($_.List.Title -eq $List.Title) -and ($_.Status -eq &quot;ON&quot;)}

  Write-host &quot;Total Number of Active Alerts Found in the list: $($ListAlerts.Count)&quot; 
 
  #Iterate through each alert and turn it OFF
  foreach($Alert in $ListAlerts)
  {
     $Alert.Status=&quot;OFF&quot;
     $Alert.Update()
     write-host &quot;Disabled the Alert' $($Alert.Title)' Created for User '$($Alert.User.Name)'&quot;
  }
 
 #Dispose web object
 $Web.Dispose()
}

#Call the function Appropriately to Disable or Enable Alerts 
Disable-ListAlerts $WebURL $ListName

</pre>
<p>&nbsp;</p>
<p>Thanks</p>
<p><span style="color: #000000"><a style="color: #000000" href="https://www.linkedin.com/in/fmrgc/"><strong>Fábio Carvalho</strong></a></span><br />
SharePoint Consultant<br />
<strong>|create|</strong><span style="color: #ff0000"><strong>it</strong></span><strong>|</strong></p>
<p>The post <a href="https://blogit.create.pt/fabiocarvalho/2017/03/25/sharepoint-get-all-alerts-from-a-specific-sp-listlibrary-using-powershell/">SharePoint &#8211; Get all alerts from a specific SP List/Library using Powershell</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blogit.create.pt/fabiocarvalho/2017/03/25/sharepoint-get-all-alerts-from-a-specific-sp-listlibrary-using-powershell/feed/</wfw:commentRss>
			<slash:comments>4</slash:comments>
		
		
			</item>
		<item>
		<title>SharePoint Online &#8211; Storage Metrics &#8211; Monitor storage usage in your Site Collection</title>
		<link>https://blogit.create.pt/fabiocarvalho/2017/03/23/sharepoint-online-storage-metrics-monitor-storage-usage-in-your-site-collection/</link>
					<comments>https://blogit.create.pt/fabiocarvalho/2017/03/23/sharepoint-online-storage-metrics-monitor-storage-usage-in-your-site-collection/#respond</comments>
		
		<dc:creator><![CDATA[Fábio Carvalho]]></dc:creator>
		<pubDate>Thu, 23 Mar 2017 23:25:35 +0000</pubDate>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Migration]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Administration]]></category>
		<category><![CDATA[SharePoint 2010]]></category>
		<category><![CDATA[SharePoint 2013]]></category>
		<category><![CDATA[SharePoint 2016]]></category>
		<category><![CDATA[SharePoint Online]]></category>
		<category><![CDATA[Storage Metrics]]></category>
		<guid isPermaLink="false">http://blogit.create.pt/fabiocarvalho/?p=2881</guid>

					<description><![CDATA[<p>Hey Everyone!!! Today i will talk about Storage Metrics in your SharePoint Site Collection!!! Everyone knows what is the main feature on SharePoint that you could interact with and Structure of SharePoint Site Collections! right!? Site Content and Struct (/_layouts/sitemanager.aspx)!!! Site Content and Structure page, give you a great overview about all your Site Collection [&#8230;]</p>
<p>The post <a href="https://blogit.create.pt/fabiocarvalho/2017/03/23/sharepoint-online-storage-metrics-monitor-storage-usage-in-your-site-collection/">SharePoint Online &#8211; Storage Metrics &#8211; Monitor storage usage in your Site Collection</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Hey Everyone!!!</p>
<p>Today i will talk about <strong>Storage Metrics</strong> in your <strong>SharePoint Site Collection</strong>!!!</p>
<p>Everyone knows what is the main feature on SharePoint that you could interact with and Structure of SharePoint Site Collections! right!? <strong>Site Content and Struct (/_layouts/sitemanager.aspx)</strong>!!!</p>
<p><img fetchpriority="high" decoding="async" class="aligncenter wp-image-2891 size-full" src="http://blogit.create.pt/fabiocarvalho/wp-content/uploads/sites/271/2017/03/dure.png" alt="" width="1279" height="683" srcset="https://blogit.create.pt/wp-content/uploads/2017/03/dure.png 1279w, https://blogit.create.pt/wp-content/uploads/2017/03/dure-300x160.png 300w, https://blogit.create.pt/wp-content/uploads/2017/03/dure-768x410.png 768w, https://blogit.create.pt/wp-content/uploads/2017/03/dure-1024x547.png 1024w, https://blogit.create.pt/wp-content/uploads/2017/03/dure-696x372.png 696w, https://blogit.create.pt/wp-content/uploads/2017/03/dure-1068x570.png 1068w, https://blogit.create.pt/wp-content/uploads/2017/03/dure-787x420.png 787w" sizes="(max-width: 1279px) 100vw, 1279px" /></p>
<p><strong>Site Content and Structure</strong> page, give you a <strong>great overview</strong> about all your Site Collection structure. This feature, available since Microsoft Office <strong>SharePoint Server 2007</strong>, give the capability to <strong>navigate dynamically</strong> on your site collection hierarchy, it is familiar to Windows Explorer in fact. You can see the site collection hierarchy in the navigation pane<strong> as a tree view</strong> on the left of the Site Content and Structure page.</p>
<p>But, if you need know <strong>more details about storage</strong>, probably don&#8217;t help you as you expect, so in this case you case access to <strong>Storage Metrics (/_layouts/storman.aspx).</strong></p>
<p><img decoding="async" class="aligncenter wp-image-2931 size-full" src="http://blogit.create.pt/fabiocarvalho/wp-content/uploads/sites/271/2017/03/Capsture.png" alt="" width="1176" height="875" srcset="https://blogit.create.pt/wp-content/uploads/2017/03/Capsture.png 1176w, https://blogit.create.pt/wp-content/uploads/2017/03/Capsture-300x223.png 300w, https://blogit.create.pt/wp-content/uploads/2017/03/Capsture-768x571.png 768w, https://blogit.create.pt/wp-content/uploads/2017/03/Capsture-1024x762.png 1024w, https://blogit.create.pt/wp-content/uploads/2017/03/Capsture-80x60.png 80w, https://blogit.create.pt/wp-content/uploads/2017/03/Capsture-265x198.png 265w, https://blogit.create.pt/wp-content/uploads/2017/03/Capsture-696x518.png 696w, https://blogit.create.pt/wp-content/uploads/2017/03/Capsture-1068x795.png 1068w, https://blogit.create.pt/wp-content/uploads/2017/03/Capsture-564x420.png 564w" sizes="(max-width: 1176px) 100vw, 1176px" /></p>
<p>&nbsp;</p>
<p>Storage Metrics underneath Site Collection Administration, access to your all sub-sites and libraries in <strong>SharePoint Online</strong> ( also available for SharePoint 2010, <strong>SharePoint 2013</strong> and <strong>SharePoint 2016</strong>) and give you the information about <strong>how much storage they are consuming</strong>.</p>
<p>It is great!!! Because Storage Metrics allows you to <strong>drill down</strong> to each site, library and even folder to show a very granular report on your storage consumption, this is very important if you need migrate a large lists or even you are planning an migration between SharePoint Versions <strong>without any 3rd Party tool.</strong></p>
<p><span style="color: #800000"><strong>Take a Look:</strong></span></p>
<p><img decoding="async" class="aligncenter size-full wp-image-2951" src="http://blogit.create.pt/fabiocarvalho/wp-content/uploads/sites/271/2017/03/Captursse.png" alt="" width="1175" height="877" srcset="https://blogit.create.pt/wp-content/uploads/2017/03/Captursse.png 1175w, https://blogit.create.pt/wp-content/uploads/2017/03/Captursse-300x224.png 300w, https://blogit.create.pt/wp-content/uploads/2017/03/Captursse-768x573.png 768w, https://blogit.create.pt/wp-content/uploads/2017/03/Captursse-1024x764.png 1024w, https://blogit.create.pt/wp-content/uploads/2017/03/Captursse-80x60.png 80w, https://blogit.create.pt/wp-content/uploads/2017/03/Captursse-265x198.png 265w, https://blogit.create.pt/wp-content/uploads/2017/03/Captursse-696x519.png 696w, https://blogit.create.pt/wp-content/uploads/2017/03/Captursse-1068x797.png 1068w, https://blogit.create.pt/wp-content/uploads/2017/03/Captursse-563x420.png 563w" sizes="(max-width: 1175px) 100vw, 1175px" /></p>
<p><img decoding="async" class="aligncenter size-full wp-image-2961" src="http://blogit.create.pt/fabiocarvalho/wp-content/uploads/sites/271/2017/03/Captuerre.png" alt="" width="1175" height="417" srcset="https://blogit.create.pt/wp-content/uploads/2017/03/Captuerre.png 1175w, https://blogit.create.pt/wp-content/uploads/2017/03/Captuerre-300x106.png 300w, https://blogit.create.pt/wp-content/uploads/2017/03/Captuerre-768x273.png 768w, https://blogit.create.pt/wp-content/uploads/2017/03/Captuerre-1024x363.png 1024w, https://blogit.create.pt/wp-content/uploads/2017/03/Captuerre-696x247.png 696w, https://blogit.create.pt/wp-content/uploads/2017/03/Captuerre-1068x379.png 1068w" sizes="(max-width: 1175px) 100vw, 1175px" /></p>
<p><img decoding="async" class="aligncenter size-full wp-image-2971" src="http://blogit.create.pt/fabiocarvalho/wp-content/uploads/sites/271/2017/03/Captewure.png" alt="" width="1170" height="841" srcset="https://blogit.create.pt/wp-content/uploads/2017/03/Captewure.png 1170w, https://blogit.create.pt/wp-content/uploads/2017/03/Captewure-300x216.png 300w, https://blogit.create.pt/wp-content/uploads/2017/03/Captewure-768x552.png 768w, https://blogit.create.pt/wp-content/uploads/2017/03/Captewure-1024x736.png 1024w, https://blogit.create.pt/wp-content/uploads/2017/03/Captewure-696x500.png 696w, https://blogit.create.pt/wp-content/uploads/2017/03/Captewure-1068x768.png 1068w, https://blogit.create.pt/wp-content/uploads/2017/03/Captewure-584x420.png 584w" sizes="(max-width: 1170px) 100vw, 1170px" /></p>
<p>&nbsp;</p>
<p><img decoding="async" class="aligncenter size-full wp-image-2981" src="http://blogit.create.pt/fabiocarvalho/wp-content/uploads/sites/271/2017/03/Capeee.png" alt="" width="1173" height="597" srcset="https://blogit.create.pt/wp-content/uploads/2017/03/Capeee.png 1173w, https://blogit.create.pt/wp-content/uploads/2017/03/Capeee-300x153.png 300w, https://blogit.create.pt/wp-content/uploads/2017/03/Capeee-768x391.png 768w, https://blogit.create.pt/wp-content/uploads/2017/03/Capeee-1024x521.png 1024w, https://blogit.create.pt/wp-content/uploads/2017/03/Capeee-696x354.png 696w, https://blogit.create.pt/wp-content/uploads/2017/03/Capeee-1068x544.png 1068w, https://blogit.create.pt/wp-content/uploads/2017/03/Capeee-825x420.png 825w" sizes="(max-width: 1173px) 100vw, 1173px" /></p>
<p>&nbsp;</p>
<p>Thanks</p>
<p><span style="color: #000000"><a style="color: #000000" href="https://www.linkedin.com/in/fmrgc/"><strong>Fábio Carvalho</strong></a></span><br />
SharePoint Consultant<br />
<strong>|create|</strong><span style="color: #ff0000"><strong>it</strong></span><strong>|</strong></p>
<p>The post <a href="https://blogit.create.pt/fabiocarvalho/2017/03/23/sharepoint-online-storage-metrics-monitor-storage-usage-in-your-site-collection/">SharePoint Online &#8211; Storage Metrics &#8211; Monitor storage usage in your Site Collection</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blogit.create.pt/fabiocarvalho/2017/03/23/sharepoint-online-storage-metrics-monitor-storage-usage-in-your-site-collection/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>SharePoint 2016 &#8211; Create Service Accounts using PowerShell script</title>
		<link>https://blogit.create.pt/fabiocarvalho/2017/02/20/sharepoint-2016-create-service-accounts-using-powershell-script/</link>
					<comments>https://blogit.create.pt/fabiocarvalho/2017/02/20/sharepoint-2016-create-service-accounts-using-powershell-script/#comments</comments>
		
		<dc:creator><![CDATA[Fábio Carvalho]]></dc:creator>
		<pubDate>Mon, 20 Feb 2017 23:46:01 +0000</pubDate>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Administration]]></category>
		<category><![CDATA[Service Accounts]]></category>
		<category><![CDATA[SharePoint 2010]]></category>
		<category><![CDATA[SharePoint 2013]]></category>
		<category><![CDATA[SharePoint 2016]]></category>
		<guid isPermaLink="false">http://blogit.create.pt/fabiocarvalho/?p=2381</guid>

					<description><![CDATA[<p>Hey Everyone!!! Today i will show you how can you create SharePoint 2016 Service Accounts using PowerShell script following the Best Practices. The script not only create all the accounts but also create the respectives OU (Organizational Unit): SharePoint Accounts SQL Accounts Service Accounts:  Name  Description  Local Rights  Domain Rights SP_Farm The server farm account is used [&#8230;]</p>
<p>The post <a href="https://blogit.create.pt/fabiocarvalho/2017/02/20/sharepoint-2016-create-service-accounts-using-powershell-script/">SharePoint 2016 &#8211; Create Service Accounts using PowerShell script</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Hey Everyone!!!</p>
<p>Today i will show you how can you create <strong>SharePoint 2016 Service Accounts</strong> using <strong>PowerShell</strong> script following the <strong>Best Practices</strong>.</p>
<p>The script not only create all the accounts but also create the respectives <strong>OU</strong> (<strong>Organizational Unit</strong>):</p>
<ul>
<li>SharePoint Accounts</li>
<li>SQL Accounts</li>
</ul>
<p><strong><span style="color: #800000">Service Accounts:</span></strong></p>
<table border="0" width="400" cellspacing="0" cellpadding="2">
<tbody>
<tr>
<td valign="top" width="100"><strong><span style="color: #800000"> Name</span></strong></td>
<td valign="top" width="100"><strong><span style="color: #800000"> Description</span></strong></td>
<td valign="top" width="100"><strong><span style="color: #800000"> Local Rights</span></strong></td>
<td valign="top" width="100"><strong><span style="color: #800000"> Domain Rights</span></strong></td>
</tr>
<tr>
<td valign="top" width="100"><strong>SP_Farm</strong></td>
<td valign="top" width="100">The server farm account is used to perform the following tasks:<br />
-Configure and manage the server farm.<br />
-Act as the application pool identity for the SharePoint Central Administration Web site.<br />
-Run the Microsoft SharePoint Foundation Workflow Timer Service.</td>
<td valign="top" width="100">SecurityAdmin and DB_Creator rights on the SQL Instance</td>
<td valign="top" width="100">Domain User</td>
</tr>
<tr>
<td valign="top" width="100"><strong>SP_Admin</strong></td>
<td valign="top" width="100">The server farm account is used to perform the following tasks:<br />
-Setup<br />
-SharePoint Products Configuration Wizard</td>
<td valign="top" width="100">Local Administrator on all the SharePoint Servers. SecurityAdmin and DB_Creator rights on the SQL Instance</td>
<td valign="top" width="100">Domain User</td>
</tr>
<tr>
<td valign="top" width="100"><strong>SP_Pool</strong></td>
<td valign="top" width="100">The Pool account is used to run the Web Application Pools</td>
<td valign="top" width="100">None</td>
<td valign="top" width="100">Domain User</td>
</tr>
<tr>
<td valign="top" width="100"><strong>SP_Services</strong></td>
<td valign="top" width="100">The Services Account is used to run the Service Application Pool</td>
<td valign="top" width="100">None</td>
<td valign="top" width="100">Domain User</td>
</tr>
<tr>
<td valign="top" width="100"><strong>SP_Crawl</strong></td>
<td valign="top" width="100">The Default Content Access Account for the Search Service Application</td>
<td valign="top" width="100">None</td>
<td valign="top" width="100">Domain User</td>
</tr>
<tr>
<td valign="top" width="100"><strong>SP_Search</strong></td>
<td valign="top" width="100">Service Account to run the SharePoint Search “Windows Service”</td>
<td valign="top" width="100">None</td>
<td valign="top" width="100">Domain User</td>
</tr>
<tr>
<td valign="top" width="100"><strong>SP_UserProfiles</strong></td>
<td valign="top" width="100">The User Profile Synchronization Account</td>
<td valign="top" width="100">None</td>
<td valign="top" width="100">Domain User</td>
</tr>
<tr>
<td valign="top" width="100"><strong>SP_MySitePool</strong></td>
<td valign="top" width="100">Used for the My Sites Web Application</td>
<td valign="top" width="100">None</td>
<td valign="top" width="100">Domain User</td>
</tr>
<tr>
<td valign="top" width="100"><strong>SP_CacheSuperUser</strong></td>
<td valign="top" width="100">Object Cache Service Account. The goals of the object cache are to reduce the load on the computer on which SQL Server is running, and to improve request latency and throughput. These user account must be properly configured to ensure that the object cache works correctly.</td>
<td valign="top" width="100">None.<br />
SharePoint: Must be an account that has Full Control access to the Web application.</td>
<td valign="top" width="100">Domain User</td>
</tr>
<tr>
<td valign="top" width="100"><strong>SP_CacheSuperReader</strong></td>
<td valign="top" width="100">Object Cache Service Account. The goals of the object cache are to reduce the load on the computer on which SQL Server is running, and to improve request latency and throughput. These user account must be properly configured to ensure that the object cache works correctly.</td>
<td valign="top" width="100">None.<br />
SharePoint: Must be an account that has Full Read access to the Web application</td>
<td valign="top" width="100">Domain User</td>
</tr>
<tr>
<td valign="top" width="100"><strong>WF_Service</strong></td>
<td valign="top" width="100">WorkFlow Manager Service Account</td>
<td valign="top" width="100">Local Administrator and SysAdmin rights on the SQL instance.</td>
<td valign="top" width="100">Domain User</td>
</tr>
<tr>
<td valign="top" width="100"><strong>SP_MySitePool</strong></td>
<td valign="top" width="100">Used for the My Sites Web Application</td>
<td valign="top" width="100">None</td>
<td valign="top" width="100">Domain User</td>
</tr>
<tr>
<td valign="top" width="100"><strong>SP_VisioUser</strong></td>
<td valign="top" width="100">Visio Unattended ID</td>
<td valign="top" width="100">None</td>
<td valign="top" width="100">Domain User</td>
</tr>
<tr>
<td valign="top" width="100"><strong>SP_ExcelUser</strong></td>
<td valign="top" width="100">Excel Unattended ID</td>
<td valign="top" width="100">None</td>
<td valign="top" width="100">Domain User</td>
</tr>
<tr>
<td valign="top" width="100"><strong>SP_PerfPointUser</strong></td>
<td valign="top" width="100">Performance Point Unattended ID</td>
<td valign="top" width="100">None</td>
<td valign="top" width="100">Domain User</td>
</tr>
<tr>
<td valign="top" width="100"><strong>SQL_Admin</strong></td>
<td valign="top" width="100">SQL Admin on the SQL Server. Used to Install the SQL Server.</td>
<td valign="top" width="100">Local Administrator on the SQL Server</td>
<td valign="top" width="100">Domain User</td>
</tr>
<tr>
<td valign="top" width="100"><strong>SQL_Services</strong></td>
<td valign="top" width="100">It is the service account for the following SQL Server services: MSSQLSERVER SQLSERVERAGENT</td>
<td valign="top" width="100">None</td>
<td valign="top" width="100">Domain User</td>
</tr>
</tbody>
</table>
<p><strong><span style="color: #800000"><br />
Script:</span></strong></p>
<pre class="brush: bash; title: ; notranslate"> 

$mydom = (get-addomain).distinguishedname 
$password = &quot;pass@word1&quot; | ConvertTo-SecureString -AsPlainText -Force 

$ouNameSP = &quot;SharePoint Accounts&quot;
$oudnSP = &quot;OU=$ounameSP,$mydom&quot; 

$ouNameSQL = &quot;SQL Accounts&quot; 
$oudnSQL = &quot;OU=$ounameSQL,$mydom&quot; 

#----------------------------&gt; Organizational Unit &lt;---------------------------- 

New-ADOrganizationalUnit -Name $OUNameSP -Path $mydom 
Write-Host &quot;OU $OUNameSP Created&quot; -foregroundcolor green 

New-ADOrganizationalUnit -Name $OUNameSQL -Path $mydom 
Write-Host &quot;OU $OUNameSQL Created&quot; -foregroundcolor green 

#-----------------------------&gt; SharePoint 2016 &lt;-------------------------------

$usersArraySP = @(&quot;SP_Farm&quot;,&quot;SP_Admin&quot;,&quot;SP_Pool&quot;,&quot;SP_Services&quot;,&quot;SP_Crawl&quot;,&quot;SP_Search&quot;,
                  &quot;SP_UserProfiles&quot;,&quot;SP_PortalSuperReader&quot;,&quot;SP_CacheSuperUser&quot;,&quot;SP_VisioUser&quot;,
                  &quot;SP_PerfPointUser&quot;,&quot;WF_Service&quot;,&quot;SP_MySitePool&quot;,&quot;SP_PortalSuperUser&quot;)

foreach ($usp in $usersArraySP) {
        New-ADUser -Name $usp -DisplayName $usp -SamAccountName $usp -AccountPassword $password 
        -ChangePasswordAtLogon $false -PassThru -PasswordNeverExpires $true -Path $oudnSP 
        Write-Host &quot;$usp Created&quot; -foregroundcolor green
 }

#----------------------------------&gt; SQL &lt;--------------------------------------
$usersArraySQL = @(&quot;SQL_Admin&quot;,&quot;SQL_Service&quot;)

foreach ($usql in $usersArraySQL) {
       New-ADUser -Name $usql -DisplayName $usql -SamAccountName $usql -AccountPassword $password 
       -ChangePasswordAtLogon $false -PassThru -PasswordNeverExpires $true -Path $oudnSQL
       Write-Host &quot;$usql Created&quot; -foregroundcolor green
 }

</pre>
<p><img decoding="async" class="size-full wp-image-2521 aligncenter" src="http://blogit.create.pt/fabiocarvalho/wp-content/uploads/sites/271/2017/02/SharePoint-Services-Accounts-2016.png" alt="" width="629" height="372" srcset="https://blogit.create.pt/wp-content/uploads/2017/02/SharePoint-Services-Accounts-2016.png 629w, https://blogit.create.pt/wp-content/uploads/2017/02/SharePoint-Services-Accounts-2016-300x177.png 300w" sizes="(max-width: 629px) 100vw, 629px" /></p>
<p><img decoding="async" class="wp-image-2531 aligncenter" src="http://blogit.create.pt/fabiocarvalho/wp-content/uploads/sites/271/2017/02/SQL-Services-Accounts.png" alt="" width="485" height="222" srcset="https://blogit.create.pt/wp-content/uploads/2017/02/SQL-Services-Accounts.png 612w, https://blogit.create.pt/wp-content/uploads/2017/02/SQL-Services-Accounts-300x137.png 300w" sizes="(max-width: 485px) 100vw, 485px" /></p>
<p>&nbsp;</p>
<p>Thanks</p>
<p><strong>Fábio Carvalho</strong><br />
SharePoint Consultant<br />
<strong>|create|</strong><span style="color: #ff0000"><strong>it</strong></span><strong>|</strong></p>
<p>The post <a href="https://blogit.create.pt/fabiocarvalho/2017/02/20/sharepoint-2016-create-service-accounts-using-powershell-script/">SharePoint 2016 &#8211; Create Service Accounts using PowerShell script</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blogit.create.pt/fabiocarvalho/2017/02/20/sharepoint-2016-create-service-accounts-using-powershell-script/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>SharePoint &#8211; Export all solutions wsp using PowerShell script</title>
		<link>https://blogit.create.pt/fabiocarvalho/2017/02/16/sharepoint-export-all-solutions-wsp-using-powershell-script/</link>
					<comments>https://blogit.create.pt/fabiocarvalho/2017/02/16/sharepoint-export-all-solutions-wsp-using-powershell-script/#comments</comments>
		
		<dc:creator><![CDATA[Fábio Carvalho]]></dc:creator>
		<pubDate>Thu, 16 Feb 2017 02:52:53 +0000</pubDate>
				<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[Migration]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Administration]]></category>
		<category><![CDATA[SharePoint 2010]]></category>
		<category><![CDATA[SharePoint 2013]]></category>
		<category><![CDATA[SharePoint 2016]]></category>
		<category><![CDATA[Solutions]]></category>
		<guid isPermaLink="false">http://blogit.create.pt/fabiocarvalho/?p=2631</guid>

					<description><![CDATA[<p>Hey Everyone, Today i will post a script very helpful when you are on Migration steps and you need export all wsp solutions. $dirName = &#34;C:\WSP&#34; if (!(Test-Path -path $dirName)) { New-Item $dirName -type directory } Write-Host Exporting solutions to $dirName foreach ($solution in Get-SPSolution) { $id = $Solution.SolutionID $title = $Solution.Name $filename = $Solution.SolutionFile.Name [&#8230;]</p>
<p>The post <a href="https://blogit.create.pt/fabiocarvalho/2017/02/16/sharepoint-export-all-solutions-wsp-using-powershell-script/">SharePoint &#8211; Export all solutions wsp using PowerShell script</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Hey Everyone,</p>
<p>Today i will post a script very helpful when you are on Migration steps and you need export all wsp solutions.</p>
<pre class="brush: bash; title: ; notranslate"> 

$dirName = &quot;C:\WSP&quot;
if (!(Test-Path -path $dirName))
{
New-Item $dirName -type directory
}
Write-Host Exporting solutions to $dirName
foreach ($solution in Get-SPSolution)
{
    $id = $Solution.SolutionID
    $title = $Solution.Name
    $filename = $Solution.SolutionFile.Name
    Write-Host &quot;Exporting ‘$title’ to …\$filename&quot; -nonewline
    try {
        $solution.SolutionFile.SaveAs(&quot;$dirName\$filename&quot;)
        Write-Host &quot; – done&quot; -foreground green
    }
    catch
    {
        Write-Host &quot; – error : $_&quot; -foreground red
    }
}

</pre>
<p>Thanks</p>
<p><strong>Fábio Carvalho</strong><br />
SharePoint Consultant<br />
<strong>|create|</strong><span style="color: #ff0000"><strong>it</strong></span><strong>|</strong></p>
<p>The post <a href="https://blogit.create.pt/fabiocarvalho/2017/02/16/sharepoint-export-all-solutions-wsp-using-powershell-script/">SharePoint &#8211; Export all solutions wsp using PowerShell script</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blogit.create.pt/fabiocarvalho/2017/02/16/sharepoint-export-all-solutions-wsp-using-powershell-script/feed/</wfw:commentRss>
			<slash:comments>11</slash:comments>
		
		
			</item>
		<item>
		<title>SharePoint 2016 &#8211; Essential Migration Steps and Considerations</title>
		<link>https://blogit.create.pt/fabiocarvalho/2017/02/11/sharepoint-2016-essential-migration-steps-and-considerations/</link>
					<comments>https://blogit.create.pt/fabiocarvalho/2017/02/11/sharepoint-2016-essential-migration-steps-and-considerations/#comments</comments>
		
		<dc:creator><![CDATA[Fábio Carvalho]]></dc:creator>
		<pubDate>Sat, 11 Feb 2017 16:02:32 +0000</pubDate>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Migration]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Hybrid Solutions]]></category>
		<category><![CDATA[Office 365]]></category>
		<category><![CDATA[SharePoint 2001]]></category>
		<category><![CDATA[SharePoint 2003]]></category>
		<category><![CDATA[SharePoint 2007]]></category>
		<category><![CDATA[SharePoint 2010]]></category>
		<category><![CDATA[SharePoint 2013]]></category>
		<guid isPermaLink="false">http://blogit.create.pt/fabiocarvalho/?p=951</guid>

					<description><![CDATA[<p>Hey Everyone! Today i will talk about SharePoint Migrations, a complex process that requires an extra efforts depending the version of SharePoint. Why should I upgrade or migrate to SharePoint 2016?! 1.SharePoint Farm of company is old! If it&#8217;s SP2003, SP2007 or SP2010, Microsoft do not give more support and updates for that versions, so you [&#8230;]</p>
<p>The post <a href="https://blogit.create.pt/fabiocarvalho/2017/02/11/sharepoint-2016-essential-migration-steps-and-considerations/">SharePoint 2016 &#8211; Essential Migration Steps and Considerations</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Hey Everyone!</p>
<p>Today i will talk about SharePoint Migrations, a complex process that requires an extra efforts depending the version of SharePoint.</p>
<p><span style="color: #800000"><strong>Why should I upgrade or migrate to SharePoint 2016?!</strong></span></p>
<p><strong>1.</strong>SharePoint Farm of company is old! If it&#8217;s SP2003, SP2007 or SP2010, Microsoft<strong> do not give more support</strong> and <strong>updates</strong> for that versions, so <strong>you can&#8217;t expect more features our updates</strong> for your infrastructure.</p>
<p><a href="https://blogs.msdn.microsoft.com/sofocle/2013/10/01/sharepoint-product-lifecycle/">SharePoint Product Lifecycle</a></p>
<table border="0" width="500" cellspacing="0" cellpadding="2">
<tbody>
<tr>
<td valign="top" width="500"><span style="color: #800000"><strong>Products Released</strong></span></td>
<td style="text-align: center" valign="top" width="400"><span style="color: #800000"><strong> End Date of Support</strong></span></td>
</tr>
<tr>
<td style="text-align: left" valign="top" width="200"> SharePoint Portal Server 2001</td>
<td style="text-align: center" valign="top" width="200"><span style="color: #ff0000"> 11/07/2006</span></td>
</tr>
<tr>
<td style="text-align: left" valign="top" width="200"> SharePoint Portal Server 2003</td>
<td style="text-align: center" valign="top" width="200"><span style="color: #ff0000"> 14/04/2009</span></td>
</tr>
<tr>
<td valign="top" width="200"> SharePoint Server 2007</td>
<td style="text-align: center" valign="top" width="200"><span style="color: #ff0000"> 09/10/2012</span></td>
</tr>
<tr>
<td style="text-align: left" valign="top" width="200"> SharePoint Server 2010</td>
<td style="text-align: center" valign="top" width="200"><span style="color: #ff0000">13/10/2015</span></td>
</tr>
<tr>
<td style="text-align: left" valign="top" width="200"> SharePoint Server 2013</td>
<td style="text-align: center" valign="top" width="200"><span style="color: #008000">04/10/2018</span></td>
</tr>
</tbody>
</table>
<p>&nbsp;</p>
<p><strong>2.</strong>SharePoint 2016, it&#8217;s <strong>more stable and fast</strong> than the other version even is a version <strong>more close to the cloud</strong>, all the innovation and experience hosting SharePoint Online brought that knowledge and innovation to SharePoint 2016, also that, new version use <a href="https://technet.microsoft.com/en-us/library/mt346114(v=office.16).aspx">MinRoles </a>a <strong>significant improvement</strong> in terms of infrastructure.</p>
<p><img decoding="async" class="alignnone size-full wp-image-1091" src="http://blogit.create.pt/fabiocarvalho/wp-content/uploads/sites/271/2017/02/MinRole-Figure-1.png" alt="" width="631" height="544" srcset="https://blogit.create.pt/wp-content/uploads/2017/02/MinRole-Figure-1.png 631w, https://blogit.create.pt/wp-content/uploads/2017/02/MinRole-Figure-1-300x259.png 300w, https://blogit.create.pt/wp-content/uploads/2017/02/MinRole-Figure-1-487x420.png 487w" sizes="(max-width: 631px) 100vw, 631px" /></p>
<p><strong>3.</strong><strong>FIM</strong> is no more a component of SharePoint, it was replaced by <a href="https://technet.microsoft.com/en-us/library/mt627723(v=office.16).aspx"><strong>Microsoft Identity Manager (MIM)</strong></a>.</p>
<p><img decoding="async" class="alignnone size-full wp-image-1081" src="http://blogit.create.pt/fabiocarvalho/wp-content/uploads/sites/271/2017/02/MIM.png" alt="" width="731" height="430" srcset="https://blogit.create.pt/wp-content/uploads/2017/02/MIM.png 731w, https://blogit.create.pt/wp-content/uploads/2017/02/MIM-300x176.png 300w, https://blogit.create.pt/wp-content/uploads/2017/02/MIM-696x409.png 696w, https://blogit.create.pt/wp-content/uploads/2017/02/MIM-714x420.png 714w" sizes="(max-width: 731px) 100vw, 731px" /></p>
<p><strong>4.</strong><a href="https://blogs.msdn.microsoft.com/mvpawardprogram/2016/01/13/data-loss-prevention-dlp-in-sharepoint-2016-and-sharepoint-online/"><strong>Data Loss Prevention</strong></a> is now part of SharePoint.  You can now identify, monitor for, and protect sensitive data across SharePoint 2016, SharePoint Online, and One Drive for Business using SharePoint 2016.</p>
<p><img decoding="async" class="alignnone size-full wp-image-1071" src="http://blogit.create.pt/fabiocarvalho/wp-content/uploads/sites/271/2017/02/23.png" alt="" width="793" height="478" srcset="https://blogit.create.pt/wp-content/uploads/2017/02/23.png 793w, https://blogit.create.pt/wp-content/uploads/2017/02/23-300x181.png 300w, https://blogit.create.pt/wp-content/uploads/2017/02/23-768x463.png 768w, https://blogit.create.pt/wp-content/uploads/2017/02/23-696x420.png 696w, https://blogit.create.pt/wp-content/uploads/2017/02/23-697x420.png 697w" sizes="(max-width: 793px) 100vw, 793px" /></p>
<p><strong>5.Hybrid Solutions</strong> between SharePoint 2016 and Office 365,  now you can easily integrate with <strong>Office 365</strong> using <strong>SharePoint 2016</strong>. Taking the advantage of <strong><a href="https://support.office.com/en-us/article/Plan-cloud-hybrid-search-for-SharePoint-33926857-302c-424f-ba78-03286cf5ac30?ui=en-US&amp;rs=en-US&amp;ad=US&amp;fromAR=1">Cloud Hybrid Search</a>, <a href="https://social.technet.microsoft.com/wiki/contents/articles/31352.hybrid-delve-and-search-are-coming-to-sharepoint-2016-and-sharepoint-2013.aspx">Delve, Hybrid Sites</a>, <a href="https://support.office.com/en-us/article/Learn-about-Office-365-groups-b565caa1-5c40-40ef-9915-60fdb2d97fa2">Groups</a>, <a href="https://support.office.com/en-us/article/Plan-hybrid-profiles-96d1eaf0-94eb-40c5-ab76-c82907777db4">Profile Redirection</a></strong> and more running SharePoint in hybrid mode.</p>
<p><img decoding="async" class="alignnone wp-image-1041" src="http://blogit.create.pt/fabiocarvalho/wp-content/uploads/sites/271/2017/02/Capture.png" alt="" width="682" height="394" srcset="https://blogit.create.pt/wp-content/uploads/2017/02/Capture.png 682w, https://blogit.create.pt/wp-content/uploads/2017/02/Capture-300x173.png 300w" sizes="(max-width: 682px) 100vw, 682px" /></p>
<p><strong>6.</strong><a href="https://blogs.technet.microsoft.com/wbaer/2015/09/22/durable-links-in-sharepoint-server-2016-it-preview/"><strong>Durable Links</strong></a>,move files wherever you like and your link remains valid. It may seem like a small thing but to end users this is a big deal.</p>
<p><img decoding="async" class="alignnone size-full wp-image-1031" src="http://blogit.create.pt/fabiocarvalho/wp-content/uploads/sites/271/2017/02/WOPI1_thumb_21961951.png" alt="" width="640" height="353" srcset="https://blogit.create.pt/wp-content/uploads/2017/02/WOPI1_thumb_21961951.png 640w, https://blogit.create.pt/wp-content/uploads/2017/02/WOPI1_thumb_21961951-300x165.png 300w" sizes="(max-width: 640px) 100vw, 640px" /></p>
<p><strong>7.<a href="https://support.office.com/en-us/article/Plan-cloud-hybrid-search-for-SharePoint-33926857-302c-424f-ba78-03286cf5ac30">Cloud Hybrid Search</a></strong> in the cloud you can display all of your results from <strong>O365</strong> and <strong>on-prem</strong> will be listed happily together, by relevancy, and it’s all encrypted by the crawler.</p>
<p><img decoding="async" class="alignnone size-full wp-image-1032" src="http://blogit.create.pt/fabiocarvalho/wp-content/uploads/sites/271/2017/02/0b9c3308-ca8f-4721-a2f2-83b5ada1afe9.png" alt="" width="681" height="414" srcset="https://blogit.create.pt/wp-content/uploads/2017/02/0b9c3308-ca8f-4721-a2f2-83b5ada1afe9.png 681w, https://blogit.create.pt/wp-content/uploads/2017/02/0b9c3308-ca8f-4721-a2f2-83b5ada1afe9-300x182.png 300w" sizes="(max-width: 681px) 100vw, 681px" /></p>
<p>There are many other new features offered by <strong>SharePoint 2016</strong> you can read more about in this <a href="https://technet.microsoft.com/en-us/library/mt346121(v=office.16).aspx">link</a>.</p>
<p><span style="color: #800000"><strong>Which approach should I take, to upgrade or migrate?!</strong></span></p>
<table style="height: 766px" border="0" width="1060" cellspacing="0" cellpadding="2">
<tbody>
<tr>
<td valign="top" width="50"><span style="color: #800000"><strong> Version</strong></span></td>
<td valign="top" width="100"><span style="color: #800000"><strong> Upgrade Approach</strong></span></td>
<td valign="top" width="100"><span style="color: #800000"><strong> Migration Approach</strong></span></td>
</tr>
<tr>
<td style="text-align: left" valign="top" width="50"><strong>SharePoint 2001</strong></td>
<td valign="top" width="100"> Upgrade through each version of SharePoint.<br />
Requires new SharePoint<br />
Farms for each Upgrade, until the latest version is met.</td>
<td valign="top" width="100"> Manually copy or use a 3rd Party tool to migrate the core document and asset content into a new structure defined within a new SharePoint 2016 Farm.</td>
</tr>
<tr>
<td valign="top" width="50"><strong>SharePoint 2003</strong></td>
<td valign="top" width="100">Upgrade through each version of SharePoint.<br />
Requires new SharePoint Farms for each Upgrade, until the latest version is met.</td>
<td valign="top" width="100"> Manually copy or use a 3rd Party tool to migrate the core document and asset content into a new structure defined within a new SharePoint 2016.</td>
</tr>
<tr>
<td valign="top" width="50"><strong>SharePoint 2007</strong></td>
<td valign="top" width="100"> Upgrade through each version of SharePoint.<br />
Requires new SharePoint Farms for each Upgrade, until the latest version is met.<strong>Utilize Database Attach method.</strong></td>
<td valign="top" width="100"> Manually copy or use a 3rd Party tool to migrate content into a new structure defined within a new SharePoint 2016 Farm.</td>
</tr>
<tr>
<td valign="top" width="50"><strong>SharePoint 2010</strong></td>
<td valign="top" width="100"> Upgrade through each version of SharePoint.<br />
Requires new SharePoint Farms for each Upgrade, until the latest version is met.<br />
<strong>Utilize Database Attach method.</strong></td>
<td valign="top" width="100"> Manually copy or use a 3rd Party tool to migrate content into a new structure defined within a new SharePoint 2016 Farm.</td>
</tr>
<tr>
<td valign="top" width="50"><strong>SharePoint 2013</strong></td>
<td valign="top" width="100">Upgrade through each version of SharePoint.<br />
Requires new SharePoint Farms for each Upgrade, until the latest version is met.</td>
<td valign="top" width="100"> Manually copy or use a 3rd Party tool to migrate the core document and asset content into a new structure defined within a new SharePoint 2016 Farm.</td>
</tr>
</tbody>
</table>
<p>&nbsp;</p>
<p><strong><span style="color: #800000">What questions should I ask before upgrading or migrating?</span></strong></p>
<p>It&#8217;s important understand what is the main processes and data that you what migrate for your new version of SharePoint, this will be essential to define the process and success of the operation. Ask questions about the current solution and success criteria you can define the scope of the migration or upgrade, this type of process not is fast but is really importance is be precision.</p>
<p><span style="color: #800000"><strong>Are you now ready to migrate or upgrade?</strong></span></p>
<p>The  success of  migration or upgrade is <strong>planning</strong>, then some more planning, and organizational buy in. Moving to SharePoint 2016 will<strong> deliver better security</strong>, <strong>collaboration, content management, mobility, compliance and cloud connectivity features</strong>. But the migration or upgrade warrants a much more care and attention to detail in <strong>planning,</strong> you need to lay out every step needed to get there and  engage all the stakeholders in your organization in all aspects of the selected process.</p>
<h6 class="title"><a href="https://technet.microsoft.com/en-us/library/mt346121(v=office.16).aspx">New and improved features in SharePoint Server 2016</a></h6>
<h6 class="title"><a href="https://technet.microsoft.com/en-us/library/cc263026(v=office.16)">Create the SharePoint Server 2016 farm for a database attach upgrade</a></h6>
<p>&nbsp;</p>
<p>Thanks</p>
<p><strong>Fábio Carvalho</strong><br />
SharePoint Consultant<br />
<strong>|create|</strong><span style="color: #ff0000"><strong>it</strong></span><strong>|</strong></p>
<p>The post <a href="https://blogit.create.pt/fabiocarvalho/2017/02/11/sharepoint-2016-essential-migration-steps-and-considerations/">SharePoint 2016 &#8211; Essential Migration Steps and Considerations</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blogit.create.pt/fabiocarvalho/2017/02/11/sharepoint-2016-essential-migration-steps-and-considerations/feed/</wfw:commentRss>
			<slash:comments>5</slash:comments>
		
		
			</item>
	</channel>
</rss>
