<?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>Migration Archives - Blog IT</title>
	<atom:link href="https://blogit.create.pt/category/migration/feed/" rel="self" type="application/rss+xml" />
	<link>https://blogit.create.pt/category/migration/</link>
	<description>Create IT blogger community</description>
	<lastBuildDate>Fri, 12 Jul 2024 08:55:55 +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>How to configure HTTPS with HTTP redirect in SharePoint 2019 using Host Named Site Collections</title>
		<link>https://blogit.create.pt/miguelisidoro/2021/08/11/how-to-configure-https-with-http-redirect-in-sharepoint-2019-using-host-named-site-collections/</link>
					<comments>https://blogit.create.pt/miguelisidoro/2021/08/11/how-to-configure-https-with-http-redirect-in-sharepoint-2019-using-host-named-site-collections/#respond</comments>
		
		<dc:creator><![CDATA[Miguel Isidoro]]></dc:creator>
		<pubDate>Tue, 10 Aug 2021 23:48:37 +0000</pubDate>
				<category><![CDATA[SharePoint 2019]]></category>
		<category><![CDATA[Migration]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[#https]]></category>
		<category><![CDATA[#migration]]></category>
		<category><![CDATA[#security]]></category>
		<category><![CDATA[#sharepoint2019]]></category>
		<category><![CDATA[#ssl]]></category>
		<guid isPermaLink="false">https://blogit.create.pt/?p=12345</guid>

					<description><![CDATA[<p>This post explains how you can configure a web application holding host named site collections to use HTTPS and automatically redirect HTTP redirects to HTTPS in a SharePoint 2019 farm. This post will focus on HTTPS configuration on SharePoint site, IIS bindings, Alternate Access Mappings, Search and how you can automatically redirect pages from HTTP [&#8230;]</p>
<p>The post <a href="https://blogit.create.pt/miguelisidoro/2021/08/11/how-to-configure-https-with-http-redirect-in-sharepoint-2019-using-host-named-site-collections/">How to configure HTTPS with HTTP redirect in SharePoint 2019 using Host Named Site Collections</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>This post explains how you can configure a web application holding host named site collections to use HTTPS and automatically redirect HTTP redirects to HTTPS in a SharePoint 2019 farm. This post will focus on HTTPS configuration on SharePoint site, IIS bindings, Alternate Access Mappings, Search and how you can automatically redirect pages from HTTP to HTTPS.</p>



<h2 class="wp-block-heading"><span class="td_text_columns_two_cols">Introduction</span></h2>



<p>I am currently involved in a SharePoint 2013 to SharePoint 2019 migration of a public website solution using SharePoint 2013. Despite WCM features in SharePoint have not evolved since SharePoint 2013, the option was to upgrade to SharePoint 2019 and take advantage of existing developments.</p>



<p>The solution uses Host Named Site Collections as the basis for a multi portal platform that can be used to create multiple public sites with the same platform, making it easy to create multiple portals with little development effort.</p>



<p>This post explains the configurations necessary to configure a Host Named Site Collection using HTTPS and how to automatically redirect HTTP requests to HTTPS.</p>



<p>To learn more on Host Named Site Collections, you can read the <a href="https://docs.microsoft.com/en-us/SharePoint/administration/host-named-site-collection-architecture-and-deployment?redirectedfrom=MSDN#section6" target="_blank" rel="noreferrer noopener">Microsoft official documentation</a> or read a <a href="https://levinwayne.wordpress.com/2012/06/01/what-every-sharepoint-admin-needs-to-know-about-host-named-site-collections/" target="_blank" rel="noreferrer noopener">fantastic blog post</a> about the topic.</p>



<p>In my case, I will assume the existence of a web application that acts as the container for the site collections. To simplify, lets assume the following configuration (web application and site collection were created using HTTP first).</p>



<ul class="wp-block-list"><li>Web application URL (Default Zone): http://webapp.smartportals.pt, configured for anonymous access. This address will never be used by end users. This is the web application URL that was given to the web application when it was created. In this zone, we will automatically redirect HTTP to HTTPS in every page.</li><li>Web application URL (Intranet Zone): http://auth.smartportals.pt, configured for Windows Integrated access only. This zone will be used as an authoring environment for content managers. However, this address will never be used by end users. This web application URL was created using a web application extension into the Intranet zone, which created a new IIS site for the same web application but to be used with different authentication settings. In this zone, we will also automatically redirect HTTP to HTTPS in every page.</li><li>Web application URL (Internet Zone): http://search.smartportals.pt, configured for Windows Integrated access and anonymous access. This zone will be used only for search. This address will never be used by end users. This web application URL was created using a web application extension into the Internet zone. In this zone, <strong>we will NOT </strong>automatically redirect HTTP to HTTPS in every page since this will cause search issues when crawling the site collection (http://dev.site.pt) contents.</li><li>Site collection URL (Default Zone): http://dev.site.pt, configured for anonymous access. This address will be used by end users to access the public website. The site collection was created a PowerShell script. To learn more on how to create a Host Named Site Collection, please read the <a href="https://docs.microsoft.com/en-us/sharepoint/administration/host-named-site-collection-architecture-and-deployment" target="_blank" rel="noreferrer noopener">Microsoft official documentation</a>.</li><li>Site collection URL (Intranet Zone): http://auth.site.pt, configured for Windows Integrated authentication. This address will be used by BackOffice users to manage content of the website.</li></ul>



<h2 class="wp-block-heading">How-To Steps</h2>



<p>When configuring SSL in a SharePoint 2019 farm with Host Named Site Collections, the following topics are the most relevant:</p>



<ul class="wp-block-list"><li>Install SSL certificates</li><li>Configure Search</li><li>Configure IIS bindings</li><li>Configure Alternate Access Mappings</li><li>Configure Anonymous Access for Public Web Site</li><li>Configure Site Collection URLs</li><li>Configure Web Application Authentication Providers</li><li>Configure HTTP to HTTPS Automatic Redirect</li></ul>



<h2 class="wp-block-heading">Install SSL certificates</h2>



<p>The SSL certificate must be a wildcard certificate for the same domain as the public address of the web site. I will not focus on this topic in the post since it is very well explained over the Internet. The SSL certificates will have to be installed in every SharePoint Frontend server. To learn more on this topic, please visit <a href="https://www.digicert.com/kb/ssl-certificate-installation-microsoft-sharepoint-2013.htm" target="_blank" rel="noreferrer noopener">this blog post</a>. In our case, we used a wildcard certificate issued by a known certificate authority.</p>



<h2 class="wp-block-heading">Configure Search</h2>



<p>As you remember, both in the Default and Intranet zones, we have automatic redirection between HTTP and HTTPS. The way we configured this redirect will be explained later in the post. In order for the Search Service Application to successfully crawl the site collection (http://dev.site.pt, at this point still in HTTP) contents successfully, we must set as the Search Content Source the Web Application URL for the Internet zone (http://search.smartportals.pt). The IIS site in the Internet zone <strong>WILL NOT</strong> have any automatic redirection between HTTP and HTTPS (only the IIS sites associated with the public website and the Authoring URLs will). For crawling purposes, the web application in this zone can use the HTTP protocol since, once again, the web application URL acts as a container and will never be accessed directly by end users. While crawling, the HTTPS address of the site collection (https://dev.site.pt) will be crawled successfully since it will later be the site collection URL associated with the Default zone of the web application. The reason, once again for this, is that in the Internet zone there is no HTTP to HTTPS automatic redirection in the IIS site associated with the URL used as a Content Source URL: http://search.smartportals.pt.</p>



<p>In our case, we created two content sources, one for the website and left the default Content Source with the remaining start addresses, used mainly to crawl user profiles.</p>



<figure class="wp-block-image size-full is-style-default"><img fetchpriority="high" decoding="async" width="829" height="256" src="https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_Search_Content_Sources.jpg" alt="" class="wp-image-12430" srcset="https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_Search_Content_Sources.jpg 829w, https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_Search_Content_Sources-300x93.jpg 300w, https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_Search_Content_Sources-768x237.jpg 768w, https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_Search_Content_Sources-696x215.jpg 696w" sizes="(max-width: 829px) 100vw, 829px" /><figcaption>Search content sources</figcaption></figure>



<figure class="wp-block-image size-full is-resized is-style-default"><img decoding="async" src="https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_Search_Content_Source_Site.jpg" alt="" class="wp-image-12431" width="728" height="375" srcset="https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_Search_Content_Source_Site.jpg 728w, https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_Search_Content_Source_Site-300x155.jpg 300w, https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_Search_Content_Source_Site-696x359.jpg 696w" sizes="(max-width: 728px) 100vw, 728px" /><figcaption> Search content source (Site)</figcaption></figure>



<h2 class="wp-block-heading">Configure IIS bindings</h2>



<p>In each frontend server, you will have to have two different IP Addresses. This is necessary since we need two IIS sites accepting wildcard certificates and the only way we can achieve this is having two different IP Addresses in the server, and have the bindings in the  Public and Authoring IIS web sites to use different IP Addresses. These two IIS sites (Default and Intranet zones) will have automatic redirect between HTTP and HTTPS and will have both the HTTP and HTTPS bindings. We decided to stay with the default ports, even for the Public and Authoring web sites for simplicity.</p>



<p>Default zone (Public website, anonymous access):</p>



<figure class="wp-block-image size-full is-resized"><img decoding="async" src="https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_IIS_Bindings_FrontEnd.jpg" alt="" class="wp-image-12433" width="428" height="192" srcset="https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_IIS_Bindings_FrontEnd.jpg 428w, https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_IIS_Bindings_FrontEnd-300x135.jpg 300w" sizes="(max-width: 428px) 100vw, 428px" /><figcaption>IIS Bindings (Public Site, Default Zone)</figcaption></figure>



<p>Intranet zone (Authoring website, Integrated Windows Authentication): </p>



<figure class="wp-block-image size-full is-resized"><img decoding="async" src="https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_IIS_Bindings_BackEnd.jpg" alt="" class="wp-image-12434" width="410" height="199" srcset="https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_IIS_Bindings_BackEnd.jpg 410w, https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_IIS_Bindings_BackEnd-300x146.jpg 300w" sizes="(max-width: 410px) 100vw, 410px" /><figcaption>IIS Bindings (Authoring Site, Intranet Zone)</figcaption></figure>



<p>Search zone (Search IIS site, Integrated Windows Authentication and Anonymous Access):</p>



<figure class="wp-block-image size-full"><img decoding="async" width="452" height="140" src="https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_IIS_Bindings_Search-2.jpg" alt="" class="wp-image-12450" srcset="https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_IIS_Bindings_Search-2.jpg 452w, https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_IIS_Bindings_Search-2-300x93.jpg 300w" sizes="(max-width: 452px) 100vw, 452px" /><figcaption> IIS Bindings (Search Site, Internet Zone) </figcaption></figure>



<h2 class="wp-block-heading">Configure Alternate Access Mappings</h2>



<p>Alternate Access Mappings are an essencial part on any web application configuration and will play a very important role in our configuration. Each web application can have up to 5 different Public URLs that can be used to have users access the same web application using different addresses and potentially different authentication providers (Default, Intranet, Internet, Extranet and Custom). To learn more about Alternate Access Mappings, read the <a href="https://docs.microsoft.com/en-us/sharepoint/administration/configure-alternate-access-mappings" target="_blank" rel="noreferrer noopener">official Microsoft documentation</a>.</p>



<p><strong>Important Notes:</strong></p>



<ul class="wp-block-list"><li>Search IIS site address must be the default zone URL. To read more about the advantages of doing this, read the <a href="https://docs.microsoft.com/en-us/sharepoint/search/best-practices-for-crawling" target="_blank" rel="noreferrer noopener">Official Microsoft documentation</a>. With Host Named Site Collections, the Site Collection that we want to crawl must also be configured for the Default zone so that the search results will always return results starting with that URL (in our case https://dev.site.pt)</li><li><span style="color: initial">The HTTPS web application URL set in the Authoring IIS site must be set to the Intranet zone since we will configure the Authentication provider in this zone for Windows Integrated Authentication only to ensure that only authenticated users can access this address.</span></li><li>The HTTPS web application URL set in the Public IIS site must be to the Internet zone since this is the zone where we will configure the authentication provider with Windows Integrated Authentication and anonymous access so that users can access the site collection URL (in our case https://dev.site.pt).</li><li><span style="color: initial">The remainder zones are for the HTTP addresses of the Public and Authoring IIS sites</span></li></ul>



<figure class="wp-block-image size-full is-resized"><img decoding="async" src="https://blogit.create.pt/wp-content/uploads/2021/12/SP2019_SSL_AlternateAccessMappings.jpg" alt="" class="wp-image-12581" width="730" height="359" srcset="https://blogit.create.pt/wp-content/uploads/2021/12/SP2019_SSL_AlternateAccessMappings.jpg 973w, https://blogit.create.pt/wp-content/uploads/2021/12/SP2019_SSL_AlternateAccessMappings-300x148.jpg 300w, https://blogit.create.pt/wp-content/uploads/2021/12/SP2019_SSL_AlternateAccessMappings-768x378.jpg 768w, https://blogit.create.pt/wp-content/uploads/2021/12/SP2019_SSL_AlternateAccessMappings-696x343.jpg 696w, https://blogit.create.pt/wp-content/uploads/2021/12/SP2019_SSL_AlternateAccessMappings-853x420.jpg 853w, https://blogit.create.pt/wp-content/uploads/2021/12/SP2019_SSL_AlternateAccessMappings-324x160.jpg 324w, https://blogit.create.pt/wp-content/uploads/2021/12/SP2019_SSL_AlternateAccessMappings-533x261.jpg 533w" sizes="(max-width: 730px) 100vw, 730px" /></figure>



<h2 class="wp-block-heading">Configure Anonymous Access for Public Web Site</h2>



<p>To complete the configuration of anonymous access, you have to go to SharePoint permissions page (using the public address but as an authenticated user) and set anonymous access.</p>



<figure class="wp-block-image size-full"><img decoding="async" width="385" height="284" src="https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_Enable_AnonymousAccess.jpg" alt="" class="wp-image-12442" srcset="https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_Enable_AnonymousAccess.jpg 385w, https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_Enable_AnonymousAccess-300x221.jpg 300w, https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_Enable_AnonymousAccess-80x60.jpg 80w" sizes="(max-width: 385px) 100vw, 385px" /><figcaption>Enable Anonymous Access for Site Collection</figcaption></figure>



<p>After anonymous access has been enabled, you have something like the below image in your Site Collection permissions.</p>



<figure class="wp-block-image size-full is-resized"><img decoding="async" src="https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_AnonymousAccess_EntireSite-1.jpg" alt="" class="wp-image-12505" width="809" height="512" srcset="https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_AnonymousAccess_EntireSite-1.jpg 809w, https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_AnonymousAccess_EntireSite-1-300x190.jpg 300w, https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_AnonymousAccess_EntireSite-1-768x486.jpg 768w, https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_AnonymousAccess_EntireSite-1-696x440.jpg 696w, https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_AnonymousAccess_EntireSite-1-664x420.jpg 664w" sizes="(max-width: 809px) 100vw, 809px" /><figcaption>Anonymous Access for Site Collection</figcaption></figure>



<h2 class="wp-block-heading">Configure Site Collection URLs</h2>



<p>In this section, we will configure the different site collection URLs for the relevant zones configured in the Alternate Access Mappings in the previous section.</p>



<p>To do this, we must use rename the http://dev.site.pt to https://dev.site.pt (Default zone) using old STSADM.</p>



<pre class="wp-block-code"><code>stsadm -o renamesite -oldurl http://dev.site.pt -newurl https://dev.site.pt</code></pre>



<p>After that, we can set the remain zones URLs using SP-SiteURL PowerShell cmdlet as follows:</p>



<pre class="wp-block-code"><code>Set-SPSiteUrl (Get-SPSite 'https://dev.site.pt') -Url 'https://auth.dev.site.pt' -Zone Intranet
Set-SPSiteUrl (Get-SPSite 'https://dev.site.pt') -Url 'http://dev.site.pt' -Zone Internet
Set-SPSiteUrl (Get-SPSite 'https://dev.site.pt') -Url 'http://auth.dev.site.pt' -Zone Extranet</code></pre>



<p>If you need to remove any Site Collection URL, you can set use the Remove-SPSiteURL as follows:</p>



<pre class="wp-block-code"><code>Remove-SPSiteURL -Url http://auth.dev.site.pt</code></pre>



<p>After running the commands, we will have our HTTPS Public web site address (the one we want for Search) in the Default zone and the remaining zones set to allow the Public site web site access (HTTP and HTTPS) to be anonymous and the Authoring address to require Windows Integrated Authentication.</p>



<figure class="wp-block-image size-full"><img decoding="async" width="447" height="121" src="https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_SiteCollection_URLs_Zones.jpg" alt="" class="wp-image-12447" srcset="https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_SiteCollection_URLs_Zones.jpg 447w, https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_SiteCollection_URLs_Zones-300x81.jpg 300w" sizes="(max-width: 447px) 100vw, 447px" /></figure>



<h2 class="wp-block-heading">Configure Web Application Authentication Providers</h2>



<p>Authentication Providers are associated with the security zones of the web application (Default, Intranet, Internet, Extranet and Custom). To learn more about Authentication Providers, please read the <a href="https://docs.microsoft.com/en-us/sharepoint/security-for-sharepoint-server/plan-user-authentication" target="_blank" rel="noreferrer noopener">Microsoft official documentation</a>.</p>



<p>For the Default and Internet zones, we set anonymous access and Windows Integrated Authentication. Default zone will allow temporarily Windows Integrated Authentication so that we can properly set Anonymous Access in the Site Collection (already explained above). The Windows Integrated Authentication setting should be removed in the end to prevent authenticated users to try accessing the Public web site as authenticated users. Internet zone must also include Windows Integrated Authentication so that the Search can properly crawl the Site Collection contents.</p>



<figure class="wp-block-image size-full"><img decoding="async" width="631" height="477" src="https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_Authentication_Provider_Default_Zone.jpg" alt="" class="wp-image-12438" srcset="https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_Authentication_Provider_Default_Zone.jpg 631w, https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_Authentication_Provider_Default_Zone-300x227.jpg 300w, https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_Authentication_Provider_Default_Zone-556x420.jpg 556w, https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_Authentication_Provider_Default_Zone-80x60.jpg 80w" sizes="(max-width: 631px) 100vw, 631px" /><figcaption>Authentication Provider (Default and Internet Zones)</figcaption></figure>



<figure class="wp-block-image size-full"><img decoding="async" width="631" height="477" src="https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_Authentication_Provider_Intranet_Zone.jpg" alt="" class="wp-image-12440" srcset="https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_Authentication_Provider_Intranet_Zone.jpg 631w, https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_Authentication_Provider_Intranet_Zone-300x227.jpg 300w, https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_Authentication_Provider_Intranet_Zone-556x420.jpg 556w, https://blogit.create.pt/wp-content/uploads/2021/08/SP2019_SSL_Authentication_Provider_Intranet_Zone-80x60.jpg 80w" sizes="(max-width: 631px) 100vw, 631px" /><figcaption> Authentication Provider (Intranet Zone)</figcaption></figure>



<h2 class="wp-block-heading">Configure HTTP to HTTPS Automatic Redirect</h2>



<p>Since this is a migration from a SharePoint 2013 site using HTTP to a SharePoint 2019 using HTTPS we want to ensure if we have HTTP links in any page of the website and while Google is indexing the new site after migration is complete, that HTTP requests will be automatically redirected to HTTPS.</p>



<p>To achieve this, we installed on each of the SharePoint Frontend Servers, the <a href="https://www.iis.net/downloads/microsoft/url-rewrite" target="_blank" rel="noreferrer noopener">IIS URL Rewrite module</a>.</p>



<p>After installed, we must add the following XML configuration on the web.config on the IIS sites associated with the Default and Intranet zones (Public and Authoring web sites).</p>



<pre class="wp-block-code"><code>    &lt;staticContent&gt;
      &lt;remove fileExtension=".dll" /&gt;
      &lt;remove fileExtension=".exe" /&gt;
    &lt;/staticContent&gt;
    <strong>&lt;rewrite&gt;
      &lt;rules&gt;
        &lt;rule name="Redirect to HTTPS" enabled="true" patternSyntax="Wildcard" stopProcessing="true"&gt;
          &lt;match url="*" negate="false" /&gt;
          &lt;conditions logicalGrouping="MatchAny"&gt;
            &lt;add input="{HTTPS}" pattern="off" /&gt;
          &lt;/conditions&gt;
          &lt;action type="Redirect" url="https://{HTTP_HOST}{REQUEST_URI}" redirectType="Found" /&gt;
        &lt;/rule&gt;
      &lt;/rules&gt;
    &lt;/rewrite&gt;</strong>
 &lt;/system.webServer&gt;</code></pre>



<p>And that&#8217;s it! Hope that this can help anyone that needs to do something similar! Any feedback and suggestions to improve to the configuration we used is welcome!</p>



<p></p>



<h2 class="wp-block-heading">Related Articles</h2>



<p>To learn why your business should migrate to SharePoint Online and Office 365, click <a rel="noreferrer noopener" href="https://blogit.create.pt////miguelisidoro/2019/07/29/why-your-business-should-migrate-to-sharepoint-online-and-office-365-the-value-offer-part-1/" target="_blank">here</a> and <a rel="noreferrer noopener" href="https://blogit.create.pt////miguelisidoro/2019/07/29/why-your-business-should-migrate-to-sharepoint-online-and-office-365-the-value-offer-part-2/" target="_blank">here</a>.</p>



<p>If you want to learn how you can rename a modern SharePoint site, click <a rel="noreferrer noopener" href="https://blogit.create.pt////miguelisidoro/2019/09/23/how-to-rename-a-modern-sharepoint-site-url-in-office-365/" target="_blank">here</a>.</p>



<p>If you want to learn how to save time time scheduling your meetings, click <a aria-label="undefined (opens in a new tab)" href="https://blogit.create.pt////miguelisidoro/2020/04/12/save-time-scheduling-microsoft-teams-meetings-using-findtime/" target="_blank" rel="noreferrer noopener">here</a>.</p>



<p>If you want to learn how to enable Microsoft Teams Attendance List Download, click <a aria-label="undefined (opens in a new tab)" href="https://blogit.create.pt////miguelisidoro/2020/09/20/how-to-enable-teams-meeting-attendance-list-download-in-microsoft-365/" target="_blank" rel="noreferrer noopener">here</a>.</p>



<p>If you want to learn how to create a dynamic org-wide team in Microsoft Teams with all active employees, click <a href="https://blogit.create.pt/miguelisidoro/2020/09/21/how-to-create-a-dynamic-team-in-microsoft-teams-with-all-active-employees-in-microsoft-365/" target="_blank" rel="noreferrer noopener">here</a>.</p>



<p>If you want to modernize your SharePoint classic root site to a modern SharePoint site, click <a rel="noreferrer noopener" href="https://blogit.create.pt////miguelisidoro/2019/08/27/how-to-modernize-your-tenant-root-site-collection-in-office-365-using-invoke-spositeswap/" target="_blank">here</a>.</p>



<p>If you are a SharePoint administrator or a SharePoint developer who wants to learn more about how to install a SharePoint 2019 farm in an automated way using PowerShell, I invite you to click <a rel="noreferrer noopener" href="https://blogit.create.pt////miguelisidoro/2018/12/09/how-to-install-a-sharepoint-2019-farm-using-powershell-and-autospinstaller-part-1/" target="_blank">here</a> and <a rel="noreferrer noopener" href="https://blogit.create.pt////miguelisidoro/2018/12/09/how-to-install-a-sharepoint-2019-farm-using-powershell-and-autospinstaller-part-2/" target="_blank">here</a>.</p>



<p>If you learn how to greatly speed up your SharePoint farm update process to ensure your SharePoint farm keeps updated and you stay one step closer to start your move to the cloud, click&nbsp;<a rel="noreferrer noopener" href="https://blogit.create.pt////miguelisidoro/2019/05/02/how-to-speed-up-the-installation-of-sharepoint-cumulative-updates-using-powershell-step-by-step/" target="_blank">here</a>.</p>



<p>If you prefer to use the traditional method to update your farm and want to learn all the steps and precautions necessary to successfully keep your SharePoint farm updated, click <a rel="noreferrer noopener" href="https://blogit.create.pt////miguelisidoro/2019/04/08/how-to-install-sharepoint-cumulative-updates-in-a-sharepoint-farm-step-by-step/" target="_blank">here</a>.</p>



<p>If you want to learn how to upgrade a SharePoint 2013 farm to SharePoint 2019, click <a rel="noreferrer noopener" href="https://blogit.create.pt////miguelisidoro/2019/03/06/how-to-upgrade-from-sharepoint-2013-to-sharepoint-2019-step-by-step-part-1/" target="_blank">here </a>and <a rel="noreferrer noopener" href="https://blogit.create.pt////miguelisidoro/2019/03/06/how-to-upgrade-from-sharepoint-2013-to-sharepoint-2019-step-by-step-part-2/" target="_blank">here</a>.</p>



<p>If SharePoint 2019 is still not an option, you can learn more about how to install a SharePoint 2016 farm in an automated way using PowerShell, click <a rel="noreferrer noopener" href="https://blogit.create.pt////miguelisidoro/2018/07/28/how-to-install-a-sharepoint-2016-farm-using-powershell-and-autospinstaller-part-1/" target="_blank">here</a>&nbsp;and&nbsp;<a rel="noreferrer noopener" href="https://blogit.create.pt////miguelisidoro/2018/07/28/how-to-install-a-sharepoint-2016-farm-using-powershell-and-autospinstaller-part-2/" target="_blank">here</a>.</p>



<p>If you want to learn how to upgrade a SharePoint 2010 farm to SharePoint 2016, click <a rel="noreferrer noopener" href="https://blogit.create.pt////miguelisidoro/2019/02/04/sharepoint-upgrade-upgrading-a-sharepoint-2010-farm-to-sharepoint-2016-step-by-step-part-1/" target="_blank">here </a>and <a rel="noreferrer noopener" href="https://blogit.create.pt////miguelisidoro/2019/02/04/sharepoint-upgrade-upgrading-a-sharepoint-2010-farm-to-sharepoint-2016-step-by-step-part-2/" target="_blank">here</a>.</p>



<p>If you are new to SharePoint and Office 365 and want to learn all about it, take a look at these <a rel="noreferrer noopener" href="https://blogit.create.pt////miguelisidoro/2018/10/17/sharepoint-and-office-365-learning-resources/" target="_blank">learning resources</a>.</p>



<p>If you are work in a large organization who is using Office 365 or thinking to move to Office 365 and is considering between a single or multiple Office 365 tenants, I invite you to read <a rel="noreferrer noopener" href="https://blogit.create.pt////miguelisidoro/2019/01/07/pros-and-cons-of-single-tenant-vs-multiple-tenants-in-office-365/" target="_blank">this article</a>.</p>



<p>If you want to know all about the latest SharePoint and Office 365 announcements from Ignite and some more recent announcements, including Microsoft Search, What’s New to Build a Modern Intranet with SharePoint in Office 365, Deeper Integration between Microsoft Teams and SharePoint and the latest news on SharePoint development, click <a rel="noreferrer noopener" href="https://blogit.create.pt////miguelisidoro/2018/11/21/whats-new-for-sharepoint-and-office-365-after-microsoft-ignite-2018/" target="_blank">here</a>.</p>



<p>If your organization is still not ready to go all in to SharePoint Online and Office 365, a hybrid scenario may be the best choice. SharePoint 2019 RTM was recently announced and if you to learn all about SharePoint 2019 and all its features, click <a rel="noreferrer noopener" href="https://blogit.create.pt////miguelisidoro/2018/11/01/meet-the-new-modern-sharepoint-server-sharepoint-2019-rtm-is-here/" target="_blank">here</a>.</p>



<p>Happy SharePointing!</p>
<p>The post <a href="https://blogit.create.pt/miguelisidoro/2021/08/11/how-to-configure-https-with-http-redirect-in-sharepoint-2019-using-host-named-site-collections/">How to configure HTTPS with HTTP redirect in SharePoint 2019 using Host Named Site Collections</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blogit.create.pt/miguelisidoro/2021/08/11/how-to-configure-https-with-http-redirect-in-sharepoint-2019-using-host-named-site-collections/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Why You Should Migrate To Microsoft 365 (Part 2)</title>
		<link>https://blogit.create.pt/miguelisidoro/2019/07/29/why-your-business-should-migrate-to-sharepoint-online-and-office-365-the-value-offer-part-2/</link>
					<comments>https://blogit.create.pt/miguelisidoro/2019/07/29/why-your-business-should-migrate-to-sharepoint-online-and-office-365-the-value-offer-part-2/#comments</comments>
		
		<dc:creator><![CDATA[Miguel Isidoro]]></dc:creator>
		<pubDate>Sun, 28 Jul 2019 23:58:10 +0000</pubDate>
				<category><![CDATA[Microsoft 365]]></category>
		<category><![CDATA[Migration]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Collaboration]]></category>
		<category><![CDATA[Modern Workplace]]></category>
		<category><![CDATA[Office 365]]></category>
		<category><![CDATA[SharePoint 2019]]></category>
		<category><![CDATA[SharePoint Online]]></category>
		<guid isPermaLink="false">https://blogit.create.pt/?p=11056</guid>

					<description><![CDATA[<p>Is your business evaluating if it should move to the Cloud and migrate to Microsoft 365? Then you came to the right place! This post series will show you some of the top reasons to move to the Cloud and Microsoft 365. Introduction This two part blog post is the first part of a blog [&#8230;]</p>
<p>The post <a href="https://blogit.create.pt/miguelisidoro/2019/07/29/why-your-business-should-migrate-to-sharepoint-online-and-office-365-the-value-offer-part-2/">Why You Should Migrate To Microsoft 365 (Part 2)</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>Is your business evaluating if it should move to the Cloud and migrate to Microsoft 365? Then you came to the right place! This post series will show you some of the top reasons to move to the Cloud and Microsoft 365.</p>



<h2 class="wp-block-heading">Introduction</h2>



<p>This two part blog post is the first part of a blog post series that will try to give you an idea of the advantages of moving to the Cloud and the benefits of adopting Microsoft 365 as a collaboration platform.</p>



<p>We live in a world that is rapidly moving towards Software as a Service (SaaS) solutions in several areas from collaboration, E-Commerce and many other areas, are moving from a reality where systems and respective data are deployed within the companies infrastructure (On-Premises) to the Cloud.</p>



<p>The goal of this two part blog posts is to give you an overview of the main features included in Microsoft 365 and how your organization can take advantage of them if you migrate to Microsoft 365.</p>



<p>In the first part of this post, I already discussed the following topics:</p>



<ul class="wp-block-list"><li>Microsoft 365</li><li>Collaboration with SharePoint and OneDrive</li><li>Mobility</li><li>Use Microsoft Teams as your Work Hub</li><li>Easy and Secure External Sharing</li></ul>



<p>To read the first part of this post, click <a rel="noreferrer noopener" href="https://blogit.create.pt////miguelisidoro/2019/07/29/why-your-business-should-migrate-to-sharepoint-online-and-office-365-the-value-offer-part-1/" target="_blank">here</a>.</p>



<p>These are the main topics I will discuss in the second part of this two part blog post:</p>



<ul class="wp-block-list"><li>Security and Reliability</li><li>Business Applications Development</li><li>Insights</li><li>Migration Options</li><li>Hybrid Scenarios</li><li>Other Benefits</li></ul>



<h2 class="wp-block-heading">Security and Reliability</h2>



<p>In the <a href="https://blogit.create.pt////miguelisidoro/2019/07/29/why-your-business-should-migrate-to-sharepoint-online-and-office-365-the-value-offer-part-1/" target="_blank" rel="noreferrer noopener" aria-label="first part (opens in a new tab)">first part</a> of this blog post, I already talked a little bit about Microsoft 365 which includes Windows 10, Office 365 and Enterprise Mobility + Security.</p>



<p>One of the main concerns of companies in choosing a Cloud collaboration platform, in which the Microsoft 365 is an example and leading platform, is the security of their information. One of the biggest challenges when organizations are deciding if they want migrate to Microsoft 365 is related to the demystification that having the information in the Cloud is less secure than if it resides on the premises of the organizations themselves.</p>



<p>To address these same concerns, Microsoft has made a very strong investment in security which provides users and system administrators with several features to address these needs and apply a set of best practices in four main areas:</p>



<ul class="wp-block-list"><li>Security</li><li>Privacy</li><li>Compliance</li><li>Transparency</li></ul>



<p>In addition to security, <strong>Reliability </strong>is another major benefit of a Cloud solution (Microsoft 365 has a average 99,98% availability) and organizations don&#8217;t need to worry about maintaining their own infrastructure.</p>



<p>Below, are some of the main security features natively offered by the platform.</p>



<figure class="wp-block-image"><img decoding="async" width="1024" height="431" src="https://blogit.create.pt////wp-content/uploads/2019/07/Security_Reliabilty-1024x431.png" alt="" class="wp-image-10723" srcset="https://blogit.create.pt/wp-content/uploads/2019/07/Security_Reliabilty-1024x431.png 1024w, https://blogit.create.pt/wp-content/uploads/2019/07/Security_Reliabilty-300x126.png 300w, https://blogit.create.pt/wp-content/uploads/2019/07/Security_Reliabilty-768x323.png 768w, https://blogit.create.pt/wp-content/uploads/2019/07/Security_Reliabilty-696x293.png 696w, https://blogit.create.pt/wp-content/uploads/2019/07/Security_Reliabilty-1068x449.png 1068w, https://blogit.create.pt/wp-content/uploads/2019/07/Security_Reliabilty-999x420.png 999w, https://blogit.create.pt/wp-content/uploads/2019/07/Security_Reliabilty.png 1289w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<h3 class="wp-block-heading">Security</h3>



<p>Regarding <strong>Security</strong>, Microsoft 365 ensures the encryption of data in transit and at rest. At rest, <em>Bitlocker</em> technology is used to encrypt all information on the servers’ hard drives. In addition, all files are segmented (in small pieces called chunks) and each segment is individually encrypted and encryption keys are securely stored in a different physical location.<br>In transit, all files are encrypted with TLS using 2048-bit keys.</p>



<h3 class="wp-block-heading">Privacy</h3>



<p>Regarding <strong>Privacy</strong>, it is possible to define differentiated access policies based on 4 vectors: user, device, location and sensitivity of the information. Some examples include:</p>



<ul class="wp-block-list"><li>Set a time bound window for external sharing or only allow sharing with certain domains</li><li>Block access from insecure locations (example: open Wi-Fi networks)</li><li>Enforce multi-factor authentication (ex: supply a PIN sent to a mobile device). You can enforce multi-factor authentication for all users, for a restricted set of users or based on conditions like the device being used or the access location (example: open Wi-Fi networks)</li></ul>



<h3 class="wp-block-heading">Compliance</h3>



<p>In what regards to<strong> Compliance</strong>, the main concern is to define a set of rules that allow sensitive information to be protected and to prevent the leakage of sensitive information outside of the organization. These are some of the features Microsoft 365 includes to address this need:</p>



<ul class="wp-block-list"><li><strong>Data Loss Prevention</strong>: Allows organizations to create policies to protect their most sensitive information. Example: prevent documents with credit card information or citizen card numbers from being shared outside the organization. To read more about Data Loss Prevention, click <a rel="noreferrer noopener" aria-label=" (opens in a new tab)" href="https://docs.microsoft.com/en-us/office365/securitycompliance/data-loss-prevention-policies" target="_blank">here</a>.</li><li><strong>Microsoft 365 Unified Labeling</strong>: Allows organizations to create policies that protect the content of documents stored in the Microsoft 365 platform (mainly SharePoint, OneDrive and Exchange). Protection is based on the Azure Rights Management service and allows for administrators to configure sensitivity labels that can be applied to emails and documents to protect sensitive information. Labels can be applied automatically to all documents in a SharePoint document library, based on specific content types or based on the contents of the document (ex: documents containing credit card numbers). For protected documents, you can restrict access to a restricted set of users, enable encryption and apply a variety of document level protection such as:<ul><li>Block copy and paste of email or document information</li><li>Block Print Screen of a document</li><li>Block document printing</li><li>Block email actions like Forward or Reply</li><li>etc</li></ul></li></ul>



<div class="wp-block-image"><figure class="aligncenter"><img decoding="async" width="777" height="833" src="https://blogit.create.pt////wp-content/uploads/2019/07/Security_UnifiedLabeling.png" alt="" class="wp-image-10765" srcset="https://blogit.create.pt/wp-content/uploads/2019/07/Security_UnifiedLabeling.png 777w, https://blogit.create.pt/wp-content/uploads/2019/07/Security_UnifiedLabeling-280x300.png 280w, https://blogit.create.pt/wp-content/uploads/2019/07/Security_UnifiedLabeling-768x823.png 768w, https://blogit.create.pt/wp-content/uploads/2019/07/Security_UnifiedLabeling-696x746.png 696w, https://blogit.create.pt/wp-content/uploads/2019/07/Security_UnifiedLabeling-392x420.png 392w" sizes="(max-width: 777px) 100vw, 777px" /><figcaption>Microsoft 365 Unified Labeling Protection</figcaption></figure></div>



<p>To learn about Microsoft 365 Unified Labeling and Information Protection, click <a rel="noreferrer noopener" aria-label="here (opens in a new tab)" href="https://docs.microsoft.com/en-us/Office365/SecurityCompliance/protect-information" target="_blank">here</a>.</p>



<h3 class="wp-block-heading">Transparency</h3>



<p>Regarding <strong>Transparency</strong>, a very important note is that Microsoft does not have access to the organization&#8217;s data and the only occasions where this may be necessary is in resolving support incidents that require access to the data. In these cases, and using a feature called <em>Customer Lockbox</em>, the customer can approve or reject access requests, and access is only granted in case the request is approved. In addition, all accesses are audited to ensure the transparency of the process.</p>



<p>These are just a few of the examples of the vast set of features available to users and administrators to protect information residing on the Microsoft 365 platform. Security is such a huge topic that is impossible to summarize all features in this post. Stay tuned for my next posts where I will address security features in more detail!</p>



<h2 class="wp-block-heading">Business Applications Development</h2>



<p>Microsoft 365 has a very rich feature set and it addresses a very broad range of collaboration needs. The good thing is that is also highly extensible allowing for developers to build rich user experiences for pretty much any business requirement.</p>



<p>There are other powerful ways to extend SharePoint Online and Microsoft 365 without the need of professional developers and the Rapid Application Development approaches are gaining more and more space in the development world, essentially to build business applications.</p>



<p>Microsoft&#8217;s vision for Rapid Application Development is composed by two main development platforms:</p>



<ul class="wp-block-list"><li>PowerApps</li><li>Microsoft Flow</li></ul>



<h3 class="wp-block-heading">PowerApps</h3>



<p>PowerApps is a suite of apps, services, connectors and data platform that provides a Rapid Application Development environment to build custom business applications. Using PowerApps, &#8220;citizen developers&#8221; can quickly build custom business applications that connect to your business data stored&nbsp;On-Premises<em> </em>(accessible through a <a rel="noreferrer noopener" aria-label="On-OnPremises Data Gateway (opens in a new tab)" href="https://powerapps.microsoft.com/pt-pt/blog/connect-to-your-on-premises-data-sources-using-on-premises-data-gateway-from-powerapps/" target="_blank">On-OnPremises Data Gateway</a>) or to Online data sources.</p>



<p>Currently there are dozens of connectors that allow PowerApps applications to connect to data sources like SharePoint, OneDrive, Exchange, Dynamics 365, SQL Server, etc.</p>



<p>One of the great things about PowerApps applications is they are developed in a mobile-first approach and you can easy use business applications in any mobile device from your tablet to your mobile phone.</p>



<div class="wp-block-image"><figure class="aligncenter"><img decoding="async" width="983" height="614" src="https://blogit.create.pt////wp-content/uploads/2019/07/PowerApps.jpg" alt="" class="wp-image-10943" srcset="https://blogit.create.pt/wp-content/uploads/2019/07/PowerApps.jpg 983w, https://blogit.create.pt/wp-content/uploads/2019/07/PowerApps-300x187.jpg 300w, https://blogit.create.pt/wp-content/uploads/2019/07/PowerApps-768x480.jpg 768w, https://blogit.create.pt/wp-content/uploads/2019/07/PowerApps-696x435.jpg 696w, https://blogit.create.pt/wp-content/uploads/2019/07/PowerApps-672x420.jpg 672w" sizes="(max-width: 983px) 100vw, 983px" /><figcaption>Microsoft PowerApps</figcaption></figure></div>



<p>PowerApps is great to quickly build business applications and below are a few examples of business applications that could be developed using PowerApps:</p>



<ul class="wp-block-list"><li>Expense Report</li><li>Travel Request</li><li>Vacation Request</li></ul>



<p>To take a look at an example of what PowerApps can do, take a look at the <a rel="noreferrer noopener" aria-label="Microsoft Expense Report sample (opens in a new tab)" href="https://docs.microsoft.com/en-us/powerapps/maker/canvas-apps/expense-report-install" target="_blank">Microsoft Expense Report sample</a>.</p>



<p>To learn more about PowerApps, click <a href="https://powerapps.microsoft.com/" target="_blank" rel="noreferrer noopener" aria-label="here (opens in a new tab)">here</a>.</p>



<h3 class="wp-block-heading">Microsoft Flow</h3>



<p>Microsoft Flow is a Cloud-based service that makes it easier for line-of-business users to create workflows that help automate time-consuming business processes and help connect applications and services.</p>



<p>As in PowerApps, Flow currently there are <a rel="noreferrer noopener" aria-label="dozens of connectors (opens in a new tab)" href="https://emea.flow.microsoft.com/en-us/connectors/" target="_blank">dozens of connectors</a> that allow flows to connect to data sources like SharePoint, OneDrive, Exchange, Dynamics 365, SQL Server, etc.</p>



<div class="wp-block-image"><figure class="aligncenter"><img decoding="async" width="1161" height="724" src="https://i0.wp.com/blogit.create.pt/wp-content/uploads/2019/07/MicrosoftFlow.jpg?fit=696%2C434&amp;ssl=1" alt="" class="wp-image-10941" srcset="https://blogit.create.pt/wp-content/uploads/2019/07/MicrosoftFlow.jpg 1161w, https://blogit.create.pt/wp-content/uploads/2019/07/MicrosoftFlow-300x187.jpg 300w, https://blogit.create.pt/wp-content/uploads/2019/07/MicrosoftFlow-768x479.jpg 768w, https://blogit.create.pt/wp-content/uploads/2019/07/MicrosoftFlow-1024x639.jpg 1024w, https://blogit.create.pt/wp-content/uploads/2019/07/MicrosoftFlow-696x434.jpg 696w, https://blogit.create.pt/wp-content/uploads/2019/07/MicrosoftFlow-1068x666.jpg 1068w, https://blogit.create.pt/wp-content/uploads/2019/07/MicrosoftFlow-674x420.jpg 674w" sizes="(max-width: 1161px) 100vw, 1161px" /><figcaption>Microsoft Flow Templates</figcaption></figure></div>



<p>There are numerous examples of where Flow can be used to automate processes and Flow is great to be used together with PowerApps. A good example would be a Expense Report built with PowerApps with the Approval process handled by Flow, allowing you also for example to automate the integration of approved expenses with your ERP or financial system.</p>



<p>To learn more about Microsoft Flow, click <a rel="noreferrer noopener" aria-label="here (opens in a new tab)" href="https://emea.flow.microsoft.com/" target="_blank">here</a>. </p>



<h3 class="wp-block-heading">Other Development Options</h3>



<p>If the business requirement is too complex and PowerApps and Flow may not be the best approach, SharePoint and Microsoft 365 offer a huge development platform, mainly trough the development of solutions based on <a rel="noreferrer noopener" href="https://docs.microsoft.com/en-us/sharepoint/dev/spfx/sharepoint-framework-overview" target="_blank">SharePoint Framework (SPFx)</a>. </p>



<h2 class="wp-block-heading">Insights</h2>



<p>Microsoft 365 as a collaboration platform generates a lot of information, specially if you are a large organization. To help you get insights from the information stored in Microsoft 365, you can use:</p>



<ul class="wp-block-list"><li><strong>Power BI:</strong> Provides a business intelligence platform that allows you to generate reports and dashboards to get critical business insights from a <a rel="noreferrer noopener" aria-label="variety of data sources (opens in a new tab)" href="https://docs.microsoft.com/en-us/power-bi/desktop-data-sources" target="_blank">variety of data sources</a>. <br><br><img decoding="async" width="896" height="617" class="wp-image-10946" style="width: 600px" src="https://blogit.create.pt////wp-content/uploads/2019/07/PowerBI.jpg" alt="" srcset="https://blogit.create.pt/wp-content/uploads/2019/07/PowerBI.jpg 896w, https://blogit.create.pt/wp-content/uploads/2019/07/PowerBI-300x207.jpg 300w, https://blogit.create.pt/wp-content/uploads/2019/07/PowerBI-768x529.jpg 768w, https://blogit.create.pt/wp-content/uploads/2019/07/PowerBI-100x70.jpg 100w, https://blogit.create.pt/wp-content/uploads/2019/07/PowerBI-218x150.jpg 218w, https://blogit.create.pt/wp-content/uploads/2019/07/PowerBI-696x479.jpg 696w, https://blogit.create.pt/wp-content/uploads/2019/07/PowerBI-610x420.jpg 610w" sizes="(max-width: 896px) 100vw, 896px" /><br>To learn more about Power BI, click <a rel="noreferrer noopener" aria-label="here (opens in a new tab)" href="https://powerbi.microsoft.com/en-us/" target="_blank">here</a>.<br></li><li><strong>Delve:</strong> Allows you to browse and discover relevant content for you, including your recent documents, content based on who you work with and trends in the organization<br><br>To learn more about Delve, click <a rel="noreferrer noopener" aria-label="here (opens in a new tab)" href="https://support.office.com/en-us/article/what-is-office-delve-1315665a-c6af-4409-a28d-49f8916878ca" target="_blank">here</a>.<br></li><li><strong>My Analytics</strong>: Allows you to measure Personal and Organizational Productivity Indicators, time spent in meetings and focused work or track your response and email read times<br><br>To learn more My Analytics, click <a rel="noreferrer noopener" aria-label="here (opens in a new tab)" href="https://products.office.com/en-us/business/myanalytics-personal-analytics" target="_blank">here</a>.</li></ul>



<h2 class="wp-block-heading">Migration Options</h2>



<p>If you have information On-Premises, either using an old file share or an On-Premises version of SharePoint Server, the path to SharePoint Online and Microsoft 365 is achieved using a content migration approach to migrate content to SharePoint Online and typically a 3rd party solution is necessary to do the migration. A few 3rd party solutions that can do the job are <a rel="noreferrer noopener" href="https://sharegate.com/products/sharegate-desktop" target="_blank">ShareGate</a>, <a rel="noreferrer noopener" href="https://www.avepoint.com/products/hybrid/office-365-migration/" target="_blank">AvePoint</a> and <a rel="noreferrer noopener" href="https://www.quest.com/metalogix/" target="_blank">Metalogix</a>. Microsoft has also released sometime ago the <a rel="noreferrer noopener" aria-label="SharePoint Migration Tool (opens in a new tab)" href="https://docs.microsoft.com/en-us/sharepointmigration/introducing-the-sharepoint-migration-tool" target="_blank">SharePoint Migration Tool</a> that also does the job but with less options than the 3rd party solutions.</p>



<p>The great thing when you migrate to Microsoft 365 and SharePoint Online (specially if you are using SharePoint Server) is that this should be the last migration you have to do! If you are using SharePoint Server and instead choose to do a SharePoint version upgrade, you will always have at least one more migration ahead of you (assuming you want to have Microsoft support, MS support for SharePoint Server will end after a few years, you can find more information <a rel="noreferrer noopener" aria-label="here (opens in a new tab)" href="https://support.microsoft.com/en-us/lifecycle/search" target="_blank">here</a>).</p>



<p>Migrating to SharePoint Online and Microsoft 365 has another clear advantage: reduction of IT costs and probably reduction of overall licensing costs since you don&#8217;t have to be worried about paying SharePoint Server licenses (and also SQL Server licenses if SharePoint is the only reason why you use SQL Server). In Microsoft 365, licensing is paid in a subscription based model where you can choose the best subscription model that fits your organization&#8217;s needs.</p>



<h2 class="wp-block-heading">Hybrid Scenarios</h2>



<p>If your organization is still not ready to migrate to Microsoft 365 entirely (one of the strongest reasons is in the case of data residency requirements where highly sensitive may not leave the country and there is no Microsoft 365 data center in that country, like for example in Portugal). In this case, a hybrid scenario may be your best option.</p>



<p>There are several hybrid supported scenarios and a possible approach could be to keep the most sensitive information On-Premises (for example in SharePoint 2019 that has improved hybrid support) and take the less sensitive information into the cloud and start taking advantage of the cloud innovations from SharePoint Online and Microsoft 365.</p>



<h2 class="wp-block-heading">Other Benefits</h2>



<p>Microsoft 365 is a huge productivity suite and there are other applications in the suite that are relevant:</p>



<ul class="wp-block-list"><li><strong>Yammer: </strong>Corporate social network where you can promote discussions and ideas and promote employee engagement across your organization. To learn more about Yammer, click <a rel="noreferrer noopener" aria-label="here (opens in a new tab)" href="https://products.office.com/en-us/yammer/" target="_blank">here</a>.</li><li><strong>Microsoft Stream:</strong> Microsoft 365 streaming platform where you can store and tag relevant corporate videos, assign videos to channels and share videos across organizations allowing you to promote employee engagement. To learn more about Microsoft Stream, click <a rel="noreferrer noopener" aria-label="here (opens in a new tab)" href="https://products.office.com/en-us/microsoft-stream" target="_blank">here</a>.</li><li><strong>Microsoft Forms:</strong> Allows you to quickly create surveys and get feedback from users in your organization. To learn more about Microsoft Forms, click <a rel="noreferrer noopener" href="https://support.office.com/en-us/article/create-a-form-with-microsoft-forms-4ffb64cc-7d5d-402f-b82e-b1d49418fd9d" target="_blank">here</a>. </li><li><strong>Dynamics 365:</strong> CRM platform included in Microsoft 365 where you can manage customers, relationships and create dashboards to help you make better decisions and help your business grow. To learn more about Dynamics 365, click <a rel="noreferrer noopener" aria-label="here (opens in a new tab)" href="https://dynamics.microsoft.com/en-us/" target="_blank">here</a>.</li></ul>



<h2 class="wp-block-heading">Conclusion</h2>



<p>Knowing where to take your business and choose the right collaboration platform is a critical business decision. Microsoft 365 is a very comprehensive collaboration and productivity suite that can help your organization to work smarter and take advantages of the constant innovations that Microsoft keeps adding to the suite.</p>



<p>If you still are in On-Premises scenario (either using file share, SharePoint Server or any other collaboration platform), you should carefully evaluate the options you have and evaluate the Pros and Cons of keeping your organization On-Premises or move to the Cloud (to SharePoint Online and Microsoft 365).</p>



<p>One thing I have no doubt: Microsoft is putting all the innovation and best collaboration features in SharePoint Online and Microsoft 365 and the gap to SharePoint Server is getting bigger and bigger, leaving companies that are not taking advantage of Microsoft 365 in a clear disadvantage with the ones that do.</p>



<p>One last argument: if your are still On-Premises, most probably you already have Microsoft 365 licensed and probably not using it or not taking full advantage it. If you are already paying, why not start taking full advantage of the innovations in Microsoft 365?</p>



<p>To finish, and to get a broader vision of SharePoint and Microsoft 365 evolution over the years, don&#8217;t miss Jeff Teper &#8220;Hitting Refresh on SharePoint&#8221; articles:</p>



<ul class="wp-block-list"><li><a rel="noreferrer noopener" href="https://www.linkedin.com/pulse/hitting-refresh-sharepoint-more-part-1-jeff-teper/" target="_blank">Hitting Refresh on SharePoint and More &#8211; Part 1</a></li><li><a rel="noreferrer noopener" href="https://www.linkedin.com/pulse/hitting-refresh-sharepoint-more-part-2-jeff-teper/" target="_blank">Hitting Refresh on SharePoint and More &#8211; Part 2</a></li><li><a rel="noreferrer noopener" href="https://www.linkedin.com/pulse/hitting-refresh-sharepoint-more-part-3-jeff-teper/" target="_blank">Hitting Refresh on SharePoint and More &#8211; Part 3</a></li><li><a rel="noreferrer noopener" href="https://www.linkedin.com/pulse/hitting-refresh-sharepoint-more-part-4-jeff-teper/" target="_blank">Hitting Refresh on SharePoint and More &#8211; Part 4</a></li></ul>



<p>To read the first part of this post, click <a href="https://blogit.create.pt////miguelisidoro/2019/07/29/why-your-business-should-migrate-to-sharepoint-online-and-office-365-the-value-offer-part-1/" target="_blank" rel="noreferrer noopener" aria-label="here (opens in a new tab)">here</a>. </p>



<h2 class="wp-block-heading">Related Articles</h2>



<p>If you want to convert your tenant&#8217;s root classic site into a modern SharePoint site, click <a href="https://blogit.create.pt////miguelisidoro/2019/08/27/how-to-modernize-your-tenant-root-site-collection-in-office-365-using-invoke-spositeswap/" target="_blank" rel="noreferrer noopener" aria-label=" (opens in a new tab)">here</a>.</p>



<p>If you are a SharePoint administrator or a SharePoint developer who wants to learn more about how to install a SharePoint 2019 farm in an automated way using PowerShell, I invite you to click <a rel="noreferrer noopener" href="https://blogit.create.pt////miguelisidoro/2018/12/09/how-to-install-a-sharepoint-2019-farm-using-powershell-and-autospinstaller-part-1/" target="_blank">here</a> and <a rel="noreferrer noopener" aria-label=" (opens in a new tab)" href="https://blogit.create.pt////miguelisidoro/2018/12/09/how-to-install-a-sharepoint-2019-farm-using-powershell-and-autospinstaller-part-2/" target="_blank">here</a>.</p>



<p>If you learn how to greatly speed up your SharePoint farm update process to ensure your SharePoint farm keeps updated and you stay one step closer to start your move to the cloud, click&nbsp;<a rel="noreferrer noopener" href="https://blogit.create.pt////miguelisidoro/2019/05/02/how-to-speed-up-the-installation-of-sharepoint-cumulative-updates-using-powershell-step-by-step/" target="_blank">here</a>. </p>



<p>If you prefer to use the traditional method to update your farm and want to learn all the steps and precautions necessary to successfully keep your SharePoint farm updated, click <a rel="noreferrer noopener" aria-label=" (opens in a new tab)" href="https://blogit.create.pt////miguelisidoro/2019/04/08/how-to-install-sharepoint-cumulative-updates-in-a-sharepoint-farm-step-by-step/" target="_blank">here</a>.</p>



<p>If you want to learn how to upgrade a SharePoint 2013 farm to SharePoint 2019, click <a rel="noreferrer noopener" href="https://blogit.create.pt////miguelisidoro/2019/03/06/how-to-upgrade-from-sharepoint-2013-to-sharepoint-2019-step-by-step-part-1/" target="_blank">here </a>and <a href="https://blogit.create.pt////miguelisidoro/2019/03/06/how-to-upgrade-from-sharepoint-2013-to-sharepoint-2019-step-by-step-part-2/" target="_blank" rel="noreferrer noopener" aria-label=" (opens in a new tab)">here</a>.</p>



<p>If SharePoint 2019 is still not an option, you can learn more about how to install a SharePoint 2016 farm in an automated way using PowerShell, click <a href="https://blogit.create.pt////miguelisidoro/2018/07/28/how-to-install-a-sharepoint-2016-farm-using-powershell-and-autospinstaller-part-1/" target="_blank" rel="noreferrer noopener" aria-label=" (opens in a new tab)">here</a>&nbsp;and&nbsp;<a rel="noreferrer noopener" href="https://blogit.create.pt////miguelisidoro/2018/07/28/how-to-install-a-sharepoint-2016-farm-using-powershell-and-autospinstaller-part-2/" target="_blank">here</a>. </p>



<p>If you want to learn how to upgrade a SharePoint 2010 farm to SharePoint 2016, click <a rel="noreferrer noopener" href="https://blogit.create.pt////miguelisidoro/2019/02/04/sharepoint-upgrade-upgrading-a-sharepoint-2010-farm-to-sharepoint-2016-step-by-step-part-1/" target="_blank">here </a>and <a rel="noreferrer noopener" href="https://blogit.create.pt////miguelisidoro/2019/02/04/sharepoint-upgrade-upgrading-a-sharepoint-2010-farm-to-sharepoint-2016-step-by-step-part-2/" target="_blank">here</a>.</p>



<p>If you are new to SharePoint and Microsoft 365 and want to learn all about it, take a look at these <a rel="noreferrer noopener" aria-label=" (opens in a new tab)" href="https://blogit.create.pt////miguelisidoro/2018/10/17/sharepoint-and-office-365-learning-resources/" target="_blank">learning resources</a>.</p>



<p>If you are work in a large organization who is using Microsoft 365 or thinking to migrate to Microsoft 365 and is considering between a single or multiple Microsoft 365 tenants, I invite you to read <a aria-label=" (opens in a new tab)" rel="noreferrer noopener" href="https://blogit.create.pt////miguelisidoro/2019/01/07/pros-and-cons-of-single-tenant-vs-multiple-tenants-in-office-365/" target="_blank">this article</a>.</p>



<p>If you want to know all about the latest SharePoint and Microsoft 365 announcements from SharePoint Conference 2019, click <a rel="noreferrer noopener" href="https://blogit.create.pt////miguelisidoro/2019/06/05/whats-new-for-sharepoint-and-office-365-from-sharepoint-conference-2019-part-1/" target="_blank">here </a>and <a rel="noreferrer noopener" href="https://blogit.create.pt////miguelisidoro/2019/06/05/whats-new-for-sharepoint-and-office-365-from-sharepoint-conference-2019-part-2/" target="_blank">here</a>.</p>



<p>If your organization is still not ready to migrate to Microsoft 365, a hybrid scenario may be the best choice. SharePoint 2019 RTM was recently announced and if you to learn all about SharePoint 2019 and all its features, click <a rel="noreferrer noopener" href="https://blogit.create.pt////miguelisidoro/2018/11/01/meet-the-new-modern-sharepoint-server-sharepoint-2019-rtm-is-here/" target="_blank">here</a>.</p>



<p>Happy SharePointing! </p>
<p>The post <a href="https://blogit.create.pt/miguelisidoro/2019/07/29/why-your-business-should-migrate-to-sharepoint-online-and-office-365-the-value-offer-part-2/">Why You Should Migrate To Microsoft 365 (Part 2)</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blogit.create.pt/miguelisidoro/2019/07/29/why-your-business-should-migrate-to-sharepoint-online-and-office-365-the-value-offer-part-2/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>Why You Should Migrate To Microsoft 365 (Part 1)</title>
		<link>https://blogit.create.pt/miguelisidoro/2019/07/29/why-your-business-should-migrate-to-sharepoint-online-and-office-365-the-value-offer-part-1/</link>
					<comments>https://blogit.create.pt/miguelisidoro/2019/07/29/why-your-business-should-migrate-to-sharepoint-online-and-office-365-the-value-offer-part-1/#comments</comments>
		
		<dc:creator><![CDATA[Miguel Isidoro]]></dc:creator>
		<pubDate>Sun, 28 Jul 2019 23:34:51 +0000</pubDate>
				<category><![CDATA[Microsoft 365]]></category>
		<category><![CDATA[Migration]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Collaboration]]></category>
		<category><![CDATA[Modern Workplace]]></category>
		<category><![CDATA[Office 365]]></category>
		<category><![CDATA[SharePoint 2019]]></category>
		<category><![CDATA[SharePoint Online]]></category>
		<guid isPermaLink="false">https://blogit.create.pt/?p=10521</guid>

					<description><![CDATA[<p>Is your business evaluating if it should move to the Cloud and migrate to Microsoft 365? Then you came to the right place! This post series will show you some of the top reasons to move to the Cloud and Microsoft 365. Introduction This two part blog post is the first part of a blog [&#8230;]</p>
<p>The post <a href="https://blogit.create.pt/miguelisidoro/2019/07/29/why-your-business-should-migrate-to-sharepoint-online-and-office-365-the-value-offer-part-1/">Why You Should Migrate To Microsoft 365 (Part 1)</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>Is your business evaluating if it should move to the Cloud and migrate to Microsoft 365? Then you came to the right place! This post series will show you some of the top reasons to move to the Cloud and Microsoft 365.</p>



<h2 class="wp-block-heading">Introduction</h2>



<p>This two part blog post is the first part of a blog post series that will try to give you an idea of the advantages of moving to the Cloud and the benefits of adopting Microsoft 365 as a collaboration platform.</p>



<p>We live in a world that is rapidly moving towards Software as a Service (SaaS) solutions in several areas from collaboration, E-Commerce and many other areas, are moving from a reality where systems and respective data are deployed within the companies infrastructure (On-Premises) to the Cloud.</p>



<p>The goal of this two part blog posts is to give you an overview of the main features included in Microsoft 365 and how your organization can take advantage of them if you migrate to Microsoft 365.</p>



<p>These are the topics I will discuss in the first part of this two part blog post: </p>



<ul class="wp-block-list">
<li>Microsoft 365</li>



<li>Collaboration with SharePoint and OneDrive</li>



<li>Mobility</li>



<li>Use Microsoft Teams as your Work Hub</li>



<li>Easy and Secure External Sharing</li>
</ul>



<p>To read the second part of this post, click <a href="https://blogit.create.pt////miguelisidoro/2019/07/29/why-your-business-should-migrate-to-sharepoint-online-and-office-365-the-value-offer-part-2/" target="_blank" rel="noreferrer noopener" aria-label="here (opens in a new tab)">here</a>.</p>



<h2 class="wp-block-heading">Microsoft 365</h2>



<p>First things first! What is Microsoft 365?</p>



<p>One of the main concerns of companies in choosing a Cloud collaboration platform, in which the Microsoft 365 is an example and leading platform, is the security of their information. One of the biggest challenges when organizations are deciding if they want migrate to Microsoft 365 is related to the demystification that having the information in the Cloud is less secure than if it resides on the premises of the organizations themselves.</p>



<p>Microsoft has launched a licensing model that includes an impressive security feature set called <a rel="noreferrer noopener" aria-label=" (opens in a new tab)" href="https://www.microsoft.com/en-us/microsoft-365/" target="_blank">Microsoft 365</a>. This is a bundle that includes:</p>



<ul class="wp-block-list">
<li>Windows 10</li>



<li>Office 365</li>



<li>Enterprise Mobility + Security</li>
</ul>



<p>This bundle comes in three different flavors:</p>



<ul class="wp-block-list">
<li><a href="https://www.microsoft.com/en-us/microsoft-365/business" target="_blank" rel="noreferrer noopener">Microsoft 365 Business</a></li>



<li><a href="https://www.microsoft.com/en-us/microsoft-365/enterprise" target="_blank" rel="noreferrer noopener">Microsoft 365 Enterprise</a></li>



<li><a aria-label=" (opens in a new tab)" href="https://www.microsoft.com/en-us/education/buy-license/microsoft365" target="_blank" rel="noreferrer noopener">Microsoft 365 Education</a></li>
</ul>



<p>The way I see it, Microsoft 365, in which Office 365 is a big part, has two main branches that are closely linked:</p>



<ul class="wp-block-list">
<li>Collaboration</li>



<li>Security</li>
</ul>



<p>The main purpose of Microsoft 365, is to <strong>empower business to collaborate in a secure way</strong>.</p>



<p>If you want to know more about all the security features included Microsoft 365, click <a href="https://www.microsoft.com/en-us/trustcenter/security/office365-security" target="_blank" rel="noreferrer noopener" aria-label=" (opens in a new tab)">here</a>.  </p>



<p>Below, is a summary of the top reasons why you should move to the Cloud and start using Microsoft 365. The summary is mainly focused on Microsoft 365 features.</p>



<h2 class="wp-block-heading">Collaboration with SharePoint and OneDrive</h2>



<p>Besides email, Microsoft 365 information will be stored either in <a rel="noreferrer noopener" href="https://products.office.com/en-us/sharepoint/sharepoint-online-collaboration-software" target="_blank">SharePoint Online</a> or <a rel="noreferrer noopener" href="https://products.office.com/en-us/onedrive-for-business/online-cloud-storage" target="_blank">OneDrive</a>:</p>



<ul class="wp-block-list">
<li><strong>SharePoint Online:</strong> the heart of collaboration in Microsoft 365 and where shared information in your organization should reside</li>



<li><strong>OneDrive:</strong> based on the same technology as SharePoint, it is a private space that allows each employee in the organization to store their personal documents. Each employee gets from 1 TB to 5 TB <a aria-label="depending on the your licensing model (opens in a new tab)" href="https://docs.microsoft.com/en-us/office365/servicedescriptions/onedrive-for-business-service-description" target="_blank" rel="noreferrer noopener">depending on your licensing model</a>.</li>
</ul>



<h3 class="wp-block-heading">Office Web Apps (SharePoint and OneDrive) </h3>



<p>With Microsoft 365, each Office application has a corresponding web app that allows you to collaborate on documents directly from the browser without the need of its corresponding Office client applications. These are the available Office Web Apps in Microsoft 365:</p>



<ul class="wp-block-list">
<li>Word Online</li>



<li>Excel Online</li>



<li>PowerPoint Online</li>



<li>Visio Online</li>



<li>OneNote Online</li>
</ul>



<p>Each of this web apps allows you to open and edit documents directly from the browser. The experience is similar to the Office client application and there are just a few restrictions in edit experience (ex: you can open but not edit macro-enabled Excel files).</p>



<h3 class="wp-block-heading">Real-Time Collaboration and Co-Authoring (SharePoint and OneDrive)</h3>



<p>Are you tired of reviewing documents sending successive copies of the same document back and forth by email and not knowing what the latest version of the document is? Mee too and this is where co-authoring is a huge help!</p>



<p>When documents are stored in SharePoint or OneDrive, co-authoring allows you to share a document with users inside or outside your organization and have them collaborate on the document in real time without the need to save multiple versions of the same document and loose track of the changes that were made by each contributor. All contributions are merged into the same document and you can see who else is editing and what changes each contributor has made.</p>


<div class="wp-block-image">
<figure class="aligncenter"><img decoding="async" width="972" height="648" src="https://blogit.create.pt////wp-content/uploads/2019/07/Word_Co-Authoring.png" alt="" class="wp-image-10700" srcset="https://blogit.create.pt/wp-content/uploads/2019/07/Word_Co-Authoring.png 972w, https://blogit.create.pt/wp-content/uploads/2019/07/Word_Co-Authoring-300x200.png 300w, https://blogit.create.pt/wp-content/uploads/2019/07/Word_Co-Authoring-768x512.png 768w, https://blogit.create.pt/wp-content/uploads/2019/07/Word_Co-Authoring-696x464.png 696w, https://blogit.create.pt/wp-content/uploads/2019/07/Word_Co-Authoring-630x420.png 630w" sizes="(max-width: 972px) 100vw, 972px" /><figcaption class="wp-element-caption">Real Time Collaboration (Co-Authoring a Word document in SharePoint or OneDrive)</figcaption></figure>
</div>


<p>This allows you to have full real time collaboration over the same document instead of having multiple copies going back and forth by email, having the added advantage to significantly reduce the size of your mailbox and making you much more productive.</p>



<p>SharePoint and OneDrive take advantages of secure sharing, allowing you to choose who can access and edit the document.</p>



<p>To learn more about real time collaboration and co-authoring, click <a rel="noreferrer noopener" href="https://support.office.com/en-gb/article/document-collaboration-and-co-authoring-ee1509b4-1f6e-401e-b04a-782d26f564a4" target="_blank">here</a>. </p>



<h3 class="wp-block-heading">Stop Sending Attachments by Email</h3>



<p>Another advantage of using SharePoint and OneDrive for collaboration is that instead of attaching a copy of your document in the email, you can simply share a link to the document that is stored in SharePoint or OneDrive.</p>


<div class="wp-block-image">
<figure class="aligncenter"><img decoding="async" width="461" height="225" src="https://blogit.create.pt////wp-content/uploads/2019/07/Outlook_Attachment_Share_Link.png" alt="" class="wp-image-10689" srcset="https://blogit.create.pt/wp-content/uploads/2019/07/Outlook_Attachment_Share_Link.png 461w, https://blogit.create.pt/wp-content/uploads/2019/07/Outlook_Attachment_Share_Link-300x146.png 300w" sizes="(max-width: 461px) 100vw, 461px" /><figcaption class="wp-element-caption">Insert attachment as Link to SharePoint or OneDrive file in Outlook</figcaption></figure>
</div>


<p>For users, the attachment looks exactly the same as a normal attachment with the difference of a having a small &#8220;cloud&#8221; symbol near the document icon.</p>


<div class="wp-block-image">
<figure class="aligncenter"><img decoding="async" width="258" height="61" src="https://blogit.create.pt////wp-content/uploads/2019/07/Outlook_Attachment_Share_Link_2.png" alt="" class="wp-image-10695" /><figcaption class="wp-element-caption"> <em>Insert attachment as Link to SharePoint or OneDrive file in Outlook</em> (Cloud Attachment)</figcaption></figure>
</div>


<p>This way, we also significantly reduce the size of user&#8217;s mailboxes since what we are sharing is the link do the document in SharePoint or OneDrive and not a copy of the file. Sharing documents this way also enables users to use real time collaboration by allowing them to co-edit the &#8220;attached&#8221; document. The document can be edited either in the browser or using the appropriate Office client application.</p>



<p>To learn more on Cloud Attachments, click <a href="https://support.office.com/en-us/article/attach-files-in-outlook-on-the-web-48b8dca1-7a76-43ce-97d1-e1cf73893f55" target="_blank" rel="noreferrer noopener" aria-label=" (opens in a new tab)">here</a>.</p>



<h3 class="wp-block-heading">Offline Access</h3>



<p>Documents in SharePoint and OneDrive are stored in document libraries. You can sync any SharePoint or OneDrive files to a folder on your computer where you can work directly in the files using File Explorer and you can even access and work on the files when you&#8217;re offline.</p>


<div class="wp-block-image">
<figure class="aligncenter"><img decoding="async" width="896" height="469" src="https://blogit.create.pt////wp-content/uploads/2019/07/SharePoint_Doclib_SyncLib.png" alt="" class="wp-image-10712" srcset="https://blogit.create.pt/wp-content/uploads/2019/07/SharePoint_Doclib_SyncLib.png 896w, https://blogit.create.pt/wp-content/uploads/2019/07/SharePoint_Doclib_SyncLib-300x157.png 300w, https://blogit.create.pt/wp-content/uploads/2019/07/SharePoint_Doclib_SyncLib-768x402.png 768w, https://blogit.create.pt/wp-content/uploads/2019/07/SharePoint_Doclib_SyncLib-696x364.png 696w, https://blogit.create.pt/wp-content/uploads/2019/07/SharePoint_Doclib_SyncLib-802x420.png 802w" sizes="(max-width: 896px) 100vw, 896px" /><figcaption class="wp-element-caption">Sync a SharePoint document library for Offline Access</figcaption></figure>
</div>

<div class="wp-block-image">
<figure class="aligncenter"><img decoding="async" width="749" height="170" src="https://blogit.create.pt////wp-content/uploads/2019/07/SharePoint_Doclib_Synced.png" alt="" class="wp-image-10709" srcset="https://blogit.create.pt/wp-content/uploads/2019/07/SharePoint_Doclib_Synced.png 749w, https://blogit.create.pt/wp-content/uploads/2019/07/SharePoint_Doclib_Synced-300x68.png 300w, https://blogit.create.pt/wp-content/uploads/2019/07/SharePoint_Doclib_Synced-696x158.png 696w" sizes="(max-width: 749px) 100vw, 749px" /><figcaption class="wp-element-caption"><em>Access SharePoint files using File Explorer</em></figcaption></figure>
</div>


<p>Once you get back online, any changes that you or other users make will be synced automatically.</p>



<p>To learn more on how to sync a SharePoint or OneDrive document library, click <a rel="noreferrer noopener" aria-label="here (opens in a new tab)" href="https://support.office.com/en-gb/article/sync-sharepoint-files-with-the-new-onedrive-sync-client-6de9ede8-5b6e-4503-80b2-6190f3354a88" target="_blank">here</a>.</p>



<h3 class="wp-block-heading">Microsoft 365 Groups</h3>



<p>Microsoft 365 groups are the preferred method for team collaboration in Microsoft 365. When created, an Microsoft 365 group provides the following for its members:</p>



<ul class="wp-block-list">
<li>A Security Group (<a aria-label=" (opens in a new tab)" href="https://azure.microsoft.com/en-us/services/active-directory/" target="_blank" rel="noreferrer noopener">Azure AD</a>)</li>



<li>A Shared Group Mailbox (<a aria-label="Exchange (opens in a new tab)" href="https://products.office.com/en-us/exchange/" target="_blank" rel="noreferrer noopener">Exchange</a>)</li>



<li>A Shared Team Site (<a aria-label=" (opens in a new tab)" href="https://products.office.com/en-us/sharepoint/" target="_blank" rel="noreferrer noopener">SharePoint</a>)</li>



<li>A Shared Notebook (<a aria-label=" (opens in a new tab)" href="https://products.office.com/en-us/onenote/" target="_blank" rel="noreferrer noopener">OneNote</a>)</li>



<li>A Team in <a aria-label="Microsoft Teams (opens in a new tab)" href="https://products.office.com/en-us/microsoft-teams/" target="_blank" rel="noreferrer noopener">Microsoft Teams</a> (if created through Teams or if later a Team in Microsoft Teams is associated to an existing Microsoft 365 group)</li>



<li>A Teamwork Planning Space (<a aria-label=" (opens in a new tab)" href="https://products.office.com/en-us/business/task-management-software" target="_blank" rel="noreferrer noopener">Microsoft Planner</a>)</li>
</ul>



<p>Microsoft 365 Groups can be created from a variety of ways in Microsoft 365 (among others: SharePoint, Outlook and Microsoft Teams) and its main purpose is to facilitate teams inside the organizations to collaborate. For instance, the Shared Group Mailbox that is created is not a distribution list but a shared mailbox in Exchange Online and it allows for a new member in the group to have instant access to all emails sent to the shared mailbox prior to his addition to the group!</p>



<p>To learn more about Microsoft 365 Groups, click <a aria-label=" (opens in a new tab)" rel="noreferrer noopener" href="https://support.office.com/en-gb/article/learn-about-office-365-groups-b565caa1-5c40-40ef-9915-60fdb2d97fa2" target="_blank">here</a>.</p>



<h2 class="wp-block-heading">Mobility</h2>



<p>One of the strongest advantages when you migrate to Microsoft 365 is mobility. You will be able to access your documents, emails, business processes from any device and from any location.</p>



<p>Below, are a few examples of what you can do directly from your mobile phone or tablet:</p>



<ul class="wp-block-list">
<li>Access your email and contacts using Exchange Online and Outlook Mobile App</li>



<li>Open and collaborate on shared documents in SharePoint Team Sites using Office mobile apps (there is a mobile version for Word, Excel, PowerPoint, etc)</li>



<li>Share and access important news with your team using SharePoint Communication Sites</li>



<li>Access your organizations dashboards using Power BI</li>



<li>Access important business processes (example: approve your team&#8217;s expenses) using  PowerApps</li>



<li>Join a meeting directly from your phone using Microsoft Teams mobile app</li>



<li>Access relevant corporate information using the mobile SharePoint app</li>
</ul>


<div class="wp-block-image">
<figure class="aligncenter"><img decoding="async" width="682" height="547" src="https://blogit.create.pt////wp-content/uploads/2019/07/Office365_Mobile.jpg" alt="" class="wp-image-11054" srcset="https://blogit.create.pt/wp-content/uploads/2019/07/Office365_Mobile.jpg 682w, https://blogit.create.pt/wp-content/uploads/2019/07/Office365_Mobile-300x241.jpg 300w, https://blogit.create.pt/wp-content/uploads/2019/07/Office365_Mobile-524x420.jpg 524w" sizes="(max-width: 682px) 100vw, 682px" /><figcaption class="wp-element-caption">SharePoint Mobile App</figcaption></figure>
</div>


<p>All of this can be achieved in a secure way. I will talk a little bit more on security later in the second part of the blog post.</p>



<h2 class="wp-block-heading">Use Microsoft Teams as your Work Hub</h2>



<p>Microsoft Teams is a collaboration platform that was launched on March 14, 2017 and it combines workplace chat, audio and video based conference call meetings, notes, attachments and all that relates to digital team work. This service integrates seamlessly with Microsoft 365 including Microsoft Office, SharePoint Online and can also integrate with non-Microsoft products.</p>



<figure class="wp-block-image"><img decoding="async" width="959" height="614" src="https://blogit.create.pt////wp-content/uploads/2019/07/MicrosoftTeams.jpg" alt="" class="wp-image-10812" srcset="https://blogit.create.pt/wp-content/uploads/2019/07/MicrosoftTeams.jpg 959w, https://blogit.create.pt/wp-content/uploads/2019/07/MicrosoftTeams-300x192.jpg 300w, https://blogit.create.pt/wp-content/uploads/2019/07/MicrosoftTeams-768x492.jpg 768w, https://blogit.create.pt/wp-content/uploads/2019/07/MicrosoftTeams-696x446.jpg 696w, https://blogit.create.pt/wp-content/uploads/2019/07/MicrosoftTeams-656x420.jpg 656w" sizes="(max-width: 959px) 100vw, 959px" /></figure>



<p>Microsoft Teams is already the fastest growing business app in Microsoft&#8217;s history and is rapidly growing to be the work hub for collaboration in Microsoft 365. In summary, Microsoft Teams provides:</p>



<ul class="wp-block-list">
<li><strong>1-to-1 and Team Chats:</strong> You can chat with any internal users in your Microsoft 365 tenant and also guest users (for more details, about internal users and external users and Pros and Cons of Single Tenant vs Multiple Tenants in Microsoft 365, click <a aria-label="here (opens in a new tab)" href="https://blogit.create.pt////miguelisidoro/2019/01/07/pros-and-cons-of-single-tenant-vs-multiple-tenants-in-office-365/" target="_blank" rel="noreferrer noopener">here</a>)</li>



<li><strong>Channels:</strong> By default, a single channel called &#8220;General&#8221; is created for every Team but new channels can be created. The most common approach is to create a few channels, one for each relevant topic within the Team. For now, all channels share same security settings as the team but in the near future it will be possible to have private channels (with specific permissions)</li>



<li><strong>Meetings:</strong> You can organize and attend online meetings (audio and video) and you can even start your meeting using your PC and continue attending it using your mobile device. All you need is a stable internet connection!</li>



<li><strong>Files: </strong>You can open your files directly in Teams without the need to go to SharePoint where the files are stored. Soon, Teams will have the full SharePoint files experience and the user experience to interact with files will be even better than it is today (if you want to know more about the recent announcements on Teams, SharePoint and Microsoft 365, click <a aria-label="here (opens in a new tab)" href="https://blogit.create.pt////miguelisidoro/2019/06/05/whats-new-for-sharepoint-and-office-365-from-sharepoint-conference-2019-part-1/" target="_blank" rel="noreferrer noopener">here</a> and <a aria-label="here (opens in a new tab)" href="https://blogit.create.pt////miguelisidoro/2019/06/05/whats-new-for-sharepoint-and-office-365-from-sharepoint-conference-2019-part-2/" target="_blank" rel="noreferrer noopener">here</a>)</li>



<li><strong>Tabs:</strong> Tabs is a great way to add content to your Team or channel. It allows you to add new tabs that show content from Microsoft 365 (ex: a shared calendar, the Team Planner, a PowerBI dashboard) or relevant external content (ex: an external web page)<br><br><img decoding="async" width="694" height="924" class="wp-image-10841" style="width: 500px" src="https://blogit.create.pt////wp-content/uploads/2019/07/MicrosoftTeams_Tabs.jpg" alt="" srcset="https://blogit.create.pt/wp-content/uploads/2019/07/MicrosoftTeams_Tabs.jpg 694w, https://blogit.create.pt/wp-content/uploads/2019/07/MicrosoftTeams_Tabs-225x300.jpg 225w, https://blogit.create.pt/wp-content/uploads/2019/07/MicrosoftTeams_Tabs-315x420.jpg 315w" sizes="(max-width: 694px) 100vw, 694px" /></li>



<li><strong>Connectors: </strong>Similar to tabs but it allows you to get content from a variety of content sources directly into a channel (ex: a relevant RSS feed, Twitter account activity, etc)<br><br><img decoding="async" width="802" height="742" class="wp-image-10849" style="width: 500px" src="https://blogit.create.pt////wp-content/uploads/2019/07/MicrosoftTeams_Connectors.jpg" alt="" srcset="https://blogit.create.pt/wp-content/uploads/2019/07/MicrosoftTeams_Connectors.jpg 802w, https://blogit.create.pt/wp-content/uploads/2019/07/MicrosoftTeams_Connectors-300x278.jpg 300w, https://blogit.create.pt/wp-content/uploads/2019/07/MicrosoftTeams_Connectors-768x711.jpg 768w, https://blogit.create.pt/wp-content/uploads/2019/07/MicrosoftTeams_Connectors-696x644.jpg 696w, https://blogit.create.pt/wp-content/uploads/2019/07/MicrosoftTeams_Connectors-454x420.jpg 454w" sizes="(max-width: 802px) 100vw, 802px" /></li>



<li><strong>Bots:</strong> Microsoft Teams also has the ability to communicate with Bots that are artificial intelligence applications which can complete simple or complex tasks using chat-based commands</li>



<li><strong>Mobile App:</strong> All the above can be done using the Teams Mobile app, which is a rich feature set app, available for IOS and Android</li>
</ul>



<p>To learn more about Microsoft Teams, click <a href="https://products.office.com/en-us/microsoft-teams/" target="_blank" rel="noreferrer noopener" aria-label=" (opens in a new tab)">here</a>.</p>



<h2 class="wp-block-heading">Easy and Secure External Sharing</h2>



<p>For organizations to be able to share content from an On-Premises SharePoint installation, it involves some complex IT configurations to be set in place. If you migrate to Microsoft 365 and SharePoint Online, it gets much easier to share information with external users, allowing information to be easily shared in a secure way.</p>



<p>SharePoint Online makes it possible to easily share:</p>



<ul class="wp-block-list">
<li><strong>Sites:</strong> Share a whole site with an external user</li>



<li><strong>Document Libraries: </strong>Share only the contents of a specific document library</li>



<li><strong>Folders:</strong> Share only the contents of a specific folder</li>



<li><strong>Documents: </strong>Share only the contents of a specific document</li>
</ul>



<p>To be able to share with external users, external sharing must be enabled on the Microsoft 365 Admin Center and from a security perspective it is possible to control for which domains external sharing is allowed (either by using black or white lists).</p>



<p>To learn more about external sharing on Microsoft 365, click <a aria-label="here (opens in a new tab)" rel="noreferrer noopener" href="https://docs.microsoft.com/en-us/sharepoint/external-sharing-overview" target="_blank">here</a>.</p>



<p> To read the second part of this post, click <a rel="noreferrer noopener" aria-label="here (opens in a new tab)" href="https://blogit.create.pt////miguelisidoro/2019/07/29/why-your-business-should-migrate-to-sharepoint-online-and-office-365-the-value-offer-part-2/" target="_blank">here</a>.</p>



<h2 class="wp-block-heading">Related Articles</h2>



<p>If you want to convert your tenant&#8217;s root classic site into a modern SharePoint site, click <a rel="noreferrer noopener" href="https://blogit.create.pt////miguelisidoro/2019/08/27/how-to-modernize-your-tenant-root-site-collection-in-office-365-using-invoke-spositeswap/" target="_blank">here</a>.</p>



<p>If you are a SharePoint administrator or a SharePoint developer who wants to learn more about how to install a SharePoint 2019 farm in an automated way using PowerShell, I invite you to click <a rel="noreferrer noopener" href="https://blogit.create.pt////miguelisidoro/2018/12/09/how-to-install-a-sharepoint-2019-farm-using-powershell-and-autospinstaller-part-1/" target="_blank">here</a> and <a rel="noreferrer noopener" aria-label=" (opens in a new tab)" href="https://blogit.create.pt////miguelisidoro/2018/12/09/how-to-install-a-sharepoint-2019-farm-using-powershell-and-autospinstaller-part-2/" target="_blank">here</a>.</p>



<p>If you learn how to greatly speed up your SharePoint farm update process to ensure your SharePoint farm keeps updated and you stay one step closer to start your move to the cloud, click&nbsp;<a rel="noreferrer noopener" href="https://blogit.create.pt////miguelisidoro/2019/05/02/how-to-speed-up-the-installation-of-sharepoint-cumulative-updates-using-powershell-step-by-step/" target="_blank">here</a>. </p>



<p>If you prefer to use the traditional method to update your farm and want to learn all the steps and precautions necessary to successfully keep your SharePoint farm updated, click <a rel="noreferrer noopener" aria-label=" (opens in a new tab)" href="https://blogit.create.pt////miguelisidoro/2019/04/08/how-to-install-sharepoint-cumulative-updates-in-a-sharepoint-farm-step-by-step/" target="_blank">here</a>.</p>



<p>If you want to learn how to upgrade a SharePoint 2013 farm to SharePoint 2019, click <a rel="noreferrer noopener" href="https://blogit.create.pt////miguelisidoro/2019/03/06/how-to-upgrade-from-sharepoint-2013-to-sharepoint-2019-step-by-step-part-1/" target="_blank">here </a>and <a href="https://blogit.create.pt////miguelisidoro/2019/03/06/how-to-upgrade-from-sharepoint-2013-to-sharepoint-2019-step-by-step-part-2/" target="_blank" rel="noreferrer noopener" aria-label=" (opens in a new tab)">here</a>.</p>



<p>If SharePoint 2019 is still not an option, you can learn more about how to install a SharePoint 2016 farm in an automated way using PowerShell, click <a href="https://blogit.create.pt////miguelisidoro/2018/07/28/how-to-install-a-sharepoint-2016-farm-using-powershell-and-autospinstaller-part-1/" target="_blank" rel="noreferrer noopener" aria-label=" (opens in a new tab)">here</a>&nbsp;and&nbsp;<a rel="noreferrer noopener" href="https://blogit.create.pt////miguelisidoro/2018/07/28/how-to-install-a-sharepoint-2016-farm-using-powershell-and-autospinstaller-part-2/" target="_blank">here</a>. </p>



<p>If you want to learn how to upgrade a SharePoint 2010 farm to SharePoint 2016, click <a rel="noreferrer noopener" href="https://blogit.create.pt////miguelisidoro/2019/02/04/sharepoint-upgrade-upgrading-a-sharepoint-2010-farm-to-sharepoint-2016-step-by-step-part-1/" target="_blank">here </a>and <a rel="noreferrer noopener" href="https://blogit.create.pt////miguelisidoro/2019/02/04/sharepoint-upgrade-upgrading-a-sharepoint-2010-farm-to-sharepoint-2016-step-by-step-part-2/" target="_blank">here</a>.</p>



<p>If you are new to SharePoint and Microsoft 365 and want to learn all about it, take a look at these <a aria-label=" (opens in a new tab)" rel="noreferrer noopener" href="https://blogit.create.pt////miguelisidoro/2018/10/17/sharepoint-and-office-365-learning-resources/" target="_blank">learning resources</a>.</p>



<p>If you are work in a large organization who is using Microsoft 365 or thinking to migrate to Microsoft 365 and is considering between a single or multiple Microsoft 365 tenants, I invite you to read <a aria-label=" (opens in a new tab)" rel="noreferrer noopener" href="https://blogit.create.pt////miguelisidoro/2019/01/07/pros-and-cons-of-single-tenant-vs-multiple-tenants-in-office-365/" target="_blank">this article</a>.</p>



<p>If you want to know all about the latest SharePoint and Microsoft 365 announcements from SharePoint Conference 2019, click <a rel="noreferrer noopener" href="https://blogit.create.pt////miguelisidoro/2019/06/05/whats-new-for-sharepoint-and-office-365-from-sharepoint-conference-2019-part-1/" target="_blank">here </a>and <a rel="noreferrer noopener" href="https://blogit.create.pt////miguelisidoro/2019/06/05/whats-new-for-sharepoint-and-office-365-from-sharepoint-conference-2019-part-2/" target="_blank">here</a>.</p>



<p>If your organization is still not ready to migrate to Microsoft 365, a hybrid scenario may be the best choice. SharePoint 2019 RTM was recently announced and if you to learn all about SharePoint 2019 and all its features, click <a rel="noreferrer noopener" href="https://blogit.create.pt////miguelisidoro/2018/11/01/meet-the-new-modern-sharepoint-server-sharepoint-2019-rtm-is-here/" target="_blank">here</a>.</p>



<p>Happy SharePointing! </p>
<p>The post <a href="https://blogit.create.pt/miguelisidoro/2019/07/29/why-your-business-should-migrate-to-sharepoint-online-and-office-365-the-value-offer-part-1/">Why You Should Migrate To Microsoft 365 (Part 1)</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blogit.create.pt/miguelisidoro/2019/07/29/why-your-business-should-migrate-to-sharepoint-online-and-office-365-the-value-offer-part-1/feed/</wfw:commentRss>
			<slash:comments>10</slash:comments>
		
		
			</item>
		<item>
		<title>SharePoint 2016 Upgrade: How to solve the “Feature is referenced in database but isn’t installed on the current farm” error</title>
		<link>https://blogit.create.pt/miguelisidoro/2018/09/16/sharepoint-farm-update-how-to-solve-the-feature-is-referenced-in-database-but-isnt-installed-on-the-current-farm-error-in-a-sharepoint-2016-farm/</link>
					<comments>https://blogit.create.pt/miguelisidoro/2018/09/16/sharepoint-farm-update-how-to-solve-the-feature-is-referenced-in-database-but-isnt-installed-on-the-current-farm-error-in-a-sharepoint-2016-farm/#comments</comments>
		
		<dc:creator><![CDATA[Miguel Isidoro]]></dc:creator>
		<pubDate>Sun, 16 Sep 2018 22:01:27 +0000</pubDate>
				<category><![CDATA[SharePoint 2016]]></category>
		<category><![CDATA[Deployment]]></category>
		<category><![CDATA[Migration]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Administration]]></category>
		<category><![CDATA[PSConfig]]></category>
		<category><![CDATA[Upgrade]]></category>
		<guid isPermaLink="false">https://blogit.create.pt/?p=7469</guid>

					<description><![CDATA[<p>Hello, Recently, I migrated a SharePoint 2010 farm to SharePoint 2016 and used an automated installation process using PowerShell and AutoSPInstaller to install the new SharePoint 2016 farm that ensured that the latest updates where applied, leaving the SharePoint 2016 farm updated and working properly (if you want to learn more about how to install a [&#8230;]</p>
<p>The post <a href="https://blogit.create.pt/miguelisidoro/2018/09/16/sharepoint-farm-update-how-to-solve-the-feature-is-referenced-in-database-but-isnt-installed-on-the-current-farm-error-in-a-sharepoint-2016-farm/">SharePoint 2016 Upgrade: How to solve the “Feature is referenced in database but isn’t installed on the current farm” error</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Hello,</p>
<p>Recently, I migrated a SharePoint 2010 farm to SharePoint 2016 and used an automated installation process using PowerShell and <a href="https://autospinstaller.com/" target="_blank" rel="noopener noreferrer">AutoSPInstaller</a> to install the new SharePoint 2016 farm that ensured that the latest updates where applied, leaving the SharePoint 2016 farm updated and working properly (if you want to learn more about how to install a SharePoint farm in an automated way using PowerShell, I invite you to click <a href="https://blogit.create.pt////miguelisidoro/2018/07/28/how-to-install-a-sharepoint-2016-farm-using-powershell-and-autospinstaller-part-1/" target="_blank" rel="noopener noreferrer">here</a> and <a href="https://blogit.create.pt////miguelisidoro/2018/07/28/how-to-install-a-sharepoint-2016-farm-using-powershell-and-autospinstaller-part-2/" target="_blank" rel="noopener noreferrer">here)</a>.</p>
<p>After installing the farm and migrating the web applications, new updates were installed in the farm (if you want to keep up with the latest SharePoint updates, click <a href="https://buildnumbers.wordpress.com/sharepoint/" target="_blank" rel="noopener noreferrer">here</a>) but when I ran the SharePoint Products and Configuration Wizard to ensure the new updates were properly installed (to know more about the need to run SharePoint Products and Configuration Wizard after a SharePoint farm update, click <a href="https://blogs.technet.microsoft.com/stefan_gossner" target="_blank" rel="noopener noreferrer">here</a>), I got an error that was preventing me to finish the update process.</p>
<p><strong>Important Note:</strong> Both source SharePoint 2010 and target SharePoint 2016 farms have Standard SharePoint licenses.</p>
<h1>The Problem</h1>
<p>After installing the updates and after running the SharePoint Products and Configuration, I was getting the following error:</p>
<p><img decoding="async" class="alignnone wp-image-7478 size-full" src="https://blogit.create.pt////wp-content/uploads/2018/09/SP2016_PSConfig_Error.jpg" alt="" width="621" height="536" srcset="https://blogit.create.pt/wp-content/uploads/2018/09/SP2016_PSConfig_Error.jpg 621w, https://blogit.create.pt/wp-content/uploads/2018/09/SP2016_PSConfig_Error-300x259.jpg 300w, https://blogit.create.pt/wp-content/uploads/2018/09/SP2016_PSConfig_Error-534x462.jpg 534w, https://blogit.create.pt/wp-content/uploads/2018/09/SP2016_PSConfig_Error-487x420.jpg 487w" sizes="(max-width: 621px) 100vw, 621px" /></p>
<p>The error details:</p>
<p><i>An exception of type Microsoft.SharePoint.PostSetupConfiguration.PostSetupConfigurationTaskException was thrown.  Additional exception information: </i></p>
<p><i>Feature (Name = [SharePoint Portal Server Status Indicator List template], Id = [065c78be-5231-477e-a972-14177cc5b3c7], Description = [SharePoint Portal Server Status Indicator List template], Install Location = </i><i><strong>[BizAppsListTemplates]) is referenced in database [Content_DB]</strong>, <strong>but isn&#8217;t installed on the current farm</strong></i><i>. The missing feature might cause upgrade to fail. If necessary, please install any solution that contains the feature and restart upgrade.        (EventID:ajxkh)</i></p>
<p><i>Feature (Name = [SharePoint Server Enterprise Site Features], Id = [0806d127-06e6-447a-980e-2e90b03101b8], Description = [<strong>Features such as the Visio Services, Access Services, and Excel Services applications included in the SharePoint Server Enterprise License.</strong>], </i><i>Install Location = <strong>[PremiumWeb]) is referenced in database Content_DB] but isn&#8217;t installed on the current farm</strong></i><i>. The missing feature might cause upgrade to fail. If necessary, please install any solution that contains the feature and restart upgrade.        (EventID:ajxkh)</i></p>
<p><i>Feature (Name = [SharePoint Portal Server Report Library], Id = [2510d73f-7109-4ccc-8a1c-314894deeb3a], Description = [SharePoint Portal Server Report Library], Install Location = </i><strong><i>[ReportListTemplate]) is referenced in database [Content_DB], but isn&#8217;t installed on the current farm</i></strong><i>. The missing feature might cause upgrade to fail. If necessary, please install any solution that contains the feature and restart upgrade.        (EventID:ajxkh)</i></p>
<p><i>Feature (Name = [InfoPath Forms Services Support], Id = [c88c4ff1-dbf5-4649-ad9f-c6c426ebcbf5], Description = </i><i>[InfoPath Forms Services Lists and Related Pages to Enable Presentation of Forms on the Server.], Install Location = [<strong>IPFSSiteFeatures]) is referenced in database Content_DB], but isn&#8217;t installed on the current farm</strong></i><i>. The missing feature might cause upgrade to fail. If necessary, please install any solution that contains the feature and restart upgrade.        (EventID:ajxkh)</i></p>
<p><i>Feature (Name = [Data Connections Feature], Id = [00bfea71-dbd7-4f72-b8cb-da7ac0440130], Description = [], Install Location = </i><strong><i>[DataConnectionLibrary]) is referenced in database Content_DB], but isn&#8217;t installed on the current farm</i></strong><i>. The missing feature might cause upgrade to fail. If necessary, please install any solution that contains the feature and restart upgrade.        (EventID:ajxkh)</i></p>
<p><i>Upgrade [SPContentDatabase Name=Content_DB] failed.        (EventID:an59t)</i></p>
<p><i>Exception: <strong>The upgraded database schema doesn&#8217;t match the TargetSchema</strong></i><i><strong>  </strong>      (EventID:an59t)</i></p>
<p><i>Upgrade Timer job is exiting due to exception: </i><i>Microsoft.SharePoint.Upgrade.SPUpgradeException: <strong>The upgraded database schema doesn&#8217;t match the TargetSchema</strong></i></p>
<p>There are two main problems here:</p>
<ul>
<li>There are references in the content database to SharePoint Enterprise Features (InfoPath Form Services, Visio Services, Excel Services, etc) &#8211; my guess here is that sometime along the way, the source SharePoint 2010 farm had an Enterprise SharePoint license and was downgraded to a Standard license, leaving behind however references to Enterprise features in the content database</li>
<li>There is a mismatch between the content database schema version and the version of SharePoint updates installed in the farm</li>
</ul>
<p>One additional symptom that confirms there is an upgrade issue is the Upgrade Status page in Central Administration that showed the upgrade status as Failed:</p>
<p><img decoding="async" class="alignnone wp-image-7480 size-full" src="https://blogit.create.pt////wp-content/uploads/2018/09/SP2016_Upgrade_Status_Error.jpg" alt="" width="1581" height="469" srcset="https://blogit.create.pt/wp-content/uploads/2018/09/SP2016_Upgrade_Status_Error.jpg 1581w, https://blogit.create.pt/wp-content/uploads/2018/09/SP2016_Upgrade_Status_Error-300x89.jpg 300w, https://blogit.create.pt/wp-content/uploads/2018/09/SP2016_Upgrade_Status_Error-768x228.jpg 768w, https://blogit.create.pt/wp-content/uploads/2018/09/SP2016_Upgrade_Status_Error-1024x304.jpg 1024w, https://blogit.create.pt/wp-content/uploads/2018/09/SP2016_Upgrade_Status_Error-696x206.jpg 696w, https://blogit.create.pt/wp-content/uploads/2018/09/SP2016_Upgrade_Status_Error-1068x317.jpg 1068w, https://blogit.create.pt/wp-content/uploads/2018/09/SP2016_Upgrade_Status_Error-1416x420.jpg 1416w" sizes="(max-width: 1581px) 100vw, 1581px" /></p>
<h1>The Solution</h1>
<p>The solution to this problem was a two part solution, both applied in the target SharePoint 2016 farm:</p>
<ul>
<li>Fixing the missing Enterprise features references in the content database</li>
<li>Fixing the content database schema version mismatch</li>
</ul>
<h2>Fixing the missing Enterprise features references in the content database</h2>
<p>To fix the problem with references to Enterprise SharePoint features, I used the <a href="https://github.com/achimismaili/featureadmin" target="_blank" rel="noopener noreferrer">SharePoint Feature Administration and Clean Up Tool</a>, which basically enables us to delete from the Farm, Web Application, Site Collection and sub sites any references to features that are not installed in the farm. The version I used was the version 2.4.8 that you can download <a href="https://github.com/achimismaili/featureadmin/raw/master/Releases/Sp2010/2.4.8/FeatureAdmin2010.zip" target="_blank" rel="noopener noreferrer">here</a>, that supports SharePoint 2016. The version 3.0, for some reason, didn&#8217;t detect the farm, which made it useless (maybe a beta version, not sure).</p>
<p>In this case, to remove the missing feature references, I used the SharePoint Feature Administration and Clean Up Tool to:</p>
<ul>
<li>Remove the missing features from the farm</li>
<li>Remove the missing features from the sub sites</li>
</ul>
<p>First, I removed the missing features from the farm, by removing the features marked as &#8220;Faulty&#8221; in the &#8220;Farm Feature Administration&#8221; tab, using the <strong>&#8220;Uninstall&#8221;</strong> button for each missing feature.</p>
<p><img decoding="async" class="alignnone size-full wp-image-7476" src="https://i2.wp.com/blogit.create.pt/wp-content/uploads/2018/09/SP2016_FeatureAdmin_Farm_Features_Error.jpg" alt="" width="1143" height="738" srcset="https://blogit.create.pt/wp-content/uploads/2018/09/SP2016_FeatureAdmin_Farm_Features_Error.jpg 1143w, https://blogit.create.pt/wp-content/uploads/2018/09/SP2016_FeatureAdmin_Farm_Features_Error-300x194.jpg 300w, https://blogit.create.pt/wp-content/uploads/2018/09/SP2016_FeatureAdmin_Farm_Features_Error-768x496.jpg 768w, https://blogit.create.pt/wp-content/uploads/2018/09/SP2016_FeatureAdmin_Farm_Features_Error-1024x661.jpg 1024w, https://blogit.create.pt/wp-content/uploads/2018/09/SP2016_FeatureAdmin_Farm_Features_Error-696x449.jpg 696w, https://blogit.create.pt/wp-content/uploads/2018/09/SP2016_FeatureAdmin_Farm_Features_Error-1068x690.jpg 1068w, https://blogit.create.pt/wp-content/uploads/2018/09/SP2016_FeatureAdmin_Farm_Features_Error-650x420.jpg 650w" sizes="(max-width: 1143px) 100vw, 1143px" /></p>
<p>After that, I removed the features marked as ERROR in the &#8220;Remove / deactivate features in the selected sites&#8221; tab, by selecting all the site collection faulty features and using the <strong>&#8220;Remove from selected SiteCollection&#8221;</strong> button.</p>
<p>Finally, for each site, I selected the faulty site features and removed them by using the <strong>&#8220;Remove from selected Site (SPWeb)&#8221;</strong> button.</p>
<p><img decoding="async" class="alignnone size-full wp-image-7477" src="https://blogit.create.pt////wp-content/uploads/2019/05/SP2016_FeatureAdmin_SiteCollection_Site_Features_Error.jpg" alt="" width="1182" height="672" /></p>
<h2>Fixing the content database schema version mismatch</h2>
<p>To fix the version mismatch between the content database schema version and the version of installed SharePoint updates, I executed the following PowerShell command (executed with &#8220;run as administrator&#8221;):</p>
<p><strong>Get-SPContentDatabase | Upgrade-SPContentDatabase</strong></p>
<p>After this, I ran the SharePoint Products and Configuration Wizard again, and this time, it ran successfully:</p>
<p><img decoding="async" class="alignnone size-full wp-image-7479" src="https://blogit.create.pt////wp-content/uploads/2018/09/SP2016_PSConfig_Success.jpg" alt="" width="617" height="535" srcset="https://blogit.create.pt/wp-content/uploads/2018/09/SP2016_PSConfig_Success.jpg 617w, https://blogit.create.pt/wp-content/uploads/2018/09/SP2016_PSConfig_Success-300x260.jpg 300w, https://blogit.create.pt/wp-content/uploads/2018/09/SP2016_PSConfig_Success-534x462.jpg 534w, https://blogit.create.pt/wp-content/uploads/2018/09/SP2016_PSConfig_Success-484x420.jpg 484w" sizes="(max-width: 617px) 100vw, 617px" /></p>
<p>To confirm if everything was OK, I checked the following pages in Central Administration in the target SharePoint 2016 farm:</p>
<ul>
<li>The Upgrade Status page</li>
<li>The Database Upgrade Status page</li>
</ul>
<p>In the Upgrade Status page, there is now a Succeeded upgrade status:</p>
<p><img decoding="async" class="alignnone size-full wp-image-7481" src="https://blogit.create.pt////wp-content/uploads/2018/09/SP2016_Upgrade_Status_Success.jpg" alt="" width="1441" height="624" srcset="https://blogit.create.pt/wp-content/uploads/2018/09/SP2016_Upgrade_Status_Success.jpg 1441w, https://blogit.create.pt/wp-content/uploads/2018/09/SP2016_Upgrade_Status_Success-300x130.jpg 300w, https://blogit.create.pt/wp-content/uploads/2018/09/SP2016_Upgrade_Status_Success-768x333.jpg 768w, https://blogit.create.pt/wp-content/uploads/2018/09/SP2016_Upgrade_Status_Success-1024x443.jpg 1024w, https://blogit.create.pt/wp-content/uploads/2018/09/SP2016_Upgrade_Status_Success-696x301.jpg 696w, https://blogit.create.pt/wp-content/uploads/2018/09/SP2016_Upgrade_Status_Success-1068x462.jpg 1068w, https://blogit.create.pt/wp-content/uploads/2018/09/SP2016_Upgrade_Status_Success-970x420.jpg 970w" sizes="(max-width: 1441px) 100vw, 1441px" /></p>
<p>In the Database Upgrade Status page, there is an indication of &#8220;No action required&#8221; for all content databases in the farm, meaning that all databases were properly upgraded and the respective schema version is the same as the installed SharePoint updates:</p>
<p><img decoding="async" class="alignnone size-full wp-image-7475" src="https://blogit.create.pt////wp-content/uploads/2018/09/SP2016_Database_Upgrade_Status_Success.jpg" alt="" width="1408" height="561" srcset="https://blogit.create.pt/wp-content/uploads/2018/09/SP2016_Database_Upgrade_Status_Success.jpg 1408w, https://blogit.create.pt/wp-content/uploads/2018/09/SP2016_Database_Upgrade_Status_Success-300x120.jpg 300w, https://blogit.create.pt/wp-content/uploads/2018/09/SP2016_Database_Upgrade_Status_Success-768x306.jpg 768w, https://blogit.create.pt/wp-content/uploads/2018/09/SP2016_Database_Upgrade_Status_Success-1024x408.jpg 1024w, https://blogit.create.pt/wp-content/uploads/2018/09/SP2016_Database_Upgrade_Status_Success-696x277.jpg 696w, https://blogit.create.pt/wp-content/uploads/2018/09/SP2016_Database_Upgrade_Status_Success-1068x426.jpg 1068w, https://blogit.create.pt/wp-content/uploads/2018/09/SP2016_Database_Upgrade_Status_Success-1054x420.jpg 1054w" sizes="(max-width: 1408px) 100vw, 1408px" /></p>
<p>Hope this helps!</p>
<h1>Related Articles</h1>
<p>To learn why your business should migrate to SharePoint Online and Office 365, click <a href="https://blogit.create.pt////miguelisidoro/2019/07/29/why-your-business-should-migrate-to-sharepoint-online-and-office-365-the-value-offer-part-1/" target="_blank" rel="noreferrer noopener">here</a> and <a href="https://blogit.create.pt////miguelisidoro/2019/07/29/why-your-business-should-migrate-to-sharepoint-online-and-office-365-the-value-offer-part-2/" target="_blank" rel="noreferrer noopener">here</a>.</p>
<p>If you want to convert your tenant&#8217;s root classic site into a modern SharePoint site, click <a href="https://blogit.create.pt////miguelisidoro/2019/08/27/how-to-modernize-your-tenant-root-site-collection-in-office-365-using-invoke-spositeswap/" target="_blank" rel="noreferrer noopener">here</a>.</p>
<p>In the meantime, SharePoint 2019 RTM is already out there! If you want to know all about the new features available in the new SharePoint Server release, click <a href="https://blogit.create.pt////miguelisidoro/2018/11/01/meet-the-new-modern-sharepoint-server-sharepoint-2019-rtm-is-here/" target="_blank" rel="noopener noreferrer">here</a>.</p>
<p>If you are a SharePoint administrator or a SharePoint developer who wants to learn more about how to install a SharePoint 2019 farm in an automated way using PowerShell, I invite you to click <a href="https://blogit.create.pt////miguelisidoro/2018/12/09/how-to-install-a-sharepoint-2019-farm-using-powershell-and-autospinstaller-part-1/" target="_blank" rel="noopener noreferrer">here</a> and <a href="https://blogit.create.pt////miguelisidoro/2018/12/09/how-to-install-a-sharepoint-2019-farm-using-powershell-and-autospinstaller-part-2/" target="_blank" rel="noopener noreferrer">here</a>.</p>
<p>If you want to learn how to upgrade a SharePoint 2013 farm to SharePoint 2019, click <a href="https://blogit.create.pt////miguelisidoro/2019/03/06/how-to-upgrade-from-sharepoint-2013-to-sharepoint-2019-step-by-step-part-1/" target="_blank" rel="noreferrer noopener">here </a>and <a href="https://blogit.create.pt////miguelisidoro/2019/03/06/how-to-upgrade-from-sharepoint-2013-to-sharepoint-2019-step-by-step-part-2/" target="_blank" rel="noreferrer noopener">here</a>.</p>
<p>If you want to learn all the steps and precautions necessary to successfully keep your SharePoint farm updated and be ready to start your move to the cloud, click <a href="https://blogit.create.pt////miguelisidoro/2019/04/08/how-to-install-sharepoint-cumulative-updates-in-a-sharepoint-farm-step-by-step/" target="_blank" rel="noreferrer noopener">here</a>.</p>
<p>If you learn how to greatly speed up your SharePoint farm update process to ensure your SharePoint farm keeps updated and you stay one step closer to start your move to the cloud, click <a href="https://blogit.create.pt////miguelisidoro/2019/05/02/how-to-speed-up-the-installation-of-sharepoint-cumulative-updates-using-powershell-step-by-step/" target="_blank" rel="noreferrer noopener" aria-label="here (opens in a new tab)">here</a>.</p>
<p>If SharePoint 2019 is still not an option, you can learn more about how to install a SharePoint 2016 farm in an automated way using PowerShell, click <a href="https://blogit.create.pt////miguelisidoro/2018/07/28/how-to-install-a-sharepoint-2016-farm-using-powershell-and-autospinstaller-part-1/" target="_blank" rel="noreferrer noopener">here</a> and <a href="https://blogit.create.pt////miguelisidoro/2018/07/28/how-to-install-a-sharepoint-2016-farm-using-powershell-and-autospinstaller-part-2/" target="_blank" rel="noreferrer noopener">here</a>.</p>
<p>If you are involved in a SharePoint upgrade and want to learn more about the upgrade process, click <a href="https://blogit.create.pt////miguelisidoro/2019/02/04/sharepoint-upgrade-upgrading-a-sharepoint-2010-farm-to-sharepoint-2016-step-by-step-part-1/" target="_blank" rel="noreferrer noopener">here </a>and <a href="https://blogit.create.pt////miguelisidoro/2019/02/04/sharepoint-upgrade-upgrading-a-sharepoint-2010-farm-to-sharepoint-2016-step-by-step-part-2/" target="_blank" rel="noreferrer noopener">here</a>.</p>
<p>If you are new to SharePoint and Office 365 and want to learn all about it, take a look at these <a href="https://blogit.create.pt////miguelisidoro/2018/10/17/sharepoint-and-office-365-learning-resources/" target="_blank" rel="noopener noreferrer">learning resources</a>.</p>
<p>If you are work in a large organization who is using Office 365 or thinking to move to Office 365 and is considering between a single or multiple Office 365 tenants, I invite you to read <a href="https://blogit.create.pt////miguelisidoro/2019/01/07/pros-and-cons-of-single-tenant-vs-multiple-tenants-in-office-365/" target="_blank" rel="noreferrer noopener">this article</a>.</p>
<p>If you want to know all about the latest SharePoint and Office 365 announcements from SharePoint Conference 2019, click <a href="https://blogit.create.pt////miguelisidoro/2019/06/05/whats-new-for-sharepoint-and-office-365-from-sharepoint-conference-2019-part-1/" target="_blank" rel="noreferrer noopener">here </a>and <a href="https://blogit.create.pt////miguelisidoro/2019/06/05/whats-new-for-sharepoint-and-office-365-from-sharepoint-conference-2019-part-2/" target="_blank" rel="noreferrer noopener">here</a>.</p>
<p>Happy SharePointing!</p>
<p>The post <a href="https://blogit.create.pt/miguelisidoro/2018/09/16/sharepoint-farm-update-how-to-solve-the-feature-is-referenced-in-database-but-isnt-installed-on-the-current-farm-error-in-a-sharepoint-2016-farm/">SharePoint 2016 Upgrade: How to solve the “Feature is referenced in database but isn’t installed on the current farm” error</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blogit.create.pt/miguelisidoro/2018/09/16/sharepoint-farm-update-how-to-solve-the-feature-is-referenced-in-database-but-isnt-installed-on-the-current-farm-error-in-a-sharepoint-2016-farm/feed/</wfw:commentRss>
			<slash:comments>2</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 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 Scenarios &#8211; Online, On-Premises or Hybrid!?</title>
		<link>https://blogit.create.pt/fabiocarvalho/2017/02/19/sharepoint-scenarios-online-on-premises-or-hybrid/</link>
					<comments>https://blogit.create.pt/fabiocarvalho/2017/02/19/sharepoint-scenarios-online-on-premises-or-hybrid/#comments</comments>
		
		<dc:creator><![CDATA[Fábio Carvalho]]></dc:creator>
		<pubDate>Sun, 19 Feb 2017 13:19:05 +0000</pubDate>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Architecture]]></category>
		<category><![CDATA[Migration]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Administration]]></category>
		<category><![CDATA[Hybrid Solution]]></category>
		<category><![CDATA[SharePoint 2013]]></category>
		<category><![CDATA[SharePoint 2016]]></category>
		<category><![CDATA[SharePoint Architecture]]></category>
		<category><![CDATA[SharePoint Hybrid Solution]]></category>
		<guid isPermaLink="false">http://blogit.create.pt/fabiocarvalho/?p=1891</guid>

					<description><![CDATA[<p>Hey Everyone!!! Today i&#8217;m going to talk about SharePoint Scenarios and what are the main difference between this three types of scenarios and what scenario should be the option for your environment&#8230; So, the three types of architecture scenario that you can have on your SharePoint environment are the following: What should you choose?! Well in [&#8230;]</p>
<p>The post <a href="https://blogit.create.pt/fabiocarvalho/2017/02/19/sharepoint-scenarios-online-on-premises-or-hybrid/">SharePoint Scenarios &#8211; Online, On-Premises or Hybrid!?</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&#8217;m going to talk about <strong>SharePoint Scenarios</strong> and what are the main difference between this <strong>three types of scenarios</strong> and what scenario should be the option for your environment&#8230;</p>
<p>So, the <strong>three</strong> types of <strong>architecture</strong> scenario that you can have on your <strong>SharePoint environment</strong> are the following:</p>
<p><img decoding="async" class="size-full wp-image-1981 aligncenter" src="http://blogit.create.pt/fabiocarvalho/wp-content/uploads/sites/271/2017/02/ee.png" alt="" width="687" height="276" srcset="https://blogit.create.pt/wp-content/uploads/2017/02/ee.png 687w, https://blogit.create.pt/wp-content/uploads/2017/02/ee-300x121.png 300w" sizes="(max-width: 687px) 100vw, 687px" /></p>
<p>What should you choose?! Well in fact there are<strong> so many question</strong> that you need answered <strong>before take an decision</strong>!?</p>
<p><img decoding="async" class="aligncenter size-full wp-image-2031" src="http://blogit.create.pt/fabiocarvalho/wp-content/uploads/sites/271/2017/02/Capture-2.png" alt="" width="797" height="356" srcset="https://blogit.create.pt/wp-content/uploads/2017/02/Capture-2.png 797w, https://blogit.create.pt/wp-content/uploads/2017/02/Capture-2-300x134.png 300w, https://blogit.create.pt/wp-content/uploads/2017/02/Capture-2-768x343.png 768w, https://blogit.create.pt/wp-content/uploads/2017/02/Capture-2-696x311.png 696w" sizes="(max-width: 797px) 100vw, 797px" /></p>
<p>&nbsp;</p>
<p>It isn&#8217;t easy take a <strong>decision</strong>, let&#8217;s analyse <strong>what are the main benefits each architecture</strong>:</p>
<h4><strong><span style="color: #800000">SharePoint On-Premises:</span></strong></h4>
<ul>
<li><span class="tx">Private Cloud</span></li>
<li><span class="tx">Dedicated environment</span></li>
<li><span class="tx">Internally hosted</span></li>
<li><span class="tx">Internally managed</span></li>
<li><span class="tx">Internal designed</span></li>
</ul>
<table border="0" width="400" cellspacing="0" cellpadding="2">
<tbody>
<tr>
<td style="text-align: center" valign="top" width="200"><span style="color: #008000"><strong> Pros</strong></span></td>
<td style="text-align: center" valign="top" width="200"><strong><span style="color: #ff0000">Cons</span></strong></td>
</tr>
<tr>
<td valign="top" width="200">Control Performance</td>
<td valign="top" width="200">Cost of internal resources (staff, hardware, software, etc)</td>
</tr>
<tr>
<td valign="top" width="200">Scale Up and Scale Out</td>
<td valign="top" width="200">Additional Geographic redundancy costs</td>
</tr>
<tr>
<td valign="top" width="200">Reduces Bandwidth requirements</td>
<td valign="top" width="200">Disaster Recovery dependent on internal capabilities</td>
</tr>
<tr>
<td valign="top" width="200">Full Customization</td>
<td valign="top" width="200">Scale Up/Out Cost( SW/HW)</td>
</tr>
<tr>
<td valign="top" width="200">Full Server and SQL Database</td>
<td valign="top" width="200">Patching Servers/farms</td>
</tr>
<tr>
<td valign="top" width="200">Migrate as Needed</td>
<td valign="top" width="200">Extra configurations for External Collaboration</td>
</tr>
<tr>
<td valign="top" width="200">Seamless Single Sign on with Corporate Active Directory</td>
<td valign="top" width="200"></td>
</tr>
</tbody>
</table>
<ul>
<li>Migration Flow:</li>
</ul>
<p><img decoding="async" class="size-full wp-image-2081 aligncenter" src="http://blogit.create.pt/fabiocarvalho/wp-content/uploads/sites/271/2017/02/Capture-3.png" alt="" width="249" height="73" /></p>
<h4><span style="color: #800000"><strong>SharePoint Online:</strong></span></h4>
<ul>
<li><span class="tx">Public Cloud</span></li>
<li>Partially or fully dedicated</li>
<li>Externally hosted</li>
<li>Externally or Internally managed</li>
<li><span class="tx">Internally managed</span></li>
<li>Minimal customization</li>
</ul>
<p><span style="color: #800000">Cloud benefits according to cloud users?</span></p>
<ul>
<li><strong>Increase efficiency (55 %)</strong></li>
<li><strong>Improved employee mobility (49 %)</strong></li>
<li><strong>Increased ability to Innovate (32 %)</strong></li>
<li><strong>Freed current IT staff for other projects (31 %)</strong></li>
<li><strong>Reduce IT operation costs (25 %)</strong></li>
<li><strong>Enabled us to offer new products/ services (24 %)</strong></li>
</ul>
<table border="0" width="400" cellspacing="0" cellpadding="2">
<tbody>
<tr>
<td style="text-align: center" valign="top" width="200"><span style="color: #008000"><strong> Pros</strong></span></td>
<td style="text-align: center" valign="top" width="200"><strong><span style="color: #ff0000">Cons</span></strong></td>
</tr>
<tr>
<td valign="top" width="200">Uptime 99.99%</td>
<td valign="top" width="200">More ISP Bandwidth</td>
</tr>
<tr>
<td valign="top" width="200">Multiple Data centers</td>
<td valign="top" width="200">Limited Customizations</td>
</tr>
<tr>
<td valign="top" width="200">Shorted release cycle</td>
<td valign="top" width="200">Recovery SLAs</td>
</tr>
<tr>
<td valign="top" width="200">Geographically redundant and Scalability</td>
<td valign="top" width="200">No Server access</td>
</tr>
<tr>
<td valign="top" width="200">Managed Services ( SaaS)</td>
<td valign="top" width="200"></td>
</tr>
<tr>
<td valign="top" width="200">Pay as you go ( Low Cost )</td>
<td valign="top" width="200"></td>
</tr>
<tr>
<td valign="top" width="200">Reduced impact on internal IT resources</td>
<td valign="top" width="200"></td>
</tr>
</tbody>
</table>
<ul>
<li>Migration Flow:</li>
</ul>
<p><img decoding="async" class="aligncenter size-full wp-image-2131" src="http://blogit.create.pt/fabiocarvalho/wp-content/uploads/sites/271/2017/02/Capture-4.png" alt="" width="211" height="164" /></p>
<h4><strong><span style="color: #800000">SharePoint Hybrid Solution:</span></strong></h4>
<p><img decoding="async" class="aligncenter size-full wp-image-2191" src="http://blogit.create.pt/fabiocarvalho/wp-content/uploads/sites/271/2017/02/Picture2.png" alt="" width="422" height="147" srcset="https://blogit.create.pt/wp-content/uploads/2017/02/Picture2.png 422w, https://blogit.create.pt/wp-content/uploads/2017/02/Picture2-300x105.png 300w" sizes="(max-width: 422px) 100vw, 422px" /></p>
<p><span style="color: #800000">What is Hybrid SharePoint?</span></p>
<blockquote><p>&#8220;Productivity services in <strong>SharePoint Online (Office 365)</strong> which are securely integrated with on-premises <strong>SharePoint Server 2016</strong> to provide unified functionality and access to data.”</p></blockquote>
<p><span style="color: #800000">Why considering a Hybrid SharePoint Solution?</span></p>
<ul>
<li>Large existing investments (customized SP deployments w/lots of data and settings,custom solutions, LOB systems, etc…)</li>
<li>Functionalities I can’t do in the Cloud that i can do on premises;</li>
<li>Keep Sensitive Data on Premise</li>
<li>Collaboration with External Partners</li>
<li>Capacity Flexibility</li>
<li>Intranet – Extranet</li>
<li>Geo Location</li>
</ul>
<p><span style="color: #800000">Same Benefits of Hybrid SharePoint Solution?</span></p>
<p><img decoding="async" class="aligncenter size-full wp-image-2171" src="http://blogit.create.pt/fabiocarvalho/wp-content/uploads/sites/271/2017/02/Capture-5.png" alt="" width="506" height="254" srcset="https://blogit.create.pt/wp-content/uploads/2017/02/Capture-5.png 506w, https://blogit.create.pt/wp-content/uploads/2017/02/Capture-5-300x151.png 300w" sizes="(max-width: 506px) 100vw, 506px" /></p>
<p><strong>SharePoint Business to Business Collaboration: Extranet for Partners with Office 365</strong></p>
<blockquote><p><i>“on-premises</i> extranet site involves complex configuration to establish security measures and governance, including granting access inside the corporate firewall, and expensive initial and on-going cost….SharePoint Online, partners connect directly to a members-only site in Office 365, without access to the corporate on-premises environment or any other Office 365 site. Office 365 Extranet sites can be accessed anywhere…”</p></blockquote>
<p><strong>SharePoint hybrid sites and search</strong></p>
<blockquote><p>“A hybrid environment can help your company get started in the cloud, taking a first step to explore the cloud functionality at own your pace. It also enables enterprise users to be connected from almost anywhere to the resources and content they need&#8230; SharePoint hybrid features, you can consolidate search results between SharePoint Server and Office 365, consolidate user profiles in Office 365, and offload your users&#8217; personal storage to the cloud…”</p></blockquote>
<ul>
<li>Migration/Interactions Flow:</li>
</ul>
<blockquote><p><img decoding="async" class="aligncenter size-full wp-image-2201" src="http://blogit.create.pt/fabiocarvalho/wp-content/uploads/sites/271/2017/02/Capture-6.png" alt="" width="278" height="169" /></p></blockquote>
<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>&nbsp;</p>
<p>The post <a href="https://blogit.create.pt/fabiocarvalho/2017/02/19/sharepoint-scenarios-online-on-premises-or-hybrid/">SharePoint Scenarios &#8211; Online, On-Premises or Hybrid!?</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/19/sharepoint-scenarios-online-on-premises-or-hybrid/feed/</wfw:commentRss>
			<slash:comments>2</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. Thanks Fábio Carvalho SharePoint Consultant &#124;create&#124;it&#124;</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>
