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

<channel>
	<title>SharePoint Archives - Blog IT</title>
	<atom:link href="https://blogit.create.pt/category/sharepoint/feed/" rel="self" type="application/rss+xml" />
	<link>https://blogit.create.pt/category/sharepoint/</link>
	<description>Create IT blogger community</description>
	<lastBuildDate>Wed, 18 Feb 2026 10:35:14 +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 protect sensitive information in SharePoint Online using Purview Sensitivity Labels</title>
		<link>https://blogit.create.pt/miguelisidoro/2024/02/06/how-to-protect-sensitive-information-in-sharepoint-online-using-purview-sensitivity-labels/</link>
					<comments>https://blogit.create.pt/miguelisidoro/2024/02/06/how-to-protect-sensitive-information-in-sharepoint-online-using-purview-sensitivity-labels/#comments</comments>
		
		<dc:creator><![CDATA[Miguel Isidoro]]></dc:creator>
		<pubDate>Tue, 06 Feb 2024 15:30:35 +0000</pubDate>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[SharePoint Online]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[#microsoft365]]></category>
		<category><![CDATA[#office365]]></category>
		<category><![CDATA[#purview]]></category>
		<category><![CDATA[#security]]></category>
		<category><![CDATA[#sharepoint]]></category>
		<category><![CDATA[#sharepointonline]]></category>
		<guid isPermaLink="false">https://blogit.create.pt/?p=12970</guid>

					<description><![CDATA[<p>This post explains how we can use Microsoft Purview Sensitivity Labels to protect sensitive information stored in a SharePoint Online site. What are Sensitivity Labels? Microsoft Purview Sensitivity Labels are a data classification and protection system that helps organizations identify, classify, and protect sensitive information across Microsoft 365 and other services. They help you: Here [&#8230;]</p>
<p>The post <a href="https://blogit.create.pt/miguelisidoro/2024/02/06/how-to-protect-sensitive-information-in-sharepoint-online-using-purview-sensitivity-labels/">How to protect sensitive information in SharePoint Online using Purview Sensitivity Labels</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>This post explains how we can use Microsoft Purview Sensitivity Labels to protect sensitive information stored in a SharePoint Online site.</p>



<h2 class="wp-block-heading">What are Sensitivity Labels?</h2>



<p>Microsoft Purview Sensitivity Labels are a data classification and protection system that helps organizations identify, classify, and protect sensitive information across Microsoft 365 and other services. They help you:</p>



<ul class="wp-block-list">
<li><strong>Classify your data:</strong>&nbsp;Define different levels of sensitivity for your data, such as Confidential, Highly Confidential, and Public.</li>



<li><strong>Protect your data:</strong>&nbsp;Apply protection settings to different levels of sensitivity, such as encryption, access restrictions, and data loss prevention.</li>



<li><strong>Track your data:</strong>&nbsp;Track the movement of sensitive data and identify potential data breaches.</li>
</ul>



<p>Here are some of the benefits of using Microsoft Purview Sensitivity Labels:</p>



<ul class="wp-block-list">
<li><strong>Reduces the risk of data breaches:</strong>&nbsp;By classifying and protecting your sensitive data, you can make it more difficult for unauthorized users to access it.</li>



<li><strong>Improves compliance:</strong>&nbsp;Sensitivity labels can help you meet compliance requirements for data privacy and security.</li>



<li><strong>Increases productivity:</strong>&nbsp;By making it easier for users to identify and protect sensitive data, you can help them be more productive.</li>
</ul>



<h2 class="wp-block-heading">Allow the creation of Sensitivity Labels</h2>



<p>The creation of Sensitivity Labels, may be disabled in your Office 365 tenant. To ensure you can create Sensitivity Labels, run the following script in a PowerShell window. Make sure to change the variables to your environment accordingly.</p>


<div class="wp-block-syntaxhighlighter-code "><pre class="brush: plain; title: ; notranslate">
$AdminCenterURL = &quot;https://dev-admin.sharepoint.com&quot;
Connect-SPOService -Url $AdminCenterURL
Set-SPOTenant -EnableAIPIntegration $true

Import-Module AzureAD
Connect-AzureAD
$Setting = Get-AzureADDirectorySetting -Id (Get-AzureADDirectorySetting | where -Property DisplayName -Value &quot;Group.Unified&quot; -EQ).id
$Setting&#x5B;&quot;EnableMIPLabels&quot;] = &quot;True&quot;
Set-AzureADDirectorySetting -Id $Setting.Id -DirectorySetting $Setting

</pre></div>


<p>If you don&#8217;t have the AzureAD PowerShell module installed, install it before executing the script by running:</p>


<div class="wp-block-syntaxhighlighter-code "><pre class="brush: plain; title: ; notranslate">
Install-Module AzureAD -AllowClobber
</pre></div>


<h2 class="wp-block-heading">Creating a Sensitivity Label</h2>



<p>To create a Sensitivity Label, follow the following steps:</p>



<ul class="wp-block-list">
<li>Access the Microsoft Purview compliance portal at <a href="https://compliance.microsoft.com/">https://compliance.microsoft.com/</a> with your Microsoft 365 credentiais.</li>



<li>Select Information protection &#8211;&gt; Labels</li>
</ul>



<figure class="wp-block-image size-full"><img fetchpriority="high" decoding="async" width="329" height="717" src="https://blogit.create.pt/wp-content/uploads/2024/02/Purview_Labels.jpg" alt="" class="wp-image-12993" srcset="https://blogit.create.pt/wp-content/uploads/2024/02/Purview_Labels.jpg 329w, https://blogit.create.pt/wp-content/uploads/2024/02/Purview_Labels-138x300.jpg 138w, https://blogit.create.pt/wp-content/uploads/2024/02/Purview_Labels-193x420.jpg 193w" sizes="(max-width: 329px) 100vw, 329px" /></figure>



<ul class="wp-block-list">
<li>Select &#8220;Create a label&#8221;</li>
</ul>



<figure class="wp-block-image size-full"><img decoding="async" width="521" height="308" src="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label.jpg" alt="" class="wp-image-12995" srcset="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label.jpg 521w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label-300x177.jpg 300w" sizes="(max-width: 521px) 100vw, 521px" /></figure>



<ul class="wp-block-list">
<li>Give the label a name. Example: Confidential. In the end, click Next.</li>
</ul>



<figure class="wp-block-image size-large"><img decoding="async" width="1024" height="770" src="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_2-1024x770.jpg" alt="" class="wp-image-12999" srcset="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_2-1024x770.jpg 1024w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_2-300x226.jpg 300w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_2-768x577.jpg 768w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_2-696x523.jpg 696w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_2-1068x803.jpg 1068w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_2-559x420.jpg 559w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_2-80x60.jpg 80w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_2-265x198.jpg 265w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_2.jpg 1100w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<ul class="wp-block-list">
<li>Define the scope of the label. Choose both &#8220;Items&#8221; and &#8220;Groups &amp; sites&#8221;. This will allow you to apply the label to both documents and SharePoint sites. In this post, I will focus on SharePoint sites.</li>
</ul>



<figure class="wp-block-image size-large"><img decoding="async" width="1024" height="749" src="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_3-1024x749.jpg" alt="" class="wp-image-13001" srcset="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_3-1024x749.jpg 1024w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_3-300x219.jpg 300w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_3-768x562.jpg 768w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_3-696x509.jpg 696w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_3-1068x781.jpg 1068w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_3-574x420.jpg 574w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_3-80x60.jpg 80w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_3.jpg 1118w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<ul class="wp-block-list">
<li>Choose the protection settings for the labeled items. Select &#8220;Apply or remove encryption&#8221;. If you want to apply a content marking to the labeled items, select &#8220;Apply content marking&#8221;.</li>
</ul>



<figure class="wp-block-image size-large"><img decoding="async" width="1024" height="761" src="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_4-1024x761.jpg" alt="" class="wp-image-13003" srcset="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_4-1024x761.jpg 1024w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_4-300x223.jpg 300w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_4-768x571.jpg 768w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_4-696x517.jpg 696w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_4-1068x794.jpg 1068w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_4-565x420.jpg 565w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_4-80x60.jpg 80w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_4-265x198.jpg 265w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_4.jpg 1102w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<ul class="wp-block-list">
<li>Define the encryption settings. Select &#8220;Configure encryption settings&#8221; with the following parameters:
<ul class="wp-block-list">
<li>Assign permissions now or let users decide? : Assign permissions now. With this setting, when the label is applied, the permissions we will define below will be applied</li>



<li>User access to content expires: Never. With this setting, users will not loose access after a period of time.</li>



<li>Allow offline access: Always. With this setting, users may edit documents offline.</li>
</ul>
</li>
</ul>



<p>In the end, select &#8220;Add permissions&#8221;.</p>



<figure class="wp-block-image size-large"><img decoding="async" width="1024" height="761" src="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_5-1024x761.jpg" alt="" class="wp-image-13012" srcset="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_5-1024x761.jpg 1024w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_5-300x223.jpg 300w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_5-768x570.jpg 768w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_5-696x517.jpg 696w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_5-1068x793.jpg 1068w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_5-565x420.jpg 565w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_5-80x60.jpg 80w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_5-265x198.jpg 265w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_5.jpg 1104w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<ul class="wp-block-list">
<li>For this example, for simplicity, in the &#8220;Assign permissions&#8221; screen, select &#8220;Add any authenticated users&#8221;.</li>
</ul>



<figure class="wp-block-image size-full"><img decoding="async" width="605" height="423" src="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_6.jpg" alt="" class="wp-image-13018" srcset="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_6.jpg 605w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_6-300x210.jpg 300w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_6-601x420.jpg 601w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_6-100x70.jpg 100w" sizes="(max-width: 605px) 100vw, 605px" /></figure>



<ul class="wp-block-list">
<li>Select &#8220;Choose permissions&#8221;</li>
</ul>



<figure class="wp-block-image size-full"><img decoding="async" width="583" height="162" src="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_7.jpg" alt="" class="wp-image-13020" srcset="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_7.jpg 583w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_7-300x83.jpg 300w" sizes="(max-width: 583px) 100vw, 583px" /></figure>



<ul class="wp-block-list">
<li>Select &#8220;Viewer&#8221; permission and click &#8220;Save&#8221; twice to close the &#8220;Assign permission&#8221; window.</li>
</ul>



<figure class="wp-block-image size-full"><img decoding="async" width="594" height="809" src="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_8.jpg" alt="" class="wp-image-13021" srcset="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_8.jpg 594w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_8-220x300.jpg 220w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_8-308x420.jpg 308w" sizes="(max-width: 594px) 100vw, 594px" /></figure>



<p>With this permission, we are granting all authenticated users the Viewer permissions which will grant readonly permissions to the documents classified with this label.</p>



<ul class="wp-block-list">
<li>Next, we want to add edit permissions to a group of users. Select &#8220;Assign permission&#8221; again.</li>
</ul>



<figure class="wp-block-image size-large"><img decoding="async" width="1024" height="246" src="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_9-1024x246.jpg" alt="" class="wp-image-13025" srcset="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_9-1024x246.jpg 1024w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_9-300x72.jpg 300w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_9-768x185.jpg 768w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_9-696x167.jpg 696w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_9.jpg 1043w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<ul class="wp-block-list">
<li>Select &#8220;Add users or groups&#8221; and choose a group of users you want to assign edit permissions to.</li>
</ul>



<figure class="wp-block-image size-full"><img decoding="async" width="836" height="620" src="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_10.jpg" alt="" class="wp-image-13027" srcset="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_10.jpg 836w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_10-300x222.jpg 300w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_10-768x570.jpg 768w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_10-696x516.jpg 696w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_10-566x420.jpg 566w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_10-80x60.jpg 80w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_10-265x198.jpg 265w" sizes="(max-width: 836px) 100vw, 836px" /></figure>



<ul class="wp-block-list">
<li>Select the &#8220;Reviewer&#8221; permission</li>
</ul>



<figure class="wp-block-image size-full"><img decoding="async" width="499" height="653" src="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_11.jpg" alt="" class="wp-image-13033" srcset="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_11.jpg 499w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_11-229x300.jpg 229w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_11-321x420.jpg 321w" sizes="(max-width: 499px) 100vw, 499px" /></figure>



<ul class="wp-block-list">
<li>Confirm all permissions and click Next.</li>
</ul>



<figure class="wp-block-image size-full"><img decoding="async" width="787" height="456" src="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_12.jpg" alt="" class="wp-image-13031" srcset="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_12.jpg 787w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_12-300x174.jpg 300w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_12-768x445.jpg 768w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_12-696x403.jpg 696w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_12-725x420.jpg 725w" sizes="(max-width: 787px) 100vw, 787px" /></figure>



<ul class="wp-block-list">
<li>Don&#8217;t select the option &#8220;Auto-labeling for files and emails&#8221;. Click Next. </li>
</ul>



<figure class="wp-block-image size-full"><img decoding="async" width="743" height="773" src="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_13.jpg" alt="" class="wp-image-13039" srcset="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_13.jpg 743w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_13-288x300.jpg 288w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_13-696x724.jpg 696w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_13-404x420.jpg 404w" sizes="(max-width: 743px) 100vw, 743px" /></figure>



<ul class="wp-block-list">
<li>Select &#8220;Privacy and external user access&#8221; and &#8220;External sharing and Conditional Access&#8221; options.</li>
</ul>



<figure class="wp-block-image size-full"><img decoding="async" width="761" height="238" src="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_14.jpg" alt="" class="wp-image-13042" srcset="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_14.jpg 761w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_14-300x94.jpg 300w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_14-696x218.jpg 696w" sizes="(max-width: 761px) 100vw, 761px" /></figure>



<ul class="wp-block-list">
<li>In &#8220;Privacy&#8221; section, select &#8220;Private&#8221;. This way, only team owners and members can acess the group or team. In the &#8220;External user access&#8221;, don&#8217;t select the option &#8220;Let Microsoft 365 Group owners add people outside your organization to the group as guests.&#8221;. This way, only users from within the organization can access the SharePoint site.</li>
</ul>



<figure class="wp-block-image size-full"><img decoding="async" width="747" height="514" src="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_15.jpg" alt="" class="wp-image-13043" srcset="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_15.jpg 747w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_15-300x206.jpg 300w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_15-218x150.jpg 218w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_15-696x479.jpg 696w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_15-610x420.jpg 610w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_15-100x70.jpg 100w" sizes="(max-width: 747px) 100vw, 747px" /></figure>



<ul class="wp-block-list">
<li>In &#8220;Define external sharing and conditional access settings&#8221;, select &#8220;Control external sharing from labeled SharePoint sites&#8221; and &#8220;Use Microsoft Entra Conditional Access to protect labeled SharePoint sites&#8221;. In the &#8220;Control external sharing from labeled SharePoint sites&#8221; section, select &#8220;Only people in your organization&#8221;. This way, SharePoint sites labeled with this label, will only be acessed by and shared with people in your organization. In the &#8220;Use Microsoft Entra Conditional Access to protect labeled SharePoint sites&#8221;, select &#8220;Allow limited, web-only access&#8221;. This will only allow users from unmanaged devices (devices not managed by your organization, typically personal devices) to access documents in the labeled SharePoint sites using the browser (not being to synchronize the document libraries for offline access, download documents or open documents in the Office desktop applications).</li>
</ul>



<figure class="wp-block-image size-full"><img decoding="async" width="760" height="827" src="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_16.jpg" alt="" class="wp-image-13048" srcset="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_16.jpg 760w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_16-276x300.jpg 276w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_16-696x757.jpg 696w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_16-386x420.jpg 386w" sizes="(max-width: 760px) 100vw, 760px" /></figure>



<ul class="wp-block-list">
<li>In the &#8220;Auto-labeling for schematized data assets (preview)&#8221; section, leave the option unselected and click &#8220;Next&#8221;.</li>
</ul>



<figure class="wp-block-image size-full"><img decoding="async" width="763" height="242" src="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_17.jpg" alt="" class="wp-image-13058" srcset="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_17.jpg 763w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_17-300x95.jpg 300w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_17-696x221.jpg 696w" sizes="(max-width: 763px) 100vw, 763px" /></figure>



<ul class="wp-block-list">
<li>Review the label settings and click &#8220;Create label&#8221; to finish the label creation process.</li>
</ul>



<figure class="wp-block-image size-full"><img decoding="async" width="321" height="810" src="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_18.jpg" alt="" class="wp-image-13062" srcset="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_18.jpg 321w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_18-119x300.jpg 119w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_18-166x420.jpg 166w" sizes="(max-width: 321px) 100vw, 321px" /></figure>



<h2 class="wp-block-heading">Publish a Sensitivity Label</h2>



<p>In order for a label to be made available, we need to publish it. To publish a label, follow the following steps:</p>



<ul class="wp-block-list">
<li>In the Labels page, select the label and the option &#8220;Publish label&#8221;.</li>
</ul>



<figure class="wp-block-image size-large"><img decoding="async" width="1024" height="642" src="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_19-1024x642.jpg" alt="" class="wp-image-13067" srcset="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_19-1024x642.jpg 1024w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_19-300x188.jpg 300w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_19-768x481.jpg 768w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_19-696x436.jpg 696w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_19-1068x669.jpg 1068w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_19-670x420.jpg 670w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_19.jpg 1095w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<ul class="wp-block-list">
<li>In &#8220;Assign admin units&#8221; page, leave the default values and click &#8220;Next&#8221;.</li>
</ul>



<figure class="wp-block-image size-full"><img decoding="async" width="738" height="725" src="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_21.jpg" alt="" class="wp-image-13069" srcset="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_21.jpg 738w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_21-300x295.jpg 300w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_21-696x684.jpg 696w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_21-428x420.jpg 428w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_21-70x70.jpg 70w" sizes="(max-width: 738px) 100vw, 738px" /></figure>



<ul class="wp-block-list">
<li>In &#8220;Publish to users and groups&#8221;, add all users and groups and then click &#8220;Next&#8221;. If you want to test the Label to a restricted group of users, select a group with the users that you want to include in test.</li>
</ul>



<figure class="wp-block-image size-full"><img decoding="async" width="739" height="718" src="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_22.jpg" alt="" class="wp-image-13071" srcset="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_22.jpg 739w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_22-300x291.jpg 300w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_22-696x676.jpg 696w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_22-432x420.jpg 432w" sizes="(max-width: 739px) 100vw, 739px" /></figure>



<ul class="wp-block-list">
<li>In &#8220;Policy settings&#8221;, leave all options unselected and click &#8220;Next&#8221;.</li>
</ul>



<figure class="wp-block-image size-full"><img decoding="async" width="734" height="719" src="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_23.jpg" alt="" class="wp-image-13073" srcset="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_23.jpg 734w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_23-300x294.jpg 300w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_23-696x682.jpg 696w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_23-429x420.jpg 429w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_23-70x70.jpg 70w" sizes="(max-width: 734px) 100vw, 734px" /></figure>



<ul class="wp-block-list">
<li>In Default settings for documents, select &#8220;None&#8221; for &#8220;Default label&#8221;. With this selection, labels won&#8217;t be applied by default to Office documents. Click &#8220;Next&#8221;.</li>
</ul>



<figure class="wp-block-image size-full"><img decoding="async" width="741" height="716" src="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_24.jpg" alt="" class="wp-image-13075" srcset="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_24.jpg 741w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_24-300x290.jpg 300w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_24-696x673.jpg 696w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_24-435x420.jpg 435w" sizes="(max-width: 741px) 100vw, 741px" /></figure>



<ul class="wp-block-list">
<li>In Default settings for emails, select &#8220;Same as document&#8221; in &#8220;Default Label&#8221; and leave the checkbox &#8220;Email inherits highest priority label from attachments&#8221; unchecked  and click &#8220;Next&#8221;.</li>
</ul>



<figure class="wp-block-image size-full"><img decoding="async" width="731" height="748" src="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_25.jpg" alt="" class="wp-image-13091" srcset="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_25.jpg 731w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_25-293x300.jpg 293w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_25-696x712.jpg 696w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_25-410x420.jpg 410w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_25-356x364.jpg 356w" sizes="(max-width: 731px) 100vw, 731px" /></figure>



<ul class="wp-block-list">
<li>In &#8220;Default settings for meetings and calendar events&#8221;, select &#8220;None&#8221; for &#8220;Default label&#8221; and click &#8220;Next&#8221;.</li>
</ul>



<figure class="wp-block-image size-full"><img decoding="async" width="738" height="756" src="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_26.jpg" alt="" class="wp-image-13093" srcset="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_26.jpg 738w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_26-293x300.jpg 293w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_26-696x713.jpg 696w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_26-410x420.jpg 410w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_26-356x364.jpg 356w" sizes="(max-width: 738px) 100vw, 738px" /></figure>



<ul class="wp-block-list">
<li>In &#8220;Default settings for sites and groups&#8221;, select &#8220;None&#8221; for &#8220;Default label&#8221; and click &#8220;Next&#8221;.</li>
</ul>



<figure class="wp-block-image size-full"><img decoding="async" width="743" height="761" src="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_27.jpg" alt="" class="wp-image-13106" srcset="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_27.jpg 743w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_27-293x300.jpg 293w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_27-696x713.jpg 696w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_27-410x420.jpg 410w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_27-356x364.jpg 356w" sizes="(max-width: 743px) 100vw, 743px" /></figure>



<ul class="wp-block-list">
<li>In &#8220;Default settings for Fabric and Power BI content&#8221;, select &#8220;None&#8221; for &#8220;Default label&#8221; and click &#8220;Next&#8221;.</li>
</ul>



<figure class="wp-block-image size-full"><img decoding="async" width="736" height="758" src="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_28.jpg" alt="" class="wp-image-13110" srcset="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_28.jpg 736w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_28-291x300.jpg 291w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_28-696x717.jpg 696w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_28-408x420.jpg 408w" sizes="(max-width: 736px) 100vw, 736px" /></figure>



<ul class="wp-block-list">
<li>In &#8220;Name your policy&#8221;, name your policy and give it a description.</li>
</ul>



<figure class="wp-block-image size-full"><img decoding="async" width="752" height="757" src="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_29.jpg" alt="" class="wp-image-13112" srcset="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_29.jpg 752w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_29-298x300.jpg 298w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_29-150x150.jpg 150w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_29-696x701.jpg 696w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_29-417x420.jpg 417w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_29-70x70.jpg 70w" sizes="(max-width: 752px) 100vw, 752px" /></figure>



<ul class="wp-block-list">
<li>Review and submit the Label policy to finish the policy creation process.</li>
</ul>



<figure class="wp-block-image size-full"><img decoding="async" width="730" height="758" src="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_30.jpg" alt="" class="wp-image-13114" srcset="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_30.jpg 730w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_30-289x300.jpg 289w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_30-696x723.jpg 696w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Label_30-404x420.jpg 404w" sizes="(max-width: 730px) 100vw, 730px" /></figure>



<p><strong>NOTE: </strong>New labels may take up to 1h to be available. Updates to existing labels may take up to 24h to take effect.</p>



<h2 class="wp-block-heading">Testing Access to SharePoint</h2>



<p>To test if the label is successfully applied, we are going to create a SharePoint Team site and apply the label to the site. Follow the following steps:</p>



<ul class="wp-block-list">
<li>Click SharePoint in the left top corner to go to the SharePoint homepage</li>



<li>In the SharePoint homepage, create a new site.</li>
</ul>



<figure class="wp-block-image size-full"><img decoding="async" width="813" height="105" src="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_01.jpg" alt="" class="wp-image-13123" srcset="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_01.jpg 813w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_01-300x39.jpg 300w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_01-768x99.jpg 768w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_01-696x90.jpg 696w" sizes="(max-width: 813px) 100vw, 813px" /></figure>



<ul class="wp-block-list">
<li>Choose a Team Site</li>
</ul>



<figure class="wp-block-image size-large"><img decoding="async" width="1024" height="710" src="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_02-1024x710.jpg" alt="" class="wp-image-13125" srcset="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_02-1024x710.jpg 1024w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_02-300x208.jpg 300w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_02-768x533.jpg 768w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_02-218x150.jpg 218w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_02-696x483.jpg 696w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_02-1068x741.jpg 1068w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_02-605x420.jpg 605w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_02-100x70.jpg 100w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_02.jpg 1123w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<ul class="wp-block-list">
<li>Choose any template. For simplicity, I selected &#8220;Standard team&#8221;.</li>
</ul>



<figure class="wp-block-image size-large"><img decoding="async" width="1024" height="724" src="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_03-1024x724.jpg" alt="" class="wp-image-13127" srcset="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_03-1024x724.jpg 1024w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_03-300x212.jpg 300w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_03-768x543.jpg 768w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_03-696x492.jpg 696w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_03-1068x755.jpg 1068w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_03-594x420.jpg 594w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_03-100x70.jpg 100w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_03.jpg 1139w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<ul class="wp-block-list">
<li>Click on &#8220;Use Template&#8221;</li>
</ul>



<figure class="wp-block-image size-large"><img decoding="async" width="1024" height="723" src="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_04-1024x723.jpg" alt="" class="wp-image-13131" srcset="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_04-1024x723.jpg 1024w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_04-300x212.jpg 300w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_04-768x542.jpg 768w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_04-696x491.jpg 696w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_04-1068x754.jpg 1068w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_04-595x420.jpg 595w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_04-100x70.jpg 100w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_04.jpg 1155w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<ul class="wp-block-list">
<li>Set the site name, group email address and site address.</li>
</ul>



<figure class="wp-block-image size-large"><img decoding="async" src="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_05.jpg" alt="" /></figure>



<ul class="wp-block-list">
<li>Set the sentitivity label for the new site by choosing the label we created earlier. The privacy will automatically be set to Private as we defined in the label settings.</li>
</ul>



<figure class="wp-block-image size-large"><img decoding="async" width="1024" height="726" src="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_06-1024x726.jpg" alt="" class="wp-image-13143" srcset="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_06-1024x726.jpg 1024w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_06-300x213.jpg 300w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_06-768x545.jpg 768w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_06-696x494.jpg 696w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_06-1068x758.jpg 1068w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_06-592x420.jpg 592w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_06-100x70.jpg 100w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_06.jpg 1142w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<ul class="wp-block-list">
<li>Add site owners and members to the site.</li>
</ul>



<figure class="wp-block-image size-large"><img decoding="async" width="1024" height="705" src="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_07-1024x705.jpg" alt="" class="wp-image-13147" srcset="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_07-1024x705.jpg 1024w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_07-300x207.jpg 300w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_07-768x529.jpg 768w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_07-218x150.jpg 218w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_07-696x479.jpg 696w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_07-1068x736.jpg 1068w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_07-610x420.jpg 610w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_07-100x70.jpg 100w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_07.jpg 1089w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<ul class="wp-block-list">
<li>Access the site with an unmanaged device. In this example, the site was created as a “Private” group and with the label “Confidential”. As the site was configured to only allow access from the browser and not allow the use of Office desktop applications by devices not managed by the organization, a message appears at the top of the site indicating that it is not possible to download the documents or sync the documents for offline access.</li>
</ul>



<figure class="wp-block-image size-large"><img decoding="async" width="1024" height="527" src="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_08-1024x527.jpg" alt="" class="wp-image-13150" srcset="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_08-1024x527.jpg 1024w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_08-300x155.jpg 300w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_08-768x396.jpg 768w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_08-696x359.jpg 696w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_08-1068x550.jpg 1068w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_08-815x420.jpg 815w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_08.jpg 1124w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<ul class="wp-block-list">
<li>In the &#8220;Documents&#8221; document library, verify that it is not possible to sync documents for offline access (&#8220;Sync&#8221; command should not be available in the command bar).</li>
</ul>



<figure class="wp-block-image size-large"><img decoding="async" width="1024" height="428" src="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_09-1024x428.jpg" alt="" class="wp-image-13153" srcset="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_09-1024x428.jpg 1024w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_09-300x126.jpg 300w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_09-768x321.jpg 768w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_09-696x291.jpg 696w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_09-1068x447.jpg 1068w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_09-1004x420.jpg 1004w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_09.jpg 1133w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<ul class="wp-block-list">
<li>In the &#8220;Documents&#8221; document library, verify that it is not possible to download documents (&#8220;Download&#8221; option should not be available in the document context menu).</li>
</ul>



<figure class="wp-block-image size-large"><img decoding="async" width="1024" height="804" src="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_10-1024x804.jpg" alt="" class="wp-image-13164" srcset="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_10-1024x804.jpg 1024w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_10-300x236.jpg 300w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_10-768x603.jpg 768w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_10-696x546.jpg 696w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_10-1068x838.jpg 1068w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_10-535x420.jpg 535w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_10.jpg 1126w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<ul class="wp-block-list">
<li>In the &#8220;Documents&#8221; document library, verify that it is not possible to open a document using the desktop application and that documents can only be opened using the browser.</li>
</ul>



<figure class="wp-block-image size-large"><img decoding="async" width="1024" height="541" src="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_11-1024x541.jpg" alt="" class="wp-image-13167" srcset="https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_11-1024x541.jpg 1024w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_11-300x159.jpg 300w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_11-768x406.jpg 768w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_11-696x368.jpg 696w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_11-1068x564.jpg 1068w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_11-795x420.jpg 795w, https://blogit.create.pt/wp-content/uploads/2024/02/Create_Site_11.jpg 1126w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



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



<p>To learn why your business should migrate to SharePoint Online and Office 365, click&nbsp;<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>&nbsp;and&nbsp;<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 learn how to develop SPFx solutions, click <a href="https://blogit.create.pt/miguelisidoro/2022/05/09/sharepoint-framework-spfx-learning-guide/" target="_blank" rel="noreferrer noopener">here</a>.</p>



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



<p>If you want to learn how to save time time scheduling your meetings, click&nbsp;<a 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&nbsp;<a 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&nbsp;<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&nbsp;<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&nbsp;<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>&nbsp;and&nbsp;<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&nbsp;<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&nbsp;<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&nbsp;</a>and&nbsp;<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&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-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&nbsp;<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&nbsp;</a>and&nbsp;<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&nbsp;<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&nbsp;<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&nbsp;<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&nbsp;<a href="https://blogit.create.pt////miguelisidoro/2018/11/01/meet-the-new-modern-sharepoint-server-sharepoint-2019-rtm-is-here/" target="_blank" rel="noreferrer noopener">here</a>.</p>



<p>Happy SharePointing!</p>
<p>The post <a href="https://blogit.create.pt/miguelisidoro/2024/02/06/how-to-protect-sensitive-information-in-sharepoint-online-using-purview-sensitivity-labels/">How to protect sensitive information in SharePoint Online using Purview Sensitivity Labels</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blogit.create.pt/miguelisidoro/2024/02/06/how-to-protect-sensitive-information-in-sharepoint-online-using-purview-sensitivity-labels/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>Set Default Sharing to &#8220;People with Existing Access&#8221; in SharePoint Online</title>
		<link>https://blogit.create.pt/miguelisidoro/2024/01/31/set-default-sharing-to-people-with-existing-access-in-sharepoint-online/</link>
					<comments>https://blogit.create.pt/miguelisidoro/2024/01/31/set-default-sharing-to-people-with-existing-access-in-sharepoint-online/#respond</comments>
		
		<dc:creator><![CDATA[Miguel Isidoro]]></dc:creator>
		<pubDate>Wed, 31 Jan 2024 12:01:11 +0000</pubDate>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[SharePoint Online]]></category>
		<category><![CDATA[SharePoint]]></category>
		<guid isPermaLink="false">https://blogit.create.pt/?p=12941</guid>

					<description><![CDATA[<p>This post will explain how to set default sharing of all SharePoint sites in the tenant to &#8220;Poeple with Existing Access&#8221;. Introduction From a security standpoint, it is important to protect access to information to ensure that only the right people in an organization has access to it. Users can share files and folders in [&#8230;]</p>
<p>The post <a href="https://blogit.create.pt/miguelisidoro/2024/01/31/set-default-sharing-to-people-with-existing-access-in-sharepoint-online/">Set Default Sharing to &#8220;People with Existing Access&#8221; in SharePoint Online</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>This post will explain how to set default sharing of all SharePoint sites in the tenant to &#8220;Poeple with Existing Access&#8221;.</p>



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



<p>From a security standpoint, it is important to protect access to information to ensure that only the right people in an organization has access to it.</p>



<p>Users can share files and folders in Microsoft SharePoint by sending a link. They should select a link type based on the people to whom they want to give permission. The following link types are available:</p>



<ul class="wp-block-list">
<li>Anyone with the link (previously called &#8220;anonymous access&#8221; or &#8220;shareable&#8221;)</li>



<li>People in your organization with the link</li>



<li>People with existing access</li>



<li>Specific people</li>
</ul>



<p>By default, default sharing is configured to &#8220;People in [Organization&#8221;], meaning that when sharing or making use of the &#8220;Copy link&#8221; option to share a document with someone, the link you provide may be accessed by the whole organization. To prevent this, we can change the default sharing to &#8220;Poeple with Existing Access&#8221;, meaning that when sharing or making use of the &#8220;Copy link&#8221; option to share a document with someone, the link you provide may be accessed by people that already have access to the document, making it a more secure way to share a document with someone.</p>



<h2 class="wp-block-heading">The Code</h2>



<p>The PowerShell script below allows you to change the default sharing to &#8220;People with Existing Access&#8221; for all sites in your tenant. </p>



<p>NOTE: For now, </p>


<div class="wp-block-syntaxhighlighter-code "><pre class="brush: plain; title: ; notranslate">
Import-Module Microsoft.Online.SharePoint.PowerShell -DisableNameChecking
 
$AdminSiteUrl = &quot;https://dev-admin.sharepoint.com&quot;
 
#Connect to SharePoint Online
Connect-SPOService -Url $AdminSiteUrl
 
#Get All SharePoint Sites
$Sites = Get-SPOSite -Limit All

#Iterate each site and change the default sharing
ForEach ($Site in $Sites)
{
    $SiteUrl = $Site.URL
    Write-Host &quot;Setting Sharing to DefaultLinkToExistingAccessin $SiteUrl&quot; -ForegroundColor &quot;Green&quot;
    Set-SPOSite -identity $SiteUrl -DefaultLinkToExistingAccess 1
}

</pre></div>


<p>Sharing experience before running the script:</p>



<figure class="wp-block-image size-full"><img decoding="async" width="534" height="315" src="https://blogit.create.pt/wp-content/uploads/2024/01/Share_People_Organization.jpg" alt="" class="wp-image-12963" srcset="https://blogit.create.pt/wp-content/uploads/2024/01/Share_People_Organization.jpg 534w, https://blogit.create.pt/wp-content/uploads/2024/01/Share_People_Organization-300x177.jpg 300w" sizes="(max-width: 534px) 100vw, 534px" /></figure>



<p>Sharing experience after running the script:</p>



<figure class="wp-block-image size-full"><img decoding="async" width="523" height="323" src="https://blogit.create.pt/wp-content/uploads/2024/01/Share_Existing_Access.jpg" alt="" class="wp-image-12964" srcset="https://blogit.create.pt/wp-content/uploads/2024/01/Share_Existing_Access.jpg 523w, https://blogit.create.pt/wp-content/uploads/2024/01/Share_Existing_Access-300x185.jpg 300w, https://blogit.create.pt/wp-content/uploads/2024/01/Share_Existing_Access-356x220.jpg 356w" sizes="(max-width: 523px) 100vw, 523px" /></figure>



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



<p>To learn why your business should migrate to SharePoint Online and Office 365, click&nbsp;<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>&nbsp;and&nbsp;<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 learn how to develop SPFx solutions, click <a href="https://blogit.create.pt/miguelisidoro/2022/05/09/sharepoint-framework-spfx-learning-guide/" target="_blank" rel="noreferrer noopener">here</a>.</p>



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



<p>If you want to learn how to save time time scheduling your meetings, click&nbsp;<a 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&nbsp;<a 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&nbsp;<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&nbsp;<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&nbsp;<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>&nbsp;and&nbsp;<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&nbsp;<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&nbsp;<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&nbsp;</a>and&nbsp;<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&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-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&nbsp;<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&nbsp;</a>and&nbsp;<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&nbsp;<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&nbsp;<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&nbsp;<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&nbsp;<a href="https://blogit.create.pt////miguelisidoro/2018/11/01/meet-the-new-modern-sharepoint-server-sharepoint-2019-rtm-is-here/" target="_blank" rel="noreferrer noopener">here</a>.</p>



<p>Happy SharePointing!</p>
<p>The post <a href="https://blogit.create.pt/miguelisidoro/2024/01/31/set-default-sharing-to-people-with-existing-access-in-sharepoint-online/">Set Default Sharing to &#8220;People with Existing Access&#8221; in SharePoint Online</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blogit.create.pt/miguelisidoro/2024/01/31/set-default-sharing-to-people-with-existing-access-in-sharepoint-online/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Disable Social Bar (Like, Comment, Views, Save for later) in SharePoint Online Modern Pages</title>
		<link>https://blogit.create.pt/miguelisidoro/2024/01/30/how-to-disable-social-bar-like-comment-views-save-for-later-in-in-sharepoint-online-modern-pages/</link>
					<comments>https://blogit.create.pt/miguelisidoro/2024/01/30/how-to-disable-social-bar-like-comment-views-save-for-later-in-in-sharepoint-online-modern-pages/#respond</comments>
		
		<dc:creator><![CDATA[Miguel Isidoro]]></dc:creator>
		<pubDate>Tue, 30 Jan 2024 13:00:23 +0000</pubDate>
				<category><![CDATA[SharePoint Online]]></category>
		<category><![CDATA[SharePoint]]></category>
		<guid isPermaLink="false">https://blogit.create.pt/?p=12917</guid>

					<description><![CDATA[<p>This post will explain how to disable the Social Bar in SharePoint Online Modern Pages. Introduction The Social Bar is a feature in SharePoint Online that allows users like, comment, and see the number of views in SharePoint modern pages. Disable Social Bar in a SharePoint Site To disable the social bar in a single [&#8230;]</p>
<p>The post <a href="https://blogit.create.pt/miguelisidoro/2024/01/30/how-to-disable-social-bar-like-comment-views-save-for-later-in-in-sharepoint-online-modern-pages/">How to Disable Social Bar (Like, Comment, Views, Save for later) in SharePoint Online Modern Pages</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>This post will explain how to disable the Social Bar in SharePoint Online Modern Pages.</p>



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



<p>The Social Bar is a feature in SharePoint Online that allows users like, comment, and see the number of views in SharePoint modern pages. </p>



<h2 class="wp-block-heading">Disable Social Bar in a SharePoint Site</h2>



<p>To disable the social bar in a single SharePoint site, run the PowerShell script below in PowerShell window using <a href="https://pnp.github.io/powershell/articles/installation.html" target="_blank" rel="noreferrer noopener">PnP PowerShell</a>. Make sure you set the parameters accordingly.</p>


<div class="wp-block-syntaxhighlighter-code "><pre class="brush: plain; title: ; notranslate">
$AdminCenterURL=&quot;https://dev-admin.sharepoint.com&quot;
$SiteURL = &quot;https://dev.sharepoint.com/sites/DevSite&quot;
 
#Connect to SharePoint Online
Connect-PnPOnline -Url $AdminCenterURL -UseWebLogin
 
#Disable Social Bar on Site Pages
Set-PnPSite -Identity $SiteURL -SocialBarOnSitePagesDisabled $true
</pre></div>


<h2 class="wp-block-heading">Disable Social Bar in all SharePoint Sites</h2>



<p>To disable the social bar in all SharePoint sites in the tenant, run the PowerShell script below in PowerShell window using <a href="https://pnp.github.io/powershell/articles/installation.html" target="_blank" rel="noreferrer noopener">PnP PowerShell</a>. Make sure you set the parameters accordingly.</p>


<div class="wp-block-syntaxhighlighter-code "><pre class="brush: plain; title: ; notranslate">
$AdminCenterURL=&quot;https://dev-admin.sharepoint.com&quot;
 
#Connect to SharePoint Online
Connect-PnPOnline -Url $AdminCenterURL -UseWebLogin
 
#Disable Social Bar on Site Pages
Set-PnPTenant -SocialBarOnSitePagesDisabled $True

</pre></div>


<p>SharePoint site before disabling Social Bar:</p>



<figure class="wp-block-image size-large"><img decoding="async" width="1024" height="413" src="https://blogit.create.pt/wp-content/uploads/2024/01/SocialBar_Enabled-1024x413.jpg" alt="" class="wp-image-12929" srcset="https://blogit.create.pt/wp-content/uploads/2024/01/SocialBar_Enabled-1024x413.jpg 1024w, https://blogit.create.pt/wp-content/uploads/2024/01/SocialBar_Enabled-300x121.jpg 300w, https://blogit.create.pt/wp-content/uploads/2024/01/SocialBar_Enabled-768x310.jpg 768w, https://blogit.create.pt/wp-content/uploads/2024/01/SocialBar_Enabled-1536x619.jpg 1536w, https://blogit.create.pt/wp-content/uploads/2024/01/SocialBar_Enabled-696x281.jpg 696w, https://blogit.create.pt/wp-content/uploads/2024/01/SocialBar_Enabled-1068x431.jpg 1068w, https://blogit.create.pt/wp-content/uploads/2024/01/SocialBar_Enabled-1042x420.jpg 1042w, https://blogit.create.pt/wp-content/uploads/2024/01/SocialBar_Enabled.jpg 1548w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p></p>



<p>SharePoint site after disabling Social Bar:</p>



<figure class="wp-block-image size-large"><img decoding="async" width="1024" height="386" src="https://blogit.create.pt/wp-content/uploads/2024/01/SocialBar_Disabled-1024x386.jpg" alt="" class="wp-image-12930" srcset="https://blogit.create.pt/wp-content/uploads/2024/01/SocialBar_Disabled-1024x386.jpg 1024w, https://blogit.create.pt/wp-content/uploads/2024/01/SocialBar_Disabled-300x113.jpg 300w, https://blogit.create.pt/wp-content/uploads/2024/01/SocialBar_Disabled-768x289.jpg 768w, https://blogit.create.pt/wp-content/uploads/2024/01/SocialBar_Disabled-1536x579.jpg 1536w, https://blogit.create.pt/wp-content/uploads/2024/01/SocialBar_Disabled-696x262.jpg 696w, https://blogit.create.pt/wp-content/uploads/2024/01/SocialBar_Disabled-1068x402.jpg 1068w, https://blogit.create.pt/wp-content/uploads/2024/01/SocialBar_Disabled-1115x420.jpg 1115w, https://blogit.create.pt/wp-content/uploads/2024/01/SocialBar_Disabled.jpg 1550w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



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



<p>To learn why your business should migrate to SharePoint Online and Office 365, click&nbsp;<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>&nbsp;and&nbsp;<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 learn how to develop SPFx solutions, click <a href="https://blogit.create.pt/miguelisidoro/2022/05/09/sharepoint-framework-spfx-learning-guide/" target="_blank" rel="noreferrer noopener">here</a>.</p>



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



<p>If you want to learn how to save time time scheduling your meetings, click&nbsp;<a 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&nbsp;<a 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&nbsp;<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&nbsp;<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&nbsp;<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>&nbsp;and&nbsp;<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&nbsp;<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&nbsp;<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&nbsp;</a>and&nbsp;<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&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-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&nbsp;<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&nbsp;</a>and&nbsp;<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&nbsp;<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&nbsp;<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&nbsp;<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&nbsp;<a href="https://blogit.create.pt////miguelisidoro/2018/11/01/meet-the-new-modern-sharepoint-server-sharepoint-2019-rtm-is-here/" target="_blank" rel="noreferrer noopener">here</a>.</p>



<p>Happy SharePointing!</p>
<p>The post <a href="https://blogit.create.pt/miguelisidoro/2024/01/30/how-to-disable-social-bar-like-comment-views-save-for-later-in-in-sharepoint-online-modern-pages/">How to Disable Social Bar (Like, Comment, Views, Save for later) in SharePoint Online Modern Pages</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blogit.create.pt/miguelisidoro/2024/01/30/how-to-disable-social-bar-like-comment-views-save-for-later-in-in-sharepoint-online-modern-pages/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Set a SharePoint Site as Home Site using PowerShell</title>
		<link>https://blogit.create.pt/miguelisidoro/2024/01/24/set-a-sharepoint-site-as-homesite-using-powershell/</link>
					<comments>https://blogit.create.pt/miguelisidoro/2024/01/24/set-a-sharepoint-site-as-homesite-using-powershell/#respond</comments>
		
		<dc:creator><![CDATA[Miguel Isidoro]]></dc:creator>
		<pubDate>Wed, 24 Jan 2024 17:53:16 +0000</pubDate>
				<category><![CDATA[SharePoint Online]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[microsoft365]]></category>
		<category><![CDATA[office365]]></category>
		<category><![CDATA[sharepoint]]></category>
		<guid isPermaLink="false">https://blogit.create.pt/?p=12902</guid>

					<description><![CDATA[<p>This post explains how to set a SharePoint to be your home site in a Microsoft 365 tenant using PowerShell. Introduction SharePoint Home Site&#160;is a feature available in SharePoint that allows you to designate a given site as a Home Site for the whole SharePoint Intranet. By doing so, the site is designated to be&#160;the [&#8230;]</p>
<p>The post <a href="https://blogit.create.pt/miguelisidoro/2024/01/24/set-a-sharepoint-site-as-homesite-using-powershell/">Set a SharePoint Site as Home Site using PowerShell</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>This post explains how to set a SharePoint to be your home site in a Microsoft 365 tenant using PowerShell.</p>



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



<p><strong>SharePoint Home Site</strong>&nbsp;is a feature available in SharePoint that allows you to designate a given site as a Home Site for the whole SharePoint Intranet. By doing so, the site is designated to be&nbsp;<strong>the main site</strong>&nbsp;of the Microsoft 365 tenant.</p>



<h2 class="wp-block-heading">The Code</h2>



<p>To transform an existing SharePoint site into a SharePoint home site, run the following PowerShell script:</p>


<div class="wp-block-syntaxhighlighter-code "><pre class="brush: plain; title: ; notranslate">
Connect-SPOService -Url https://demo-admin.sharepoint.com
Set-SPOHomeSite -HomeSiteUrl https://demo.sharepoint.com/sites/home
</pre></div>


<p>NOTE: You can only have one SharePoint Home Site.</p>



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



<p>To learn why your business should migrate to SharePoint Online and Office 365, click&nbsp;<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>&nbsp;and&nbsp;<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 learn how to develop SPFx solutions, click <a href="https://blogit.create.pt/miguelisidoro/2022/05/09/sharepoint-framework-spfx-learning-guide/" target="_blank" rel="noreferrer noopener">here</a>.</p>



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



<p>If you want to learn how to save time time scheduling your meetings, click&nbsp;<a 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&nbsp;<a 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&nbsp;<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&nbsp;<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&nbsp;<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>&nbsp;and&nbsp;<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&nbsp;<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&nbsp;<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&nbsp;</a>and&nbsp;<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&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-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&nbsp;<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&nbsp;</a>and&nbsp;<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&nbsp;<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&nbsp;<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&nbsp;<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&nbsp;<a href="https://blogit.create.pt////miguelisidoro/2018/11/01/meet-the-new-modern-sharepoint-server-sharepoint-2019-rtm-is-here/" target="_blank" rel="noreferrer noopener">here</a>.</p>



<p>Happy SharePointing!</p>
<p>The post <a href="https://blogit.create.pt/miguelisidoro/2024/01/24/set-a-sharepoint-site-as-homesite-using-powershell/">Set a SharePoint Site as Home Site using PowerShell</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blogit.create.pt/miguelisidoro/2024/01/24/set-a-sharepoint-site-as-homesite-using-powershell/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>SharePoint Framework (SPFx) Learning Guide</title>
		<link>https://blogit.create.pt/miguelisidoro/2022/05/09/sharepoint-framework-spfx-learning-guide/</link>
					<comments>https://blogit.create.pt/miguelisidoro/2022/05/09/sharepoint-framework-spfx-learning-guide/#respond</comments>
		
		<dc:creator><![CDATA[Miguel Isidoro]]></dc:creator>
		<pubDate>Mon, 09 May 2022 16:50:20 +0000</pubDate>
				<category><![CDATA[SharePoint Online]]></category>
		<category><![CDATA[Microsoft Teams]]></category>
		<category><![CDATA[learning]]></category>
		<category><![CDATA[React]]></category>
		<category><![CDATA[SharePoint Framework]]></category>
		<category><![CDATA[SPFx]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[TypeScript]]></category>
		<guid isPermaLink="false">https://blogit.create.pt/?p=12678</guid>

					<description><![CDATA[<p>Hello, Are you new to SharePoint or do you just want to learn how to develop SharePoint modern solutions? Then, you came to the right place! This is a guide to help you learn SharePoint Framework (SPFx), a framework to develop SharePoint (and Teams) client-side solutions. SPFx leverages the following technologies: The Basics SharePoint Framework&#160;is&#160;a&#160;page [&#8230;]</p>
<p>The post <a href="https://blogit.create.pt/miguelisidoro/2022/05/09/sharepoint-framework-spfx-learning-guide/">SharePoint Framework (SPFx) Learning Guide</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>Hello,</p>



<p>Are you new to SharePoint or do you just want to learn how to develop SharePoint modern solutions? Then, you came to the right place!</p>



<p>This is a guide to help you learn SharePoint Framework (SPFx), a framework to develop SharePoint (and Teams) client-side solutions. SPFx leverages the following technologies:</p>



<ul class="wp-block-list">
<li><a href="https://reactjs.org/" target="_blank" rel="noreferrer noopener">React&nbsp;</a>/&nbsp;<a href="https://angular.io/" target="_blank" rel="noreferrer noopener">Angular</a></li>



<li><a href="https://www.typescriptlang.org/" target="_blank" rel="noreferrer noopener">TypeScript</a></li>



<li><a href="https://www.microsoft.com/pt-pt/microsoft-365/sharepoint/collaboration" target="_blank" rel="noreferrer noopener">SharePoint Online</a></li>



<li><a href="https://www.microsoft.com/en-us/microsoft-teams/group-chat-software/" target="_blank" rel="noreferrer noopener">Microsoft Teams</a></li>
</ul>



<p></p>



<h2 class="wp-block-heading">The Basics</h2>



<p><a href="https://docs.microsoft.com/en-us/sharepoint/dev/spfx/sharepoint-framework-overview" target="_blank" rel="noreferrer noopener">SharePoint Framework</a>&nbsp;is&nbsp;a&nbsp;<strong>page and web part model&nbsp;</strong>that provides full support for<strong>&nbsp;client-side SharePoint development</strong>,&nbsp;<strong>easy integration with SharePoint data</strong>, and&nbsp;<strong>extending</strong>&nbsp;<strong>Microsoft Teams.</strong>&nbsp;With the SharePoint Framework, you can use modern web technologies and tools in your preferred development environment to build productive experiences and apps that are responsive and mobile-ready.</p>



<p>The SPFx is the recommended SharePoint customization and extensibility model for developers. Due to tight integration between SharePoint Online, Microsoft Teams, and Microsoft Viva Connections, developers can also use SPFx to customize and extend all these products. In fact, SPFx is the only extensibility and customization option for Viva Connections.</p>



<p>In addition to SharePoint Online, SPFx is supported and can be used to customize SharePoint on-premises deployments going back to SharePoint Server 2016.</p>



<p>With the SharePoint Framework, we can develop:</p>



<ul class="wp-block-list">
<li><a href="https://docs.microsoft.com/en-us/sharepoint/dev/spfx/web-parts/overview-client-side-web-parts" target="_blank" rel="noreferrer noopener">Web Parts</a></li>



<li><a href="https://docs.microsoft.com/en-us/sharepoint/dev/spfx/extensions/overview-extensions" target="_blank" rel="noreferrer noopener">Extensions</a></li>



<li><a href="https://docs.microsoft.com/en-us/sharepoint/dev/spfx/library-component-overview" target="_blank" rel="noreferrer noopener">Library components</a></li>



<li><a href="https://docs.microsoft.com/en-us/sharepoint/dev/spfx/viva/get-started/build-first-sharepoint-adaptive-card-extension" target="_blank" rel="noreferrer noopener">Adaptive Card Extensions</a></li>
</ul>



<p><br>Other useful links:</p>



<ul class="wp-block-list">
<li><a href="https://docs.microsoft.com/en-us/sharepoint/dev/spfx/sharepoint-framework-overview" target="_blank" rel="noreferrer noopener">Overview of the SharePoint Framework (SPFx)</a></li>



<li><a href="https://docs.microsoft.com/en-us/sharepoint/dev/spfx/toolchain/scaffolding-projects-using-yeoman-sharepoint-generator" target="_blank" rel="noreferrer noopener">Scaffold projects by using Yeoman SharePoint generator</a></li>



<li><a href="https://docs.microsoft.com/en-us/sharepoint/dev/spfx/tools-and-libraries" target="_blank" rel="noreferrer noopener">SharePoint Framework development tools and libraries</a></li>



<li><a href="https://docs.microsoft.com/en-us/sharepoint/dev/spfx/toolchain/sharepoint-framework-toolchain" target="_blank" rel="noreferrer noopener">SharePoint Framework toolchain</a></li>



<li><a href="https://pnp.github.io/blog/post/patterns-and-practices-for-spfx-development/" id="https://pnp.github.io/blog/post/patterns-and-practices-for-spfx-development/" target="_blank" rel="noreferrer noopener">Patterns and Practices for SPFx Development</a></li>
</ul>



<h3 class="wp-block-heading">Technology stack</h3>



<figure class="wp-block-image size-full"><img decoding="async" width="650" height="578" src="https://blogit.create.pt/wp-content/uploads/2022/05/sharepoint_framework_logo-1.jpg" alt="" class="wp-image-13616" srcset="https://blogit.create.pt/wp-content/uploads/2022/05/sharepoint_framework_logo-1.jpg 650w, https://blogit.create.pt/wp-content/uploads/2022/05/sharepoint_framework_logo-1-300x267.jpg 300w, https://blogit.create.pt/wp-content/uploads/2022/05/sharepoint_framework_logo-1-472x420.jpg 472w" sizes="(max-width: 650px) 100vw, 650px" /><figcaption class="wp-element-caption">SPFx Technology stack</figcaption></figure>



<h3 class="wp-block-heading">SPFx Development Toolchain</h3>



<figure class="wp-block-image size-full"><img decoding="async" width="815" height="410" src="https://blogit.create.pt/wp-content/uploads/2022/05/spfx-development-toolchain-1-2.png" alt="" class="wp-image-13617" srcset="https://blogit.create.pt/wp-content/uploads/2022/05/spfx-development-toolchain-1-2.png 815w, https://blogit.create.pt/wp-content/uploads/2022/05/spfx-development-toolchain-1-2-300x151.png 300w, https://blogit.create.pt/wp-content/uploads/2022/05/spfx-development-toolchain-1-2-768x386.png 768w, https://blogit.create.pt/wp-content/uploads/2022/05/spfx-development-toolchain-1-2-696x350.png 696w" sizes="(max-width: 815px) 100vw, 815px" /><figcaption class="wp-element-caption">SPFx Development Toolchain</figcaption></figure>



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



<p><a href="https://www.typescriptlang.org/" target="_blank" rel="noreferrer noopener">TypeScript&nbsp;</a>is the preferred programming language to develop in SPFx. TypeScript is a programming language and maintained by Microsoft and is a superset of JavaScript and adds optional static typing to the language to develop client-side solutions. It is designed for the development of large applications and transpiles to JavaScript to be executed in the browser.</p>



<p>Useful TypeScript concepts:</p>



<ul class="wp-block-list">
<li><a href="https://www.typescriptlang.org/docs/handbook/variable-declarations.html" target="_blank" rel="noreferrer noopener">const</a>&nbsp;&#8211; allows the definition of a variable whose value is not going to be changed. Use this instead of let if the variable value is not going to be changed after its declaration.</li>



<li><a href="https://www.typescriptlang.org/docs/handbook/variable-declarations.html" target="_blank" rel="noreferrer noopener">let</a>&nbsp;&#8211; allows the definition of a variable whose value is going to be changed. Use this instead of const if the variable value is going to be changed after its declaration.</li>



<li><a href="https://www.typescriptlang.org/docs/handbook/variable-declarations.html" target="_blank" rel="noreferrer noopener">var&nbsp;</a>&#8211; allows the definition of a variable whose value is going to be changed. To be&nbsp;<strong>avoided&nbsp;</strong>since variables declared with var are acessible from any scope (scope (function, module, namespace, global)</li>



<li><a href="https://javascript.plainenglish.io/when-to-best-use-type-class-or-interface-in-typescript-73bf66de19e9" target="_blank" rel="noreferrer noopener">type</a>&nbsp;&#8211; allows the definition of a data class without any business logic or methods, just data. It can be also useful to avoid the usage of magic strings in the code.</li>



<li><a href="https://javascript.plainenglish.io/when-to-best-use-type-class-or-interface-in-typescript-73bf66de19e9" target="_blank" rel="noreferrer noopener">enum</a>&nbsp;&#8211; allows the definition of a enumeration</li>



<li><a href="https://javascript.plainenglish.io/when-to-best-use-type-class-or-interface-in-typescript-73bf66de19e9" target="_blank" rel="noreferrer noopener">interface&nbsp;</a>&#8211; allows the definition of a interface that can then be implemented by a concret class.</li>



<li><a href="https://javascript.plainenglish.io/when-to-best-use-type-class-or-interface-in-typescript-73bf66de19e9" target="_blank" rel="noreferrer noopener">class</a>&nbsp;&#8211; allows the definition of a class that optionally implements an interface</li>



<li><a href="https://www.typescriptlang.org/docs/handbook/2/classes.html" target="_blank" rel="noreferrer noopener">extends&nbsp;</a>&#8211; when used, it allows a class to inherit from another class</li>



<li><a href="https://www.typescriptlang.org/docs/handbook/modules.html#export" target="_blank" rel="noreferrer noopener">export&nbsp;</a>&#8211;&nbsp;allows the export<strong>&nbsp;</strong>of functions, variables, interfaces and classes that can be imported with the import statement</li>



<li><a href="https://www.typescriptlang.org/docs/handbook/modules.html#import" target="_blank" rel="noreferrer noopener">import</a>&nbsp;&#8211; allows the import of functions, variables, interfaces and classes exported with the export statement</li>
</ul>



<p>Useful links:</p>



<ul class="wp-block-list">
<li><a href="https://www.youtube.com/watch?v=ahCwqrYpIuM" target="_blank" rel="noreferrer noopener">TypeScript &#8211; The Basics (video)</a></li>



<li><a href="https://www.typescriptlang.org/docs/" target="_blank" rel="noreferrer noopener">The starting point for learning TypeScript</a></li>



<li><a href="https://www.typescriptlang.org/docs/handbook/typescript-from-scratch.html" target="_blank" rel="noreferrer noopener">TypeScript for the New Programmer</a></li>



<li><a href="https://www.tutorialsteacher.com/typescript" target="_blank" rel="noreferrer noopener">TypeScript Tutorials</a></li>



<li><a href="https://github.com/labs42io/clean-code-typescript" target="_blank" rel="noreferrer noopener">Clean Code concepts adapted for TypeScript</a></li>
</ul>



<p></p>



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



<p><a href="https://reactjs.org/" target="_blank" rel="noreferrer noopener">React </a>is a JavaScript library for building user interfaces and is at the core of SPFx to build advanced applications. </p>



<ul class="wp-block-list">
<li><strong>Declarative:</strong>&nbsp;React makes it painless to create interactive UIs. Design simple views for each state in your application and React will efficiently update and render just the right components when your data changes. Declarative views make your code more predictable, simpler to understand, and easier to debug.</li>



<li><strong>Component-Based:</strong>&nbsp;Build encapsulated components that manage their state, then compose them to make complex UIs. Since component logic is written in JavaScript instead of templates, you can easily pass rich data through your app and keep the state out of the DOM.</li>



<li><strong>Learn Once, Write Anywhere:</strong>&nbsp;We don&#8217;t make assumptions about the rest of your technology stack, so you can develop new features in React without rewriting existing code. React can also render on the server using Node and power mobile apps using&nbsp;<a href="https://reactnative.dev/" target="_blank" rel="noreferrer noopener">React Native</a>.</li>
</ul>



<p>Useful links:</p>



<ul class="wp-block-list">
<li><a href="https://reactjs.org" target="_blank" rel="noreferrer noopener">React Official Web Site</a></li>



<li><a href="https://reactjs.org/tutorial/tutorial.html">Tutorial: Intro to React</a></li>



<li><a href="https://reactjs.org/docs/react-component.html#the-component-lifecycle" target="_blank" rel="noreferrer noopener">React Component LifeCycle</a></li>



<li><a href="https://laurakokkarinen.com/how-to-get-started-with-react-for-building-advanced-spfx-solutions/" target="_blank" rel="noreferrer noopener">How to get started with React for building advanced SPFx solutions</a></li>



<li><a href="https://global-sharepoint.com/sharepoint-online/sharepoint-online-crud-operations-using-spfx-reactjs-framework/" target="_blank" rel="noreferrer noopener">SharePoint Online: CRUD operations using SPFx ReactJS framework</a></li>



<li><a href="https://kentcdodds.com/blog/how-to-react" target="_blank" rel="noreferrer noopener">How to React ⚛️</a></li>



<li><a href="https://developer.microsoft.com/en-us/fluentui" target="_blank" rel="noreferrer noopener">Fluent UI (Microsoft Components for Microsoft 365 Applications)</a></li>



<li><a href="https://reactjs.org/docs/lists-and-keys.html" target="_blank" rel="noreferrer noopener">React: Lists and Keys</a></li>



<li><a href="https://www.sitepoint.com/implement-memoization-in-react-to-improve-performance/" target="_blank" rel="noreferrer noopener">How to Implement Memoization in React to Improve Performance</a></li>
</ul>



<p>To help developers to build advanced SPFx solutions, there are a lot of React controls, either developed by Microsoft such as <a href="https://developer.microsoft.com/en-us/fluentui" target="_blank" rel="noreferrer noopener">Fluent UI</a> or by communities such as the <a href="https://pnp.github.io/" target="_blank" rel="noreferrer noopener">PnP community</a>.</p>



<p></p>



<h2 class="wp-block-heading">PnP JS</h2>



<p><a href="https://pnp.github.io/pnpjs/">PnP JS</a>&nbsp;is a NPM package that simplifies interaction with SharePoint Online and Microsoft Graph.</p>



<p>Useful links:</p>



<ul class="wp-block-list">
<li><a href="https://pnp.github.io/pnpjs/sp/items/">Working with SharePoint List Items</a></li>



<li><a href="https://docs.microsoft.com/en-us/sharepoint/dev/spfx/web-parts/guidance/use-sp-pnp-js-with-spfx-web-parts">Use @pnp/sp (PnPJS) library with SharePoint Framework web parts</a></li>



<li><a href="https://ravichandran.blog/2020/06/24/a-complete-guide-to-getting-and-setting-fields-value-using-pnp-js-in-spfx/">A Complete Guide to Getting and Setting Fields Value using PnP JS in SPFx</a></li>



<li><a href="https://pnp.github.io/pnpjs/packages/#graph">Using PnP JS with Microsoft Graph</a></li>



<li><a href="https://pnp.github.io/#sdks" target="_blank" rel="noreferrer noopener">PnP SDKs</a></li>
</ul>



<p></p>



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



<p>Here are some of the most useful repositories to start learning SharePoint Framework:</p>



<ul class="wp-block-list">
<li><a href="https://github.com/pnp" target="_blank" rel="noreferrer noopener">Microsoft 365 Community</a></li>



<li><a href="https://github.com/orgs/pnp/repositories?q=spfx&amp;type=all&amp;language=&amp;sort=%20-&nbsp;" target="_blank" rel="noreferrer noopener">Microsoft 365 Community Repositories</a></li>



<li><a href="https://github.com/pnp/sp-dev-fx-webparts - pnp/sp-dev-fx-webparts" target="_blank" rel="noreferrer noopener">SharePoint Framework web part, Teams tab, personal app, app page samples</a></li>



<li><a href="https://github.com/pnp/sp-dev-fx-controls-react%20-%20pnp/sp-dev-fx-controls-react" target="_blank" rel="noreferrer noopener">Reusable React controls for SPFx solutions</a></li>



<li><a href="https://github.com/pnp/sp-dev-fx-webparts" target="_blank" rel="noreferrer noopener">sp-dev-fx-webparts</a></li>



<li><a href="https://github.com/pnp/sp-dev-fx-extensions" target="_blank" rel="noreferrer noopener">pnp/sp-dev-fx-extensions</a></li>



<li><a href="https://github.com/pnp/sp-dev-fx-property-controls" target="_blank" rel="noreferrer noopener">pnp/sp-dev-fx-property-controls</a></li>



<li><a href="https://github.com/pnp/sp-dev-fx-aces" target="_blank" rel="noreferrer noopener">pnp/sp-dev-fx-aces</a></li>



<li><a href="https://devblogs.microsoft.com/microsoft365dev/announcing-new-microsoft-365-unified-sample-gallery-with-more-than-1000-samples/" target="_blank" rel="noreferrer noopener">Microsoft 365 Unified Sample Gallery with more than 1000 samples</a></li>
</ul>



<p></p>



<h2 class="wp-block-heading">Concepts / Tooling</h2>



<h3 class="wp-block-heading">Core SPFx Concepts</h3>



<ul class="wp-block-list">
<li><a href="https://docs.microsoft.com/en-us/sharepoint/dev/spfx/tools-and-libraries#javascript-frameworks" target="_blank" rel="noreferrer noopener">JavaScript frameworks</a></li>



<li><a href="https://docs.microsoft.com/en-us/sharepoint/dev/spfx/tools-and-libraries#nodejs" target="_blank" rel="noreferrer noopener">Node.js</a></li>



<li><a href="https://docs.microsoft.com/en-us/sharepoint/dev/spfx/tools-and-libraries#node-package-manager-npm" target="_blank" rel="noreferrer noopener">NPM (Node Package Manager)</a></li>



<li><a href="https://docs.microsoft.com/en-us/sharepoint/dev/spfx/tools-and-libraries#yeoman-generators" target="_blank" rel="noreferrer noopener">Yeoman</a></li>



<li><a href="https://docs.microsoft.com/en-us/sharepoint/dev/spfx/tools-and-libraries#gulp-task-runner" target="_blank" rel="noreferrer noopener">Gulp</a></li>



<li><a href="https://docs.microsoft.com/en-us/sharepoint/dev/spfx/tools-and-libraries#webpack" target="_blank" rel="noreferrer noopener">WebPack</a></li>
</ul>



<h3 class="wp-block-heading">NPM Packages</h3>



<p>SharePoint client-side development tools use the&nbsp;<a href="https://www.npmjs.com/" target="_blank" rel="noreferrer noopener">npm</a>&nbsp;package manager, like&nbsp;<a href="https://www.nuget.org/" target="_blank" rel="noreferrer noopener">NuGet</a>, to manage dependencies and other required JavaScript helpers. npm is typically included as part of Node.js setup.</p>



<p>Package installation modes:</p>



<ul class="wp-block-list">
<li><strong>npm install @package</strong> &#8211; installs the package</li>



<li><strong>npm install @package &#8211;save</strong> &#8211; installs the package and updates package.json automatically (dependencies section)</li>



<li><strong>npm install @package@version &#8211;save-dev </strong>&#8211; installs the package and updates package.json automatically (devDependencies section)</li>



<li><strong>npm install @package@version &#8211;save </strong>&#8211; installs the package with the specified version and updates package.json automatically (dependencies section)</li>



<li><strong>npm install @package@version &#8211;save-dev </strong>&#8211; installs the package with the specified version and updates package.json automatically (devDependencies section)</li>
</ul>



<p>Useful npm packages to include in a SPFx solution:</p>



<ul class="wp-block-list">
<li><strong><strong>npm install gulp yo @microsoft/generator-sharepoint@&lt;spfx_version&gt; &#8211;global</strong></strong>
<ul class="wp-block-list">
<li><strong>   Example: npm install gulp yo @microsoft/generator-sharepoint@1.15.2 &#8211;global</strong></li>
</ul>
</li>



<li><strong>npm install @microsoft/microsoft-graph-types &#8211;save</strong></li>



<li><strong>npm install @pnp/sp &#8211;save</strong></li>



<li><strong>npm install @pnp/graph &#8211;save</strong></li>



<li><strong>npm install @fluentui/react &#8211;save</strong></li>



<li><strong>npm install @pnp/spfx-controls-react &#8211;save</strong></li>



<li><strong>npm install @pnp/spfx-property-controls &#8211;save</strong></li>



<li><strong>npm install localforage &nbsp;&#8211;save</strong></li>



<li><strong>npm install @luudjanssen/localforage-cache &#8211;save</strong></li>



<li><strong>npm install spfx-fast-serve -g</strong></li>



<li><strong>npm install -g pnpm</strong></li>
</ul>



<h3 class="wp-block-heading">Gulp Commands</h3>



<ul class="wp-block-list">
<li><strong>gulp clean</strong> &#8211; cleans the solution. Cleans the dist and temp folders from the solution</li>



<li><strong>gulp trust-dev-cert</strong> &#8211; installs the development certificate</li>



<li><strong>gulp build </strong>&#8211; builds the solution, tranforms TypeScript into JavaScript</li>



<li><strong>gulp bundle </strong>&#8211; bundles the solution and minimizes CSS and JS (in debug mode)</li>



<li><strong>gulp bundle &#8211;ship</strong> &#8211; bundles the solution and minimizes CSS and JS for deployment in SharePoint in production mode (release mode)</li>



<li><strong>gulp package-solution</strong> &#8211; generates package (.sppkg file) but to run in debug mode</li>



<li><strong>gulp package-solution &#8211;ship</strong> &#8211; generates package (.sppkg file) to run in production mode</li>



<li><strong>gulp serve</strong> &#8211; launches SharePoint Workbench to test web parts in debug mode</li>



<li><strong>gulp serve &#8211;nobrowser</strong> &#8211; allows testing web parts in debug mode but without launching SharePoint Workbench</li>
</ul>



<p></p>



<h2 class="wp-block-heading">SPFx Development Environment</h2>



<h3 class="wp-block-heading">Setup Development Environment</h3>



<p>To <a href="https://docs.microsoft.com/en-us/sharepoint/dev/spfx/set-up-your-development-environment" target="_blank" rel="noreferrer noopener">setup your development environment</a>, run the following commands from the command prompt:</p>



<ul class="wp-block-list">
<li>npm install gulp-cli yo @microsoft/generator-sharepoint &#8211;global</li>



<li>npm install webpack &#8211;global</li>



<li>npm install &#8211;save-dev webpack</li>



<li>gulp trust-dev-cert</li>
</ul>



<h3 class="wp-block-heading">Node Version Manager (nvm)</h3>



<p>Node Version Manager (NVM) allows developers to install multiple versions of node. This can be useful when working with different SPFx versions that use different versions of Node.</p>



<p>To download NVM, click <a href="https://github.com/coreybutler/nvm-windows/releases" target="_blank" rel="noreferrer noopener">here</a>.</p>



<h4 class="wp-block-heading">Install Node using NVM</h4>



<p>After installing NVM, to install a node version use the following command:</p>



<p>nvm install &lt;node_version&gt;. Example: nvm install 14.19.1</p>



<h4 class="wp-block-heading">Switch between versions of Node</h4>



<p>If you have multiple versions of Node, you can switch between them using the following command:</p>



<p>nvm use &lt;node_version&gt;. Example: nvm use 12.22.10</p>



<p>To have a full list of the installed node versions, run &#8220;nvm list&#8221;.</p>



<h3 class="wp-block-heading">SPFx Fast Serve</h3>



<p>If you have a big SPFx solution, gulp serve can take a lot of time, especially if you want to rapidly test your developments. SPFx Fast Serve is a command line utility, which modifies your SharePoint Framework solution, so that it runs continuous serve command as fast as possible. To know more, click <a href="https://github.com/s-KaiNet/spfx-fast-serve" target="_blank" rel="noreferrer noopener">here</a>.&nbsp;</p>



<p>Here is a comparison between gulp serve and SPFx Fast Serve (times depend on hardware, environment). The times listed below are &#8220;refresh&#8221; time (the time needed to compile your project when you change a file and start refreshing a page in a browser):</p>



<figure class="wp-block-table"><table><thead><tr><th></th><th>gulp serve</th><th>spfx-fast-serve</th></tr></thead><tbody><tr><td>Default &#8220;Hello World&#8221;<br>React web part</td><td>3-5 sec</td><td>0.1-0.2 sec</td></tr><tr><td><a href="https://github.com/microsoft-search/pnp-modern-search">PnP Modern Search solution</a></td><td>28-34 sec</td><td>2-4 sec</td></tr><tr><td><a href="https://github.com/SharePoint/sp-starter-kit">SP Starter Kit solution</a>&nbsp;(v1)</td><td>40-50 sec</td><td>2-3 sec</td></tr></tbody></table></figure>



<p>This is a must have for every SharePoint Framework Developer!</p>



<h3 class="wp-block-heading">Recommended Visual Studio Code Extensions</h3>



<ul class="wp-block-list">
<li><a href="https://marketplace.visualstudio.com/items?itemName=formulahendry.auto-rename-tag">Auto Rename Tag</a></li>



<li><a href="https://www.tabnine.com/install/vscode">Tabnine</a></li>



<li><a href="https://marketplace.visualstudio.com/items?itemName=vscode-icons-team.vscode-icons">VSCode icons</a></li>



<li><a href="https://marketplace.visualstudio.com/items?itemName=CoenraadS.bracket-pair-colorizer">Bracket Pair Colorizer</a>&nbsp;</li>



<li><a href="https://marketplace.visualstudio.com/items?itemName=VisualStudioExptTeam.vscodeintellicode">Visual Code IntelliCode</a>&nbsp;</li>



<li><a href="https://www.sonarlint.org/vscode">SonarLint for Visual Studio Code</a>&nbsp;</li>



<li><a href="https://marketplace.visualstudio.com/items?itemName=ms-vscode.PowerShell">PowerShell</a>&nbsp;</li>



<li><a href="https://marketplace.visualstudio.com/items?itemName=ritwickdey.LiveServer">Live Server</a></li>



<li><a href="https://marketplace.visualstudio.com/items?itemName=wix.glean">Glean</a></li>



<li><a href="https://marketplace.visualstudio.com/items?itemName=rangav.vscode-thunder-client" target="_blank" rel="noreferrer noopener">Thunder Client</a></li>



<li><a href="https://marketplace.visualstudio.com/items?itemName=eliostruyf.spfx-snippets" target="_blank" rel="noreferrer noopener">SPFx Snippets</a></li>



<li><a href="https://marketplace.visualstudio.com/items?itemName=eamodio.gitlens" target="_blank" rel="noreferrer noopener">GitLens</a></li>



<li><a href="https://marketplace.visualstudio.com/items?itemName=Gruntfuggly.todo-tree" target="_blank" rel="noreferrer noopener">Todo Tree</a></li>



<li><a href="https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint" target="_blank" rel="noreferrer noopener">ESLint</a></li>
</ul>



<p></p>



<h2 class="wp-block-heading">SPFx Quick Start</h2>



<p>The most common development component in SPFx is the web part. To better understand how to create your first web part, read&nbsp;<a href="https://laurakokkarinen.com/how-to-get-started-with-react-for-building-advanced-spfx-solutions/" target="_blank" rel="noreferrer noopener">this article</a>. In SPFx client-side web parts, we have the following components:</p>



<ul class="wp-block-list">
<li>Web part main component &#8211; acts as a container to the React component that has the main logic. In this example, we have a web part class called&nbsp;<strong>BirthdaysWorkAnniversariesNewCollaboratorsWebPart&nbsp;</strong>that renders the&nbsp;<strong>BirthdaysWorkAnniversariesNewCollaborators&nbsp;</strong>React component that has the web part main logic.</li>
</ul>



<figure class="wp-block-image size-large"><img decoding="async" width="1024" height="532" src="https://blogit.create.pt/wp-content/uploads/2022/05/spfx_webpart-1024x532.png" alt="" class="wp-image-12693" srcset="https://blogit.create.pt/wp-content/uploads/2022/05/spfx_webpart-1024x532.png 1024w, https://blogit.create.pt/wp-content/uploads/2022/05/spfx_webpart-300x156.png 300w, https://blogit.create.pt/wp-content/uploads/2022/05/spfx_webpart-768x399.png 768w, https://blogit.create.pt/wp-content/uploads/2022/05/spfx_webpart-696x362.png 696w, https://blogit.create.pt/wp-content/uploads/2022/05/spfx_webpart-1068x555.png 1068w, https://blogit.create.pt/wp-content/uploads/2022/05/spfx_webpart-808x420.png 808w, https://blogit.create.pt/wp-content/uploads/2022/05/spfx_webpart.png 1079w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<ul class="wp-block-list">
<li>React component associated with the web part. This file has a&nbsp;<strong>render&nbsp;</strong>method responsible for the rendering of the web part UI and uses two major React concepts:&nbsp;<strong>props&nbsp;</strong>supplied by the web part that allows users to configure the web part behavior and&nbsp;<strong>state</strong>&nbsp;that also allows to control how the the web part is rendered. The main difference between props and state is that state can be changed and props can&#8217;t (in the code they are readonly). In the example below, we have the&nbsp;<strong>BirthdaysWorkAnniversariesNewCollaborators&nbsp;</strong>React component that was called by the&nbsp;<strong>BirthdaysWorkAnniversariesNewCollaboratorsWebPart&nbsp;</strong>web part.</li>
</ul>



<figure class="wp-block-image size-large"><img decoding="async" width="1024" height="694" src="https://blogit.create.pt/wp-content/uploads/2022/05/spfx_component-1024x694.png" alt="" class="wp-image-12694" srcset="https://blogit.create.pt/wp-content/uploads/2022/05/spfx_component-1024x694.png 1024w, https://blogit.create.pt/wp-content/uploads/2022/05/spfx_component-300x203.png 300w, https://blogit.create.pt/wp-content/uploads/2022/05/spfx_component-768x521.png 768w, https://blogit.create.pt/wp-content/uploads/2022/05/spfx_component-696x472.png 696w, https://blogit.create.pt/wp-content/uploads/2022/05/spfx_component-1068x724.png 1068w, https://blogit.create.pt/wp-content/uploads/2022/05/spfx_component-619x420.png 619w, https://blogit.create.pt/wp-content/uploads/2022/05/spfx_component.png 1103w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<ul class="wp-block-list">
<li>Other associated files such as:
<ul class="wp-block-list">
<li>Service classes to get data from SharePoint or Microsoft Graph for instance</li>



<li>Data object classes (models)</li>



<li>Helper classes</li>



<li>etc</li>
</ul>
</li>
</ul>



<p></p>



<h2 class="wp-block-heading">SPFx Tutorials</h2>



<h3 class="wp-block-heading">Getting Started with SPFx</h3>



<ul class="wp-block-list">
<li><a href="https://www.youtube.com/watch?v=6WTtjXP5yW4&amp;list=PLR9nK3mnD-OXvSWvS2zglCzz4iplhVrKq&amp;index=3" target="_blank" rel="noreferrer noopener">SharePoint Framework Tutorial 1 &#8211; HelloWorld WebPart</a></li>



<li><a href="https://www.youtube.com/watch?v=5M3zDpgxIMs&amp;list=PLR9nK3mnD-OXvSWvS2zglCzz4iplhVrKq&amp;index=4" target="_blank" rel="noreferrer noopener">SharePoint Framework Tutorial 2 &#8211; HelloWorld, Talking to SharePoint</a></li>



<li><a href="https://www.youtube.com/watch?v=FkFg32NSTM0&amp;list=PLR9nK3mnD-OXvSWvS2zglCzz4iplhVrKq&amp;index=5" target="_blank" rel="noreferrer noopener">SharePoint Framework Tutorial 3 &#8211; HelloWorld, Serving in SharePoint Page</a></li>



<li><a href="https://www.youtube.com/watch?v=N-KowN-UwTM&amp;list=PLR9nK3mnD-OXvSWvS2zglCzz4iplhVrKq&amp;index=6" target="_blank" rel="noreferrer noopener">SharePoint Framework Tutorial 4 &#8211; HelloWorld, Deploy to Office 365 CDN</a></li>



<li><a href="https://www.youtube.com/watch?v=tHzbh5JoC-A&amp;list=PLR9nK3mnD-OXvSWvS2zglCzz4iplhVrKq&amp;index=8" target="_blank" rel="noreferrer noopener">SharePoint Framework Tutorial &#8211; Using Microsoft Graph APIs</a></li>



<li><a href="https://www.youtube.com/watch?v=JoTAC2i-XeU&amp;list=PLR9nK3mnD-OXvSWvS2zglCzz4iplhVrKq&amp;index=8" target="_blank" rel="noreferrer noopener">SharePoint Framework Tutorial &#8211; Surfacing your solution as a Microsoft Teams tab</a></li>



<li><a href="https://www.youtube.com/watch?v=kNrYd8nYaZY&amp;list=PLR9nK3mnD-OXvSWvS2zglCzz4iplhVrKq&amp;index=10" target="_blank" rel="noreferrer noopener">SharePoint Framework Tutorial &#8211; Using Office UI Fabric React Components</a></li>



<li><a href="https://www.youtube.com/watch?v=09uoG6Voeew&amp;list=PLR9nK3mnD-OXvSWvS2zglCzz4iplhVrKq&amp;index=11" target="_blank" rel="noreferrer noopener">SharePoint Framework Tutorial &#8211; Provisioning SharePoint assets from SPFx solution</a></li>



<li><a href="https://www.youtube.com/watch?v=8BATz6LD6tA" target="_blank" rel="noreferrer noopener">SharePoint Framework Tutorial &#8211; Create a Full Width Web Part Page with SPFx</a></li>



<li><a href="https://www.youtube.com/watch?v=oNChcluMrm8" target="_blank" rel="noreferrer noopener">Debugging SharePoint Framework solutions in Visual Studio Code</a></li>



<li><a href="https://docs.microsoft.com/en-us/learn/modules/sharepoint-spfx-spcontent/" target="_blank" rel="noreferrer noopener">Work with SharePoint Content using the SharePoint Framework</a></li>
</ul>



<h3 class="wp-block-heading">Developing SPFx Extensions</h3>



<ul class="wp-block-list">
<li><a href="https://www.youtube.com/watch?v=DnfRIl2YN8g&amp;list=PLR9nK3mnD-OXtWO5AIIr7nCR3sWutACpV&amp;index=2" target="_blank" rel="noreferrer noopener">SharePoint Framework Extensions Tutorial 1 &#8211; Build your first Extension</a></li>



<li><a href="https://www.youtube.com/watch?v=Wm1PG8U5bSw&amp;list=PLR9nK3mnD-OXtWO5AIIr7nCR3sWutACpV&amp;index=2" target="_blank" rel="noreferrer noopener">SharePoint Framework Extensions Tutorial 2 &#8211; Using page placeholders from Application Customizer</a></li>



<li><a href="https://www.youtube.com/watch?v=tReoZGtAYB4&amp;list=PLR9nK3mnD-OXtWO5AIIr7nCR3sWutACpV&amp;index=3" target="_blank" rel="noreferrer noopener">SharePoint Framework Extensions Tutorial 3 &#8211; Deploy your extension to site collection</a></li>



<li><a href="https://www.youtube.com/watch?v=xsZbRliakyM&amp;list=PLR9nK3mnD-OXtWO5AIIr7nCR3sWutACpV&amp;index=4" target="_blank" rel="noreferrer noopener">SharePoint Framework Extensions Tutorial 4 &#8211; Hosting extension from Office 365 CDN</a></li>



<li><a href="https://www.youtube.com/watch?v=mBZ7Sq_KfDA&amp;list=PLR9nK3mnD-OXtWO5AIIr7nCR3sWutACpV&amp;index=5" target="_blank" rel="noreferrer noopener">SharePoint Framework Extensions Tutorial &#8211; Build your first Field Customizer</a></li>



<li><a href="https://www.youtube.com/watch?v=uaUGtLrNbRA&amp;list=PLR9nK3mnD-OXtWO5AIIr7nCR3sWutACpV&amp;index=6" target="_blank" rel="noreferrer noopener">SharePoint Framework Extensions Tutorial &#8211; Build your first ListView Command Set</a></li>
</ul>



<h3 class="wp-block-heading">SharePoint CRUD Operations with SPFx</h3>



<ul class="wp-block-list">
<li><a href="https://www.c-sharpcorner.com/article/sharepoint-list-items-crud-operations-demo-using-pnpjs-in-react-based-spfx-webpa/" target="_blank" rel="noreferrer noopener">SharePoint List Items CRUD Operations Demo Using PnPJS In React based SPFx Webpart</a></li>



<li><a href="https://github.com/miguelisidoro/SharePoint/tree/master/SPFx/react-detailslist" target="_blank" rel="noreferrer noopener">SharePoint CRUD Sample with Details List Fluent UI Control and a SharePoint List</a></li>
</ul>



<h3 class="wp-block-heading">Graph API</h3>



<ul class="wp-block-list">
<li><a href="https://laurakokkarinen.com/the-ultimate-beginners-guide-to-microsoft-graph/" target="_blank" rel="noreferrer noopener">The Ultimate Beginner&#8217;s Guide to Microsoft Graph</a></li>
</ul>



<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/2022/05/09/sharepoint-framework-spfx-learning-guide/">SharePoint Framework (SPFx) Learning Guide</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blogit.create.pt/miguelisidoro/2022/05/09/sharepoint-framework-spfx-learning-guide/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<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 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>How to Configure a Hybrid Experience with Office 365 in a SharePoint 2019 farm</title>
		<link>https://blogit.create.pt/miguelisidoro/2019/10/20/how-to-enable-a-hybrid-experience-with-office-365-in-a-sharepoint-2019-farm/</link>
					<comments>https://blogit.create.pt/miguelisidoro/2019/10/20/how-to-enable-a-hybrid-experience-with-office-365-in-a-sharepoint-2019-farm/#comments</comments>
		
		<dc:creator><![CDATA[Miguel Isidoro]]></dc:creator>
		<pubDate>Sun, 20 Oct 2019 22:05:35 +0000</pubDate>
				<category><![CDATA[SharePoint 2019]]></category>
		<category><![CDATA[Microsoft 365]]></category>
		<category><![CDATA[Collaboration]]></category>
		<category><![CDATA[Hybrid]]></category>
		<category><![CDATA[Modern SharePoint]]></category>
		<category><![CDATA[Modern Workplace]]></category>
		<category><![CDATA[Office 365]]></category>
		<guid isPermaLink="false">https://blogit.create.pt/?p=11534</guid>

					<description><![CDATA[<p>This post explains how you can configure a hybrid experience in a SharePoint 2019 farm. Introduction Organizations are rapidly moving into the Cloud with Office 365, but some are still not ready to move completely to Office 365 and SharePoint Online. Upgrading to SharePoint 2019, that has an improved support for a hybrid scenario, can [&#8230;]</p>
<p>The post <a href="https://blogit.create.pt/miguelisidoro/2019/10/20/how-to-enable-a-hybrid-experience-with-office-365-in-a-sharepoint-2019-farm/">How to Configure a Hybrid Experience with Office 365 in a SharePoint 2019 farm</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 hybrid experience in a SharePoint 2019 farm.</p>



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



<p>Organizations are rapidly moving into the Cloud with Office 365, but some are still not ready to move completely to Office 365 and SharePoint Online.</p>



<p>Upgrading to SharePoint 2019, that has an improved support for a hybrid scenario, can be a valid solution to allow organizations to gradually take the path to the Cloud.</p>



<p>A <a href="https://techcommunity.microsoft.com/t5/Microsoft-SharePoint-Blog/SharePoint-Server-2019-Hybrid-What-do-you-actually-get/ba-p/327320" target="_blank" rel="noreferrer noopener" aria-label="hybrid scenario (opens in a new tab)">hybrid scenario</a> in SharePoint 2019 will allow you the following:</p>



<ul class="wp-block-list"><li>Hybrid App Launcher</li><li>Hybrid Sites</li><li>Hybrid OneDrive for Business</li><li>Hybrid Business to Business (B2B) sites</li><li>Hybrid self-service site creation</li><li>Hybrid auditing</li><li>Hybrid taxonomy and content types</li><li>Hybrid Business Connectivity Services</li><li>Hybrid Search</li></ul>



<p>With these scenarios, organizations can keep some of their workloads On-Premises and start taking advantage of all the innovations in SharePoint Online and Office 365.</p>



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



<p>To enable an hybrid environment in a SharePoint 2019 farm, you will have to follow the following steps in Central Administration:</p>



<ul class="wp-block-list"><li>Select the &#8220;Configuration Wizards&#8221; option</li></ul>



<div class="wp-block-image"><figure class="aligncenter"><img decoding="async" width="942" height="546" src="https://blogit.create.pt////wp-content/uploads/2019/10/SP2019_CentralAdmin_Wizard.jpg" alt="" class="wp-image-11547" srcset="https://blogit.create.pt/wp-content/uploads/2019/10/SP2019_CentralAdmin_Wizard.jpg 942w, https://blogit.create.pt/wp-content/uploads/2019/10/SP2019_CentralAdmin_Wizard-300x174.jpg 300w, https://blogit.create.pt/wp-content/uploads/2019/10/SP2019_CentralAdmin_Wizard-768x445.jpg 768w, https://blogit.create.pt/wp-content/uploads/2019/10/SP2019_CentralAdmin_Wizard-696x403.jpg 696w, https://blogit.create.pt/wp-content/uploads/2019/10/SP2019_CentralAdmin_Wizard-725x420.jpg 725w" sizes="(max-width: 942px) 100vw, 942px" /><figcaption>SharePoint 2019 Configuration Wizards</figcaption></figure></div>



<ul class="wp-block-list"><li>Launch the Hybrid Configuration</li></ul>



<div class="wp-block-image"><figure class="aligncenter"><img decoding="async" width="769" height="263" src="https://blogit.create.pt////wp-content/uploads/2019/10/SP2019_CentralAdmin_HybridWizard.jpg" alt="" class="wp-image-11545" srcset="https://blogit.create.pt/wp-content/uploads/2019/10/SP2019_CentralAdmin_HybridWizard.jpg 769w, https://blogit.create.pt/wp-content/uploads/2019/10/SP2019_CentralAdmin_HybridWizard-300x103.jpg 300w, https://blogit.create.pt/wp-content/uploads/2019/10/SP2019_CentralAdmin_HybridWizard-768x263.jpg 768w, https://blogit.create.pt/wp-content/uploads/2019/10/SP2019_CentralAdmin_HybridWizard-696x238.jpg 696w" sizes="(max-width: 769px) 100vw, 769px" /><figcaption><em>SharePoint 2019 Hybrid Wizard</em> Selection</figcaption></figure></div>



<ul class="wp-block-list"><li>Select &#8220;Next&#8221;</li></ul>



<div class="wp-block-image"><figure class="aligncenter"><img decoding="async" width="701" height="632" src="https://blogit.create.pt////wp-content/uploads/2019/10/SP2019_CentralAdmin_HybridWizard2.jpg" alt="" class="wp-image-11550" srcset="https://blogit.create.pt/wp-content/uploads/2019/10/SP2019_CentralAdmin_HybridWizard2.jpg 701w, https://blogit.create.pt/wp-content/uploads/2019/10/SP2019_CentralAdmin_HybridWizard2-300x270.jpg 300w, https://blogit.create.pt/wp-content/uploads/2019/10/SP2019_CentralAdmin_HybridWizard2-696x627.jpg 696w, https://blogit.create.pt/wp-content/uploads/2019/10/SP2019_CentralAdmin_HybridWizard2-466x420.jpg 466w" sizes="(max-width: 701px) 100vw, 701px" /><figcaption><em>SharePoint 2019 Hybrid</em> <em>Wizard</em></figcaption></figure></div>



<ul class="wp-block-list"><li>Select the SharePoint 2019 and Office 365 accounts that will allow the hybrid experience to be enabled. The Office 365 account must be of a global administrator. In the end, select the &#8220;Validate credentials&#8221; option so that both credentials can be validated.</li></ul>



<div class="wp-block-image"><figure class="aligncenter size-large"><img decoding="async" width="696" height="629" src="https://blogit.create.pt////wp-content/uploads/2020/04/SP2019_CentralAdmin_HybridWizard3.jpg" alt="" class="wp-image-11791" srcset="https://blogit.create.pt/wp-content/uploads/2020/04/SP2019_CentralAdmin_HybridWizard3.jpg 696w, https://blogit.create.pt/wp-content/uploads/2020/04/SP2019_CentralAdmin_HybridWizard3-300x271.jpg 300w, https://blogit.create.pt/wp-content/uploads/2020/04/SP2019_CentralAdmin_HybridWizard3-465x420.jpg 465w" sizes="(max-width: 696px) 100vw, 696px" /><figcaption><em>SharePoint 2019 Hybrid Wizard</em> Credential Selection</figcaption></figure></div>



<ul class="wp-block-list"><li>Next, the credentials are going to be validated</li></ul>



<div class="wp-block-image"><figure class="aligncenter"><img decoding="async" width="438" height="580" src="https://blogit.create.pt////wp-content/uploads/2019/10/SP2019_CentralAdmin_HybridWizard4.jpg" alt="" class="wp-image-11565" srcset="https://blogit.create.pt/wp-content/uploads/2019/10/SP2019_CentralAdmin_HybridWizard4.jpg 438w, https://blogit.create.pt/wp-content/uploads/2019/10/SP2019_CentralAdmin_HybridWizard4-227x300.jpg 227w, https://blogit.create.pt/wp-content/uploads/2019/10/SP2019_CentralAdmin_HybridWizard4-317x420.jpg 317w" sizes="(max-width: 438px) 100vw, 438px" /><figcaption><em>SharePoint 2019 Hybrid Wizard Credential Validation</em></figcaption></figure></div>



<ul class="wp-block-list"><li>The Hybrid Configuration prerequisites are going to be validated. In my case, some errors were found.</li></ul>



<div class="wp-block-image"><figure class="aligncenter"><img decoding="async" width="700" height="633" src="https://blogit.create.pt////wp-content/uploads/2019/10/SP2019_CentralAdmin_HybridWizard5.jpg" alt="" class="wp-image-11558" srcset="https://blogit.create.pt/wp-content/uploads/2019/10/SP2019_CentralAdmin_HybridWizard5.jpg 700w, https://blogit.create.pt/wp-content/uploads/2019/10/SP2019_CentralAdmin_HybridWizard5-300x271.jpg 300w, https://blogit.create.pt/wp-content/uploads/2019/10/SP2019_CentralAdmin_HybridWizard5-696x629.jpg 696w, https://blogit.create.pt/wp-content/uploads/2019/10/SP2019_CentralAdmin_HybridWizard5-464x420.jpg 464w" sizes="(max-width: 700px) 100vw, 700px" /><figcaption><em>SharePoint 2019 Hybrid Wizard Prerequisites valiation (with errors)</em></figcaption></figure></div>



<p>The errors that the wizard showed were originated by the fact the App Management Service was not configured in the farm. To solve this problem, I had just had to create a App Management Service service application. In my case, I used an <a rel="noreferrer noopener" aria-label="automated way to create a service application using AutoSPInstaller (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-1/" target="_blank">automated way to create the service application using AutoSPInstaller</a>.</p>



<div class="wp-block-image"><figure class="aligncenter"><img decoding="async" width="1216" height="831" src="https://i0.wp.com/blogit.create.pt/wp-content/uploads/2019/10/SP2019_AutoSPInstaller_EnableAppManagement.jpg?fit=696%2C476&amp;ssl=1" alt="" class="wp-image-11561" srcset="https://blogit.create.pt/wp-content/uploads/2019/10/SP2019_AutoSPInstaller_EnableAppManagement.jpg 1216w, https://blogit.create.pt/wp-content/uploads/2019/10/SP2019_AutoSPInstaller_EnableAppManagement-300x205.jpg 300w, https://blogit.create.pt/wp-content/uploads/2019/10/SP2019_AutoSPInstaller_EnableAppManagement-768x525.jpg 768w, https://blogit.create.pt/wp-content/uploads/2019/10/SP2019_AutoSPInstaller_EnableAppManagement-1024x700.jpg 1024w, https://blogit.create.pt/wp-content/uploads/2019/10/SP2019_AutoSPInstaller_EnableAppManagement-218x150.jpg 218w, https://blogit.create.pt/wp-content/uploads/2019/10/SP2019_AutoSPInstaller_EnableAppManagement-696x476.jpg 696w, https://blogit.create.pt/wp-content/uploads/2019/10/SP2019_AutoSPInstaller_EnableAppManagement-1068x730.jpg 1068w, https://blogit.create.pt/wp-content/uploads/2019/10/SP2019_AutoSPInstaller_EnableAppManagement-615x420.jpg 615w" sizes="(max-width: 1216px) 100vw, 1216px" /><figcaption><em>Creating the App Management Service service application</em></figcaption></figure></div>



<ul class="wp-block-list"><li>To confirm that the App Management service application was successfully created, go to the Service Applications page and check if the service application is listed</li></ul>



<div class="wp-block-image"><figure class="aligncenter"><img decoding="async" width="1149" height="391" src="https://i0.wp.com/blogit.create.pt/wp-content/uploads/2019/10/SP2019_Hybrid_AppManagementService.jpg?fit=696%2C237&amp;ssl=1" alt="" class="wp-image-11587" srcset="https://blogit.create.pt/wp-content/uploads/2019/10/SP2019_Hybrid_AppManagementService.jpg 1149w, https://blogit.create.pt/wp-content/uploads/2019/10/SP2019_Hybrid_AppManagementService-300x102.jpg 300w, https://blogit.create.pt/wp-content/uploads/2019/10/SP2019_Hybrid_AppManagementService-768x261.jpg 768w, https://blogit.create.pt/wp-content/uploads/2019/10/SP2019_Hybrid_AppManagementService-1024x348.jpg 1024w, https://blogit.create.pt/wp-content/uploads/2019/10/SP2019_Hybrid_AppManagementService-696x237.jpg 696w, https://blogit.create.pt/wp-content/uploads/2019/10/SP2019_Hybrid_AppManagementService-1068x363.jpg 1068w" sizes="(max-width: 1149px) 100vw, 1149px" /><figcaption> App Management service application </figcaption></figure></div>



<ul class="wp-block-list"><li>After creating the service application, I started the Hybrid Configuration Wizard again and the prerequisites are now correcty validated.</li></ul>



<div class="wp-block-image"><figure class="aligncenter"><img decoding="async" width="699" height="632" src="https://blogit.create.pt////wp-content/uploads/2019/10/SP2019_CentralAdmin_HybridWizard6.jpg" alt="" class="wp-image-11570" srcset="https://blogit.create.pt/wp-content/uploads/2019/10/SP2019_CentralAdmin_HybridWizard6.jpg 699w, https://blogit.create.pt/wp-content/uploads/2019/10/SP2019_CentralAdmin_HybridWizard6-300x271.jpg 300w, https://blogit.create.pt/wp-content/uploads/2019/10/SP2019_CentralAdmin_HybridWizard6-696x629.jpg 696w, https://blogit.create.pt/wp-content/uploads/2019/10/SP2019_CentralAdmin_HybridWizard6-465x420.jpg 465w" sizes="(max-width: 699px) 100vw, 699px" /><figcaption> <em>SharePoint 2019 Hybrid Wizard Prerequisites valiation</em></figcaption></figure></div>



<ul class="wp-block-list"><li>Select the features you want to use in your hybrid environment. In my case, I selected Hybrid OneDrive, Hybrid Sites, Hybrid B2B sites and Hybrid App Launcher.</li></ul>



<div class="wp-block-image"><figure class="aligncenter"><img decoding="async" width="698" height="632" src="https://blogit.create.pt////wp-content/uploads/2019/10/SP2019_CentralAdmin_HybridWizard7.jpg" alt="" class="wp-image-11574" srcset="https://blogit.create.pt/wp-content/uploads/2019/10/SP2019_CentralAdmin_HybridWizard7.jpg 698w, https://blogit.create.pt/wp-content/uploads/2019/10/SP2019_CentralAdmin_HybridWizard7-300x272.jpg 300w, https://blogit.create.pt/wp-content/uploads/2019/10/SP2019_CentralAdmin_HybridWizard7-696x630.jpg 696w, https://blogit.create.pt/wp-content/uploads/2019/10/SP2019_CentralAdmin_HybridWizard7-464x420.jpg 464w" sizes="(max-width: 698px) 100vw, 698px" /><figcaption>Hybrid features selection</figcaption></figure></div>



<ul class="wp-block-list"><li>Wait until the Hybrid Configuration Wizard finishes configuration.</li></ul>



<div class="wp-block-image"><figure class="aligncenter"><img decoding="async" width="698" height="630" src="https://blogit.create.pt////wp-content/uploads/2019/10/SP2019_CentralAdmin_HybridWizard8.jpg" alt="" class="wp-image-11579" srcset="https://blogit.create.pt/wp-content/uploads/2019/10/SP2019_CentralAdmin_HybridWizard8.jpg 698w, https://blogit.create.pt/wp-content/uploads/2019/10/SP2019_CentralAdmin_HybridWizard8-300x271.jpg 300w, https://blogit.create.pt/wp-content/uploads/2019/10/SP2019_CentralAdmin_HybridWizard8-696x628.jpg 696w, https://blogit.create.pt/wp-content/uploads/2019/10/SP2019_CentralAdmin_HybridWizard8-465x420.jpg 465w" sizes="(max-width: 698px) 100vw, 698px" /><figcaption>Hybrid Configuration Wizard configuring hybrid</figcaption></figure></div>



<ul class="wp-block-list"><li> After the successful run of configuration wizard, SharePoint server environment will be connected to Office 365. To finish the process, click &#8220;Close&#8221;. </li></ul>



<div class="wp-block-image"><figure class="aligncenter"><img decoding="async" width="698" height="630" src="https://blogit.create.pt////wp-content/uploads/2019/10/SP2019_CentralAdmin_HybridWizard9.jpg" alt="" class="wp-image-11581" srcset="https://blogit.create.pt/wp-content/uploads/2019/10/SP2019_CentralAdmin_HybridWizard9.jpg 698w, https://blogit.create.pt/wp-content/uploads/2019/10/SP2019_CentralAdmin_HybridWizard9-300x271.jpg 300w, https://blogit.create.pt/wp-content/uploads/2019/10/SP2019_CentralAdmin_HybridWizard9-696x628.jpg 696w, https://blogit.create.pt/wp-content/uploads/2019/10/SP2019_CentralAdmin_HybridWizard9-465x420.jpg 465w" sizes="(max-width: 698px) 100vw, 698px" /><figcaption> <em>Hybrid Configuration Wizard finished</em></figcaption></figure></div>



<ul class="wp-block-list"><li>To complete the process, perform an IISReset on the SharePoint 2019 server.</li></ul>



<div class="wp-block-image"><figure class="aligncenter"><img decoding="async" width="357" height="173" src="https://blogit.create.pt////wp-content/uploads/2019/10/SP2019_IISReset.jpg" alt="" class="wp-image-11582" srcset="https://blogit.create.pt/wp-content/uploads/2019/10/SP2019_IISReset.jpg 357w, https://blogit.create.pt/wp-content/uploads/2019/10/SP2019_IISReset-300x145.jpg 300w, https://blogit.create.pt/wp-content/uploads/2019/10/SP2019_IISReset-356x173.jpg 356w" sizes="(max-width: 357px) 100vw, 357px" /><figcaption>IISReset to finish hybrid configuration</figcaption></figure></div>



<h2 class="wp-block-heading">Testing the Hybrid Environment</h2>



<p>After the hybrid environment is configured, you can test it:</p>



<ul class="wp-block-list"><li>Hybrid App Launcher: the App Launcher will now allow users to start using Office 365 (ex: OneDrive)</li></ul>



<div class="wp-block-image"><figure class="aligncenter"><img decoding="async" width="847" height="303" src="https://blogit.create.pt////wp-content/uploads/2019/10/SP2019_Hybrid_AppLaucher.jpg" alt="" class="wp-image-11600" srcset="https://blogit.create.pt/wp-content/uploads/2019/10/SP2019_Hybrid_AppLaucher.jpg 847w, https://blogit.create.pt/wp-content/uploads/2019/10/SP2019_Hybrid_AppLaucher-300x107.jpg 300w, https://blogit.create.pt/wp-content/uploads/2019/10/SP2019_Hybrid_AppLaucher-768x275.jpg 768w, https://blogit.create.pt/wp-content/uploads/2019/10/SP2019_Hybrid_AppLaucher-696x249.jpg 696w" sizes="(max-width: 847px) 100vw, 847px" /><figcaption> Hybrid App Launcher</figcaption></figure></div>



<ul class="wp-block-list"><li>Hybrid OneDrive: when users select &#8220;OneDrive&#8221; in the App Launcher, they will be redirected to OneDrive for Business in the connected Office 365 tenant</li></ul>



<div class="wp-block-image"><figure class="aligncenter"><img decoding="async" width="1038" height="695" src="https://i1.wp.com/blogit.create.pt/wp-content/uploads/2019/10/SP2019_Hybrid_OneDrive.jpg?fit=696%2C466&amp;ssl=1" alt="" class="wp-image-11604" srcset="https://blogit.create.pt/wp-content/uploads/2019/10/SP2019_Hybrid_OneDrive.jpg 1038w, https://blogit.create.pt/wp-content/uploads/2019/10/SP2019_Hybrid_OneDrive-300x201.jpg 300w, https://blogit.create.pt/wp-content/uploads/2019/10/SP2019_Hybrid_OneDrive-768x514.jpg 768w, https://blogit.create.pt/wp-content/uploads/2019/10/SP2019_Hybrid_OneDrive-1024x686.jpg 1024w, https://blogit.create.pt/wp-content/uploads/2019/10/SP2019_Hybrid_OneDrive-696x466.jpg 696w, https://blogit.create.pt/wp-content/uploads/2019/10/SP2019_Hybrid_OneDrive-627x420.jpg 627w" sizes="(max-width: 1038px) 100vw, 1038px" /><figcaption> Hybrid OneDrive</figcaption></figure></div>



<h2 class="wp-block-heading">Technical Considerations</h2>



<p>There a few important technical notes to consider:</p>



<ul class="wp-block-list"><li>You have to register your domain with Office 365 (ex: contoso.com)</li><li>You have to create a UPN domain suffix in your On-Premises Active Directory domain that matches the public domain</li><li>You have to sync On-Premises Active Directory with Azure AD and Office 365</li></ul>



<p>For more details on these requirements, click <a href="https://docs.microsoft.com/en-us/sharepoint/hybrid/configure-office-365-for-sharepoint-hybrid" target="_blank" rel="noreferrer noopener">here</a>.</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" aria-label="h (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-1/" target="_blank">here</a> and <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>



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



<p>If you want to modernize your SharePoint classic root site to 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="here (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 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="noreferrer noopener" aria-label=" (opens in a new tab)">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" aria-label=" (opens in a new tab)">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/2019/10/20/how-to-enable-a-hybrid-experience-with-office-365-in-a-sharepoint-2019-farm/">How to Configure a Hybrid Experience with Office 365 in a SharePoint 2019 farm</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blogit.create.pt/miguelisidoro/2019/10/20/how-to-enable-a-hybrid-experience-with-office-365-in-a-sharepoint-2019-farm/feed/</wfw:commentRss>
			<slash:comments>12</slash:comments>
		
		
			</item>
		<item>
		<title>How to Rename a Modern SharePoint Site URL in Office 365</title>
		<link>https://blogit.create.pt/miguelisidoro/2019/09/23/how-to-rename-a-modern-sharepoint-site-url-in-office-365/</link>
					<comments>https://blogit.create.pt/miguelisidoro/2019/09/23/how-to-rename-a-modern-sharepoint-site-url-in-office-365/#comments</comments>
		
		<dc:creator><![CDATA[Miguel Isidoro]]></dc:creator>
		<pubDate>Mon, 23 Sep 2019 21:19:57 +0000</pubDate>
				<category><![CDATA[Microsoft 365]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Collaboration]]></category>
		<category><![CDATA[Modern SharePoint]]></category>
		<category><![CDATA[Modern Workplace]]></category>
		<category><![CDATA[Office 365]]></category>
		<category><![CDATA[SharePoint Online]]></category>
		<guid isPermaLink="false">https://blogit.create.pt/?p=11448</guid>

					<description><![CDATA[<p>This posts explains how to rename a Modern SharePoint site URL in Office 365. Introduction Site URL Rename has been one of the most popular requests via&#160;UserVoice&#160;and in SharePoint Conference 2019, in one my favorite announcements of the event, Microsoft finally announced the possibilty to rename a Site URL. How It Works Renaming a site [&#8230;]</p>
<p>The post <a href="https://blogit.create.pt/miguelisidoro/2019/09/23/how-to-rename-a-modern-sharepoint-site-url-in-office-365/">How to Rename a Modern SharePoint Site URL in Office 365</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>This posts explains how to rename a Modern SharePoint site URL in Office 365.</p>



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



<p>Site URL Rename has been one of the most popular requests via&nbsp;<a rel="noreferrer noopener" href="https://sharepoint.uservoice.com/forums/329214-sites-and-collaboration/suggestions/13217277-enable-renaming-the-site-collection-urls" target="_blank">UserVoice</a>&nbsp;and in <a rel="noreferrer noopener" aria-label=" (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">SharePoint Conference 2019</a>, in one my favorite announcements of the event, Microsoft finally announced the possibilty to rename a Site URL.</p>



<h2 class="wp-block-heading">How It Works</h2>



<p>Renaming a site can be done either using the SharePoint Admin Center or using a PowerShell script.</p>



<p><strong>Important:</strong>  This feature is currently on Preview (you can test it if your tenant is part of the Admin Center Preview) and should be available soon! You have to be a SharePoint Administrator to be able to rename a Site URL.</p>



<h3 class="wp-block-heading">Using the SharePoint Admin Center</h3>



<p>The easiest way to rename a site URL is using the SharePoint Admin Center. Select &#8220;Active Sites&#8221;, then the site you want to rename and click &#8220;Edit&#8221;.</p>



<div class="wp-block-image"><figure class="aligncenter"><img decoding="async" width="1165" height="481" src="https://i0.wp.com/blogit.create.pt/wp-content/uploads/2019/09/SharePoint_RenameSiteURL_AdminCenter.jpg?fit=696%2C288&amp;ssl=1" alt="" class="wp-image-11468" srcset="https://blogit.create.pt/wp-content/uploads/2019/09/SharePoint_RenameSiteURL_AdminCenter.jpg 1165w, https://blogit.create.pt/wp-content/uploads/2019/09/SharePoint_RenameSiteURL_AdminCenter-300x124.jpg 300w, https://blogit.create.pt/wp-content/uploads/2019/09/SharePoint_RenameSiteURL_AdminCenter-768x317.jpg 768w, https://blogit.create.pt/wp-content/uploads/2019/09/SharePoint_RenameSiteURL_AdminCenter-1024x423.jpg 1024w, https://blogit.create.pt/wp-content/uploads/2019/09/SharePoint_RenameSiteURL_AdminCenter-696x287.jpg 696w, https://blogit.create.pt/wp-content/uploads/2019/09/SharePoint_RenameSiteURL_AdminCenter-1068x441.jpg 1068w, https://blogit.create.pt/wp-content/uploads/2019/09/SharePoint_RenameSiteURL_AdminCenter-1017x420.jpg 1017w" sizes="(max-width: 1165px) 100vw, 1165px" /><figcaption>Renaming a Site URL using SharePoint Admin Center</figcaption></figure></div>



<p>A popup will appear and the only thing you have to do is to write the new URL and ensure that the new URL is not being used.7</p>



<div class="wp-block-image"><figure class="aligncenter"><img decoding="async" width="298" height="293" src="https://blogit.create.pt////wp-content/uploads/2019/09/SharePoint_RenameSiteURL_AdminCenter_SetURL.jpg" alt="" class="wp-image-11519" /><figcaption>Set the new URL for the SharePoint site</figcaption></figure></div>



<h3 class="wp-block-heading">Using PowerShell</h3>



<p>The same thing can be achieved using a simple PowerShell script, using the Start-SPOSiteRename cmdlet.</p>



<p>The syntax of the  Start-SPOSiteRename cmdlet is the following:</p>



<p>Start-SPOSiteRename [-Identity]  [-NewSiteUrl]  [[-NewSiteTitle] ] [[-SuppressMarketplaceAppCheck]] [[-SuppressWorkflow2013Check]] [[-Reserved] ] [-WhatIf][-Confirm] [CommonParameters]</p>



<p>The main parameters of the cmdlet are:</p>



<p> <strong>-Identity</strong></p>



<p>Current Site URL.</p>



<p><strong>-NewSiteUrl</strong></p>



<p>The new site URL. This the URL you want to rename the site to.</p>



<p>Follow the steps below to do the magic:</p>



<ol class="wp-block-list"><li>Open a PowerShell console (as adminstrator) and type the SharePoint Online authentication command. In this command, you must use your tenant&#8217;s Admin URL<br><br> Connect-SPOService -Url https://yourtenant-admin.sharepoint.com<br><br></li><li>Supply your tenant&#8217;s administrator credentials </li><li>Run the following command:<br><br>Start-SPOSiteRename<br>   -Identity https://yourtenant.sharepoint.com/sites/oldURL<br>   -NewSiteUrl https://yourtenant.sharepoint.com/sites/newURL</li></ol>



<p>For more details in the Start-SPOSiteRename cmdlet, click <a href="https://docs.microsoft.com/en-us/powershell/module/sharepoint-online/start-spositerename?view=sharepoint-ps" target="_blank" rel="noreferrer noopener" aria-label="here (opens in a new tab)">here</a>.</p>



<p>If all goes well, your site will be renamed. If the feature is not enabled in your tenant, you will get an error message like the one below.</p>



<figure class="wp-block-image"><img decoding="async" width="791" height="314" src="https://blogit.create.pt////wp-content/uploads/2019/09/SharePoint_RenameSiteURL_PowerShell_Error.jpg" alt="" class="wp-image-11514" srcset="https://blogit.create.pt/wp-content/uploads/2019/09/SharePoint_RenameSiteURL_PowerShell_Error.jpg 791w, https://blogit.create.pt/wp-content/uploads/2019/09/SharePoint_RenameSiteURL_PowerShell_Error-300x119.jpg 300w, https://blogit.create.pt/wp-content/uploads/2019/09/SharePoint_RenameSiteURL_PowerShell_Error-768x305.jpg 768w, https://blogit.create.pt/wp-content/uploads/2019/09/SharePoint_RenameSiteURL_PowerShell_Error-696x276.jpg 696w" sizes="(max-width: 791px) 100vw, 791px" /><figcaption>Renaming a SharePoint site using PowerShell</figcaption></figure>



<p>The &#8220;This site address can&#8217;t be changed.&#8221; message means that the feature is not available in your tenant yet and you have to wait a little bit more.</p>



<h3 class="wp-block-heading">Impact on Links</h3>



<p>If you are worried if you are going to have broken links, stop worrying! The changes to the site URL will have no impact since access requests to the old URL will be redirected to the new URL, meaning that users will not need to update their links and bookmarks or reshare previously shared links. </p>



<p><strong>Important: </strong>The redirection may take a few minutes after the site URL is changed and in that period is possible you can see a HTTP 500 error.</p>



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



<p>The site cannot be a Hub Site &#8211; if the site is a hub site, unregister it as a hub site, rename the site URL and then register the site back as a hub site.</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" aria-label="h (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-1/" target="_blank">here</a> and <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>



<p>If you want to modernize your SharePoint classic root site to 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="here (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 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="noreferrer noopener" aria-label=" (opens in a new tab)">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" aria-label=" (opens in a new tab)">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/2019/09/23/how-to-rename-a-modern-sharepoint-site-url-in-office-365/">How to Rename a Modern SharePoint Site URL in Office 365</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blogit.create.pt/miguelisidoro/2019/09/23/how-to-rename-a-modern-sharepoint-site-url-in-office-365/feed/</wfw:commentRss>
			<slash:comments>4</slash:comments>
		
		
			</item>
		<item>
		<title>How to convert a classic root site to Modern SharePoint in Office 365 using Invoke-SPOSiteSwap PowerShell cmdlet</title>
		<link>https://blogit.create.pt/miguelisidoro/2019/08/27/how-to-modernize-your-tenant-root-site-collection-in-office-365-using-invoke-spositeswap/</link>
					<comments>https://blogit.create.pt/miguelisidoro/2019/08/27/how-to-modernize-your-tenant-root-site-collection-in-office-365-using-invoke-spositeswap/#comments</comments>
		
		<dc:creator><![CDATA[Miguel Isidoro]]></dc:creator>
		<pubDate>Tue, 27 Aug 2019 00:05:30 +0000</pubDate>
				<category><![CDATA[Microsoft 365]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Collaboration]]></category>
		<category><![CDATA[Modern SharePoint]]></category>
		<category><![CDATA[Modern Workplace]]></category>
		<category><![CDATA[Office 365]]></category>
		<category><![CDATA[SharePoint Online]]></category>
		<guid isPermaLink="false">https://blogit.create.pt/?p=11282</guid>

					<description><![CDATA[<p>Do you have an old Office 365 tenant with a classic Team Site as homepage? Wanting to convert a classic root site to a modern SharePoint site? Now, using the recently released Invoke-SPOSiteSwap PowerShell cmlet, you convert your classic tenant&#8217;s root site collection to a modern site collection (for example a modern Communication Site). Introduction [&#8230;]</p>
<p>The post <a href="https://blogit.create.pt/miguelisidoro/2019/08/27/how-to-modernize-your-tenant-root-site-collection-in-office-365-using-invoke-spositeswap/">How to convert a classic root site to Modern SharePoint in Office 365 using Invoke-SPOSiteSwap PowerShell cmdlet</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>Do you have an old Office 365 tenant with a classic Team Site as homepage? Wanting to convert a classic root site to a modern SharePoint site?</p>



<p>Now, using the recently released <a rel="noreferrer noopener" aria-label="Invoke-SPOSiteSwap (opens in a new tab)" href="https://docs.microsoft.com/en-us/powershell/module/sharepoint-online/invoke-spositeswap?view=sharepoint-ps" target="_blank">Invoke-SPOSiteSwap</a> PowerShell cmlet, you convert your classic tenant&#8217;s root site collection to a modern site collection (for example a modern Communication Site).</p>



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



<p>In <a rel="noreferrer noopener" aria-label="Microsoft Ignite 2018 (opens in a new tab)" href="https://blogit.create.pt////miguelisidoro/2018/11/21/whats-new-for-sharepoint-and-office-365-after-microsoft-ignite-2018/" target="_blank">Microsoft Ignite 2018</a>, announced that all new Office 365 tenants would start getting the modern Communication Site as the root site by default.</p>



<p>Microsoft will soon release the possibility for administrators to set a Communication Site as the experience for the root site of a tenant (should be rolled out in September, more details <a rel="noreferrer noopener" aria-label="here (opens in a new tab)" href="https://www.microsoft.com/en-us/microsoft-365/roadmap?filters=&amp;searchterms=46338" target="_blank">here</a>) and until now, there wasn&#8217;t an easy way to convert a classic root site collection into a modern SharePoint site. Now, with this release, we will finally be able to get a modern SharePoint site as the root site collection even on an older Office 365 tenant!</p>



<h2 class="wp-block-heading">The Solution</h2>



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



<p>To be able to modernize your SharePoint homepage, you will first need to download and install SharePoint Online Management Shell version 16.0.8812.1200 or later. To get the latest version of the SharePoint Online Management Shell, click <a rel="noreferrer noopener" aria-label="here (opens in a new tab)" href="https://www.microsoft.com/en-in/download/details.aspx?id=35588" target="_blank">here</a> or run the following PowerShell command:</p>



<p>Install-Module -Name Microsoft.Online.SharePoint.PowerShell -force</p>



<p><strong>NOTE: </strong>If the Invoke-SPOSiteSwap PowerShell cmlet is not available yet in your tenant, just wait a little bit more, since it is currently being rolled out!</p>



<h3 class="wp-block-heading">How It Works </h3>



<p>In the steps below we are assuming the following:</p>



<ul class="wp-block-list"><li>You have a classic root site collection at https://yourtenant.sharepoint.com</li><li>You have a modern Communication Site already created in your tenant (for example at  https://yourtenant.sharepoint.com/sites/modernintranet)</li></ul>



<p><strong>Important Note:</strong> the Invoke-SPOSiteSwap cmdlet doesn&#8217;t transform your existing classic root site collection into a modern site collection. Instead, it replaces the current root site collection (a class site collection) by another existing site collection, in this example, a modern Communication Site.</p>



<p>The syntax of the Invoke-SPOSiteSwap cmdlet is the following:</p>



<p>Invoke-SPOSiteSwap -SourceUrl &lt;string&gt; -TargetUrl &lt;string&gt; -ArchiveUrl &lt;string&gt;          [&lt;CommonParameters&gt;]</p>



<p>The main parameters of the cmdlet are:</p>



<p> <strong>-SourceUrl</strong></p>



<p>URL of the source site. The site at this location must exist before performing the swap. </p>



<p>If the target is the root site at&nbsp;https://yourtenant.sharepoint.com&nbsp;then the source site must be either a Team Site (STS#0), a Modern Team Site (STS#3), or a Communication Site (SITEPAGEPUBLISHING#0).</p>



<p>In our example, this will be our modern Communication Site at  https://yourtenant.sharepoint.com/sites/modernintranet and it represents the site that will replace our old classic Team Site.</p>



<p><strong>-TargetUrl</strong></p>



<p>URL of the target site that the source site will be swapped to. The site at this location must exist before performing the swap.</p>



<p>The target site must be the either:</p>



<ul class="wp-block-list"><li>The root site at https://yourtenant.sharepoint.com; or</li><li>The search center site at&nbsp;https://yourtenant.sharepoint.com/search</li></ul>



<p>In our example, this will be our classic Team Site root site collection at https://yourtenant.sharepoint.com that will be replaced by our modern Communication Site. </p>



<p><strong> -ArchiveUrl</strong></p>



<p>URL to where the target site will be archived. There should be no existing site, including a deleted site in the Recycle Bin, at this location before performing the swap.</p>



<p>In our example, this will the URL where our classic Team Site root site collection will be archived to.</p>



<h3 class="wp-block-heading">Pulling the Trigger</h3>



<p>Follow the steps below to do the magic:</p>



<ol class="wp-block-list"><li>Open a PowerShell console (as adminstrator) and type the SharePoint Online authentication command. In this command, you must use your tenant&#8217;s Admin URL<br><br> Connect-SPOService -Url https://yourtenant-admin.sharepoint.com<br></li><li>Supply your tenant&#8217;s administrator credentials </li><li>Run the following command:<br><br>Invoke-SPOSiteSwap<br>   -SourceUrl https://yourtenant.sharepoint.com/sites/modernintranet<br>   -TargetUrl https://yourtenant.sharepoint.com<br>   -ArchiveUrl https://yourtenant.sharepoint.com/sites/oldroot</li></ol>



<p>Making the swap will take about one minute and it is pretty straightforward. After the swap, you should have a brand new Communication Site as your homepage.</p>



<div class="wp-block-image"><figure class="aligncenter"><img decoding="async" width="812" height="946" src="https://blogit.create.pt////wp-content/uploads/2019/08/SharePoint-comm-site.jpg" alt="" class="wp-image-11369" srcset="https://blogit.create.pt/wp-content/uploads/2019/08/SharePoint-comm-site.jpg 812w, https://blogit.create.pt/wp-content/uploads/2019/08/SharePoint-comm-site-258x300.jpg 258w, https://blogit.create.pt/wp-content/uploads/2019/08/SharePoint-comm-site-768x895.jpg 768w, https://blogit.create.pt/wp-content/uploads/2019/08/SharePoint-comm-site-696x811.jpg 696w, https://blogit.create.pt/wp-content/uploads/2019/08/SharePoint-comm-site-361x420.jpg 361w" sizes="(max-width: 812px) 100vw, 812px" /><figcaption>Modern Communication Site As Tenant&#8217;s HomePage</figcaption></figure></div>



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



<p>Making the swap will take about one minute and it is pretty straightforward, but you must take some restrictions into consideration. Neither the source or target site can be: </p>



<ul class="wp-block-list"><li>Neither the source or target site can be connected to an Office 365 Group</li><li>Neither the source or target site can be a Hub Site &#8211; if a site is a hub site, unregister it as a hub site, swap the root site, and then register the site back as a hub site </li><li>Neither the source or target site can be associated with a Hub Site &#8211; if a site is associated with a hub, disassociate the site, swap the root site, and then reassociate the site  </li><li>Only sites within the same domain, for example,&nbsp;<a href="https://contoso.sharepoint.com/">https://contoso.sharepoint.com</a>&nbsp;can be swapped</li><li>The source site must be a modern team site (STS#3), a communication site (SITEPAGEPUBLISHING#0), or a classic team site (STS#0)</li><li>All subsites contained with the source and target sites will be swapped</li><li>Any sharing links or bookmarks will need to be recreated after the site swap</li></ul>



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



<p>If you want a modern experience in your existing Office 365 tenant and convert your classic team site into a modern SharePoint Modern Experience, this is the easiest way to go.</p>



<p>Before doing the swap, there are a few things you need to consider:</p>



<ul class="wp-block-list"><li>Assign permissions to the new Communication Site so that users can access the new site</li><li>Plan navigation (ex: Mega Menu navigation) to ensure navigation to your existing content</li><li>Configure your new Communication Site homepage to show the most relevant content you want to show to your users</li><li>Migrate content from the old classic root site collection to the new Communication Site</li></ul>



<p>Another great thing about this approach is that if you don&#8217;t like the result of the swap, you can always swap back using the same PowerShell command. </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 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="h (opens in a new tab)">h</a><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-1/" target="_blank">ere</a> and <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>



<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 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="noreferrer noopener" aria-label=" (opens in a new tab)">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" aria-label=" (opens in a new tab)">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/2019/08/27/how-to-modernize-your-tenant-root-site-collection-in-office-365-using-invoke-spositeswap/">How to convert a classic root site to Modern SharePoint in Office 365 using Invoke-SPOSiteSwap PowerShell cmdlet</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blogit.create.pt/miguelisidoro/2019/08/27/how-to-modernize-your-tenant-root-site-collection-in-office-365-using-invoke-spositeswap/feed/</wfw:commentRss>
			<slash:comments>10</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>
	</channel>
</rss>
