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

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

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

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

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

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

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

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

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

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

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

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

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

            if (web.Features&#x5B;sharePointServerPublishingWebGuid] == null)
            {
                web.Features.Add(sharePointServerPublishingWebGuid, true);
            }
        }
</pre>
<p>Thanks</p>
<p><span style="color: #800000"><a href="https://www.linkedin.com/in/fmrgc/"><strong>Fábio Carvalho</strong></a></span><br />
SharePoint Consultant<br />
<strong>|create|</strong><span style="color: #ff0000"><strong>it</strong></span><strong>|</strong></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>The post <a href="https://blogit.create.pt/fabiocarvalho/2017/07/28/activating-all-publishing-feature-programmatically-powershell-sharepoint-2010-2013-2016-online/">Activating all Publishing Feature &#8211; Programmatically &#038; Powershell &#8211; SharePoint 2010, 2013, 2016 &#038; Online:</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blogit.create.pt/fabiocarvalho/2017/07/28/activating-all-publishing-feature-programmatically-powershell-sharepoint-2010-2013-2016-online/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Office 365 &#8211; New Microsoft Forms</title>
		<link>https://blogit.create.pt/fabiocarvalho/2017/07/27/office-365-new-microsoft-forms/</link>
					<comments>https://blogit.create.pt/fabiocarvalho/2017/07/27/office-365-new-microsoft-forms/#comments</comments>
		
		<dc:creator><![CDATA[Fábio Carvalho]]></dc:creator>
		<pubDate>Thu, 27 Jul 2017 23:08:45 +0000</pubDate>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Office]]></category>
		<category><![CDATA[Microsoft 365]]></category>
		<category><![CDATA[Excel Forms]]></category>
		<category><![CDATA[Flow]]></category>
		<category><![CDATA[Microsoft Flow]]></category>
		<category><![CDATA[Microsoft Forms]]></category>
		<category><![CDATA[Office 365]]></category>
		<guid isPermaLink="false">http://blogit.create.pt/fabiocarvalho/?p=3654</guid>

					<description><![CDATA[<p>Hi Everyone!! Recently Microsoft introduce the new Microsoft Forms!!! I confess this solution it is amazing because provides a new way to build Forms and Surveys with a friendly interface and very rich in terms of features and potential&#8230; we at Create IT had the opportunity to explore and use it a lot to get some feedback [&#8230;]</p>
<p>The post <a href="https://blogit.create.pt/fabiocarvalho/2017/07/27/office-365-new-microsoft-forms/">Office 365 &#8211; New Microsoft Forms</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Hi Everyone!!</p>
<p>Recently Microsoft introduce the new Microsoft Forms!!! I confess this solution it is amazing because provides a new way to build Forms and Surveys with a friendly interface and very rich in terms of features and potential&#8230; we at<a href="https://www.create.pt/"> Create IT</a> had the opportunity to explore and use it a lot to get some feedback about some events that we are planning.</p>
<p>Microsoft Forms is available on your App Launch of your Office 365.</p>
<p><img fetchpriority="high" decoding="async" class="aligncenter size-full wp-image-3664" src="http://blogit-create.com/wp-content/uploads/2017/07/microsoft-forms.png" alt="" width="1924" height="840" srcset="https://blogit.create.pt/wp-content/uploads/2017/07/microsoft-forms.png 1924w, https://blogit.create.pt/wp-content/uploads/2017/07/microsoft-forms-300x131.png 300w, https://blogit.create.pt/wp-content/uploads/2017/07/microsoft-forms-768x335.png 768w, https://blogit.create.pt/wp-content/uploads/2017/07/microsoft-forms-1024x447.png 1024w, https://blogit.create.pt/wp-content/uploads/2017/07/microsoft-forms-696x304.png 696w, https://blogit.create.pt/wp-content/uploads/2017/07/microsoft-forms-1068x466.png 1068w, https://blogit.create.pt/wp-content/uploads/2017/07/microsoft-forms-962x420.png 962w" sizes="(max-width: 1924px) 100vw, 1924px" /></p>
<p>It is easy to create a Form, you will have different types of question like Choice, Test, Rating and Date. Also you can apply a default Theme or you can upload your custom picture and will be the background of your Form.</p>
<p><img decoding="async" class="aligncenter size-full wp-image-3674" src="http://blogit-create.com/wp-content/uploads/2017/07/1.png" alt="" width="1879" height="894" srcset="https://blogit.create.pt/wp-content/uploads/2017/07/1.png 1879w, https://blogit.create.pt/wp-content/uploads/2017/07/1-300x143.png 300w, https://blogit.create.pt/wp-content/uploads/2017/07/1-768x365.png 768w, https://blogit.create.pt/wp-content/uploads/2017/07/1-1024x487.png 1024w, https://blogit.create.pt/wp-content/uploads/2017/07/1-696x331.png 696w, https://blogit.create.pt/wp-content/uploads/2017/07/1-1068x508.png 1068w, https://blogit.create.pt/wp-content/uploads/2017/07/1-883x420.png 883w" sizes="(max-width: 1879px) 100vw, 1879px" /></p>
<p>You have a special tab &#8211; Response -where you can look all the responses of your team an get the results.</p>
<p><img decoding="async" class="aligncenter size-full wp-image-3684" src="http://blogit-create.com/wp-content/uploads/2017/07/3.png" alt="" width="1877" height="887" srcset="https://blogit.create.pt/wp-content/uploads/2017/07/3.png 1877w, https://blogit.create.pt/wp-content/uploads/2017/07/3-300x142.png 300w, https://blogit.create.pt/wp-content/uploads/2017/07/3-768x363.png 768w, https://blogit.create.pt/wp-content/uploads/2017/07/3-1024x484.png 1024w, https://blogit.create.pt/wp-content/uploads/2017/07/3-696x329.png 696w, https://blogit.create.pt/wp-content/uploads/2017/07/3-1068x505.png 1068w, https://blogit.create.pt/wp-content/uploads/2017/07/3-889x420.png 889w" sizes="(max-width: 1877px) 100vw, 1877px" /></p>
<p>Today Microsoft introduce a new Feature &#8211; Excel Survey &#8211; this update allows Microsoft Excel users to easily create surveys and collect responses within their workbooks, and take advantage of most of the features available in Microsoft Forms.</p>
<p><img decoding="async" class="aligncenter size-full wp-image-3694" src="http://blogit-create.com/wp-content/uploads/2017/07/medium.png" alt="" width="400" height="281" srcset="https://blogit.create.pt/wp-content/uploads/2017/07/medium.png 400w, https://blogit.create.pt/wp-content/uploads/2017/07/medium-300x211.png 300w, https://blogit.create.pt/wp-content/uploads/2017/07/medium-100x70.png 100w" sizes="(max-width: 400px) 100vw, 400px" /></p>
<p>&nbsp;</p>
<p>A new type of question was introduced &#8211; Ranking &#8211;  users  can now ask respondents to rank answer choices, and their responses will be aggregated and visualized for easy analysis. Ranking is a great way for survey creators to understand their personal preferences.</p>
<p>Microsoft Forms and Microsoft Flow integration are connected, users can now define connectors for Microsoft Forms via Microsoft Flow. A great use case for this is setting up a connector to receive the email notifications whenever a new response is submitted for a survey or quiz.</p>
<p><img decoding="async" class="aligncenter size-full wp-image-3704" src="http://blogit-create.com/wp-content/uploads/2017/07/medium-1.png" alt="" width="400" height="258" srcset="https://blogit.create.pt/wp-content/uploads/2017/07/medium-1.png 400w, https://blogit.create.pt/wp-content/uploads/2017/07/medium-1-300x194.png 300w" sizes="(max-width: 400px) 100vw, 400px" /></p>
<p>&nbsp;</p>
<p>Thanks</p>
<p><span style="color: #800000"><a href="https://www.linkedin.com/in/fmrgc/"><strong>Fábio Carvalho</strong></a></span><br />
SharePoint Consultant<br />
<strong>|create|</strong><span style="color: #ff0000"><strong>it</strong></span><strong>|</strong></p>
<p>The post <a href="https://blogit.create.pt/fabiocarvalho/2017/07/27/office-365-new-microsoft-forms/">Office 365 &#8211; New Microsoft Forms</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blogit.create.pt/fabiocarvalho/2017/07/27/office-365-new-microsoft-forms/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>A minute&#8217;s silence in memory of Paint!</title>
		<link>https://blogit.create.pt/fabiocarvalho/2017/07/25/a-minutes-silence-in-memory-of-paint/</link>
					<comments>https://blogit.create.pt/fabiocarvalho/2017/07/25/a-minutes-silence-in-memory-of-paint/#respond</comments>
		
		<dc:creator><![CDATA[Fábio Carvalho]]></dc:creator>
		<pubDate>Tue, 25 Jul 2017 21:26:35 +0000</pubDate>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Paint 3D]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Paint]]></category>
		<guid isPermaLink="false">http://blogit.create.pt/fabiocarvalho/?p=3554</guid>

					<description><![CDATA[<p>Hi Everyone!!! Today i will talk about one of the funniest tool that contributed for my passion about Microsoft products when i had 8 years old!! PAINT!! Yes, Paint as we know it&#8230; a simplistic tool with 32 years my old friend, i confess I still use it for some tasks. And today was announced [&#8230;]</p>
<p>The post <a href="https://blogit.create.pt/fabiocarvalho/2017/07/25/a-minutes-silence-in-memory-of-paint/">A minute&#8217;s silence in memory of Paint!</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Hi Everyone!!!</p>
<p>Today i will talk about one of the funniest tool that contributed for my passion about Microsoft products when i had 8 years old!! PAINT!! Yes, Paint as we know it&#8230; a simplistic tool with 32 years my old friend, i confess I still use it for some tasks. And today was announced yours finish, the new update for Windows 10 will replace it for the new version Paint 3D! This version is more fun, totally re-branding with new 3D capabilities, so many of the MS Paint features people know and love like photo editing, line and curve tools, and 2D creation are in Paint 3D.</p>
<p><img decoding="async" class="aligncenter size-full wp-image-3604" src="http://blogit-create.com/wp-content/uploads/2017/07/PAINT.png" alt="" width="1224" height="691" srcset="https://blogit.create.pt/wp-content/uploads/2017/07/PAINT.png 1224w, https://blogit.create.pt/wp-content/uploads/2017/07/PAINT-300x169.png 300w, https://blogit.create.pt/wp-content/uploads/2017/07/PAINT-768x434.png 768w, https://blogit.create.pt/wp-content/uploads/2017/07/PAINT-1024x578.png 1024w, https://blogit.create.pt/wp-content/uploads/2017/07/PAINT-696x393.png 696w, https://blogit.create.pt/wp-content/uploads/2017/07/PAINT-1068x603.png 1068w, https://blogit.create.pt/wp-content/uploads/2017/07/PAINT-744x420.png 744w" sizes="(max-width: 1224px) 100vw, 1224px" /></p>
<p><a href="https://www.youtube.com/watch?v=S-tBj6vfTw8">https://www.youtube.com/watch?v=S-tBj6vfTw8</a></p>
<p><a href="https://www.youtube.com/watch?v=xxyufNrH4Mw">https://www.youtube.com/watch?v=xxyufNrH4Mw</a></p>
<p><a href="https://www.microsoft.com/en-us/store/p/paint-3d/9nblggh5fv99?tduid=(e0849145eca2e2c249b9e8d7bbe59b7f)(259740)(2804583)()()">Download Paint 3D from the Windows Store</a></p>
<p>Thanks</p>
<p><span style="color: #ff0000"><a href="https://www.linkedin.com/in/fmrgc/"><strong>Fábio Carvalho</strong></a></span><br />
SharePoint Consultant<br />
<strong>|create|</strong><span style="color: #ff0000"><strong>it</strong></span><strong>|</strong></p>
<p>The post <a href="https://blogit.create.pt/fabiocarvalho/2017/07/25/a-minutes-silence-in-memory-of-paint/">A minute&#8217;s silence in memory of Paint!</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blogit.create.pt/fabiocarvalho/2017/07/25/a-minutes-silence-in-memory-of-paint/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>SP Editor &#8211; Create and update SharePoint Online/SP2013/SP2016 css/js files, inject files to web, manage web properties and list Webhook</title>
		<link>https://blogit.create.pt/fabiocarvalho/2017/05/27/sp-editor-create-and-update-sharepoint-onlinesp2013sp2016-cssjs-files-inject-files-to-web-manage-web-properties-and-list-webhook/</link>
					<comments>https://blogit.create.pt/fabiocarvalho/2017/05/27/sp-editor-create-and-update-sharepoint-onlinesp2013sp2016-cssjs-files-inject-files-to-web-manage-web-properties-and-list-webhook/#comments</comments>
		
		<dc:creator><![CDATA[Fábio Carvalho]]></dc:creator>
		<pubDate>Sat, 27 May 2017 07:47:54 +0000</pubDate>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[FrontEnd Development]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[CSOM]]></category>
		<category><![CDATA[PnP]]></category>
		<category><![CDATA[SharePoint 2013]]></category>
		<category><![CDATA[SharePoint 2016]]></category>
		<category><![CDATA[SharePoint Online]]></category>
		<guid isPermaLink="false">http://blogit.create.pt/fabiocarvalho/?p=3244</guid>

					<description><![CDATA[<p>Hi Everyone!!! Today i will share a fantastic Google Chrome Extension that you can use on your developments on SharePoint. A Google Chrome Extension for creating and updating files (js, css), injecting files to sites, modifying web/list propertybag values (add, edit, remove, index) and creating webhook subscriptions, edit/add/remove webparts from publishing pages and run sp-pnp-js [&#8230;]</p>
<p>The post <a href="https://blogit.create.pt/fabiocarvalho/2017/05/27/sp-editor-create-and-update-sharepoint-onlinesp2013sp2016-cssjs-files-inject-files-to-web-manage-web-properties-and-list-webhook/">SP Editor &#8211; Create and update SharePoint Online/SP2013/SP2016 css/js files, inject files to web, manage web properties and list Webhook</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Hi Everyone!!!</p>
<p>Today i will share a fantastic Google Chrome Extension that you can use on your developments on SharePoint.</p>
<p><img decoding="async" class="aligncenter size-full wp-image-3284" src="http://blogit.create.pt/fabiocarvalho/wp-content/uploads/sites/271/2017/05/SPEditor.png" alt="" width="1222" height="770" /></p>
<p>A<strong> Google Chrome Extension</strong> for creating and updating files (js, css), injecting files to sites, modifying web/list propertybag values (add, edit, remove, index) and creating webhook subscriptions, edit/add/remove webparts from publishing pages and run sp-pnp-js typescript snippets in <strong>SP2013</strong>,<strong> SP2016</strong> and <strong>SharePoint Online</strong> from Chrome Developer Tools.</p>
<p><a href="https://chrome.google.com/webstore/search/speditor">https://chrome.google.com/webstore/search/speditor</a></p>
<p>Take a look at  the great introduction video by <em>Jeff</em> Jones!</p>
<div class="youtube-embed" data-video_id="iezuTO40xGA"><iframe title="SP Editor Chrome Extension" width="696" height="392" src="https://www.youtube.com/embed/iezuTO40xGA?feature=oembed&#038;enablejsapi=1" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></div>
<p>Thanks</p>
<p><span style="color: #800000"><a style="color: #800000" href="https://www.linkedin.com/in/fmrgc/"><strong>Fábio Carvalho</strong></a></span><br />
SharePoint Consultant<br />
<strong>|create|</strong><span style="color: #ff0000"><strong>it</strong></span><strong>|</strong></p>
<p>&nbsp;</p>
<p>The post <a href="https://blogit.create.pt/fabiocarvalho/2017/05/27/sp-editor-create-and-update-sharepoint-onlinesp2013sp2016-cssjs-files-inject-files-to-web-manage-web-properties-and-list-webhook/">SP Editor &#8211; Create and update SharePoint Online/SP2013/SP2016 css/js files, inject files to web, manage web properties and list Webhook</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blogit.create.pt/fabiocarvalho/2017/05/27/sp-editor-create-and-update-sharepoint-onlinesp2013sp2016-cssjs-files-inject-files-to-web-manage-web-properties-and-list-webhook/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>SharePoint Online &#8211; Internal Fields Names &#038; how to use SPServices to get them!!!</title>
		<link>https://blogit.create.pt/fabiocarvalho/2017/05/26/sharepoint-online-internal-fields-names-how-to-use-spservices-to-get-them/</link>
					<comments>https://blogit.create.pt/fabiocarvalho/2017/05/26/sharepoint-online-internal-fields-names-how-to-use-spservices-to-get-them/#comments</comments>
		
		<dc:creator><![CDATA[Fábio Carvalho]]></dc:creator>
		<pubDate>Fri, 26 May 2017 08:57:06 +0000</pubDate>
				<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[CSOM]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[SharePoint 2013]]></category>
		<category><![CDATA[SharePoint 2016]]></category>
		<category><![CDATA[SharePoint Online]]></category>
		<category><![CDATA[SPServices]]></category>
		<guid isPermaLink="false">http://blogit.create.pt/fabiocarvalho/?p=3204</guid>

					<description><![CDATA[<p>Hi Everyone, Today i will show you how can you get internal field names in a SharePoint List Items. As you know SharePoint have two types of Names &#8211; Internal Name and Display Name, it is extremity important when you are developing SharePoint solution get your fields by internal name, the InternalName never changes, you [&#8230;]</p>
<p>The post <a href="https://blogit.create.pt/fabiocarvalho/2017/05/26/sharepoint-online-internal-fields-names-how-to-use-spservices-to-get-them/">SharePoint Online &#8211; Internal Fields Names &#038; how to use SPServices to get them!!!</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Hi Everyone,</p>
<p>Today i will show you how can you get <strong>internal field</strong> names in a<strong> SharePoint List Items</strong>.<br />
As you know SharePoint have<strong> two types</strong> of Names &#8211; <strong>Internal</strong> <strong>Name</strong> and <strong>Display</strong> <strong>Name</strong>, it is extremity important when you are developing SharePoint solution get your fields by internal name, the <strong>InternalName</strong> never changes, you only can change <strong>DisplayName</strong>, this maintain your <strong>solution stable</strong>.</p>
<p>So let&#8217;s Look some ways to get the I<strong>nternal Name</strong>:</p>
<ol>
<li>Open the List Settings page</li>
<li>Under the Columns section, select a column to view the Edit Column page</li>
<li>The URL of this page includes the internal name in the query string. For example, the URL for the <span style="color: #800000"><strong><tt>Created By</tt></strong></span> field includes the following query string <strong><tt>List=%7BF641CEF1%2DCDE2%2D49E1%2D9800%2D861A408EF890%7D&amp;Field=<span style="color: #800000">Author</span></tt></strong>. The value for the Field parameter, <strong><span style="color: #800000"><tt>Author</tt></span></strong>, is the internal name for<span style="color: #800000"><strong> <tt>Created By</tt></strong></span>.</li>
</ol>
<p>You can also apply a sort order on your list view on the column that you want get the internal name, this will generate an URL that contains the <span style="color: #800000"><strong>Internal Name</strong></span>:</p>
<p><strong>FolderCTID%3D0x012000DDDEBA09D4201845A62AEDBA6A906745-SortField%3D<span style="color: #800000">Author</span>-SortDir%3DAsc-</strong></p>
<p>Now i will demonstrate how you can get Internal Name by Display Name using <span style="color: #800000"><a style="color: #800000" href="https://spservices.codeplex.com/wikipage?title=$().SPServices.SPGetStaticFromDisplay&amp;referringTitle=Documentation" target="_blank" rel="noopener noreferrer">SPGetStaticFromDisplay</a></span></p>
<pre class="brush: jscript; title: ; notranslate"> 

var internalName = $().SPServices.SPGetStaticFromDisplay ({
  listName: &quot;Cars&quot;,
  columnDisplayName: &quot;Car Models&quot;
});

</pre>
<p><strong>Read more</strong>: http://sympmarc.com/2015/01/27/get-the-internalname-for-a-sharepoint-list-column/</p>
<p>Thanks</p>
<p><span style="color: #000000"><a style="color: #000000" href="https://www.linkedin.com/in/fmrgc/"><strong>Fábio Carvalho</strong></a></span><br />
SharePoint Consultant<br />
<strong>|create|</strong><span style="color: #ff0000"><strong>it</strong></span><strong>|</strong></p>
<p>&nbsp;</p>
<p>The post <a href="https://blogit.create.pt/fabiocarvalho/2017/05/26/sharepoint-online-internal-fields-names-how-to-use-spservices-to-get-them/">SharePoint Online &#8211; Internal Fields Names &#038; how to use SPServices to get them!!!</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blogit.create.pt/fabiocarvalho/2017/05/26/sharepoint-online-internal-fields-names-how-to-use-spservices-to-get-them/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>SharePoint &#8211; Get all alerts from a specific SP List/Library using Powershell</title>
		<link>https://blogit.create.pt/fabiocarvalho/2017/03/25/sharepoint-get-all-alerts-from-a-specific-sp-listlibrary-using-powershell/</link>
					<comments>https://blogit.create.pt/fabiocarvalho/2017/03/25/sharepoint-get-all-alerts-from-a-specific-sp-listlibrary-using-powershell/#comments</comments>
		
		<dc:creator><![CDATA[Fábio Carvalho]]></dc:creator>
		<pubDate>Sat, 25 Mar 2017 10:52:54 +0000</pubDate>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Administration]]></category>
		<category><![CDATA[SharePoint 2010]]></category>
		<category><![CDATA[SharePoint 2013]]></category>
		<category><![CDATA[SharePoint 2016]]></category>
		<guid isPermaLink="false">http://blogit.create.pt/fabiocarvalho/?p=3011</guid>

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

Add-PSSnapin Microsoft.SharePoint.PowerShell –ErrorAction SilentlyContinue

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

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

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

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

 #Dispose web object
 $Web.Dispose()
}

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

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

Add-PSSnapin Microsoft.SharePoint.PowerShell –ErrorAction SilentlyContinue

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

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

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

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

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

</pre>
<p>&nbsp;</p>
<p>Thanks</p>
<p><span style="color: #000000"><a style="color: #000000" href="https://www.linkedin.com/in/fmrgc/"><strong>Fábio Carvalho</strong></a></span><br />
SharePoint Consultant<br />
<strong>|create|</strong><span style="color: #ff0000"><strong>it</strong></span><strong>|</strong></p>
<p>The post <a href="https://blogit.create.pt/fabiocarvalho/2017/03/25/sharepoint-get-all-alerts-from-a-specific-sp-listlibrary-using-powershell/">SharePoint &#8211; Get all alerts from a specific SP List/Library using Powershell</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blogit.create.pt/fabiocarvalho/2017/03/25/sharepoint-get-all-alerts-from-a-specific-sp-listlibrary-using-powershell/feed/</wfw:commentRss>
			<slash:comments>4</slash:comments>
		
		
			</item>
		<item>
		<title>SharePoint &#8211; Using Flows on yours list items and documents</title>
		<link>https://blogit.create.pt/fabiocarvalho/2017/03/24/sharepoint-using-flows-on-yours-list-items-and-documents/</link>
					<comments>https://blogit.create.pt/fabiocarvalho/2017/03/24/sharepoint-using-flows-on-yours-list-items-and-documents/#respond</comments>
		
		<dc:creator><![CDATA[Fábio Carvalho]]></dc:creator>
		<pubDate>Fri, 24 Mar 2017 22:07:54 +0000</pubDate>
				<category><![CDATA[Flows]]></category>
		<category><![CDATA[Office]]></category>
		<category><![CDATA[Microsoft 365]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[SharePoint Online]]></category>
		<guid isPermaLink="false">http://blogit.create.pt/fabiocarvalho/?p=2761</guid>

					<description><![CDATA[<p>Hey Everyone!! Today i will talk about Flows!!! March 2017 bring us a new capabilities about integrating Flows with modern libraries, allowing you create interactive in document libraries and list! Probably they will quickly replace the old Event Handler or Event Timer Jobs!&#8230; Flows, introduce a new way to development scheduler to build and respond [&#8230;]</p>
<p>The post <a href="https://blogit.create.pt/fabiocarvalho/2017/03/24/sharepoint-using-flows-on-yours-list-items-and-documents/">SharePoint &#8211; Using Flows on yours list items and documents</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Hey Everyone!!</p>
<p>Today i will talk about <strong>Flows</strong>!!! March 2017 bring us a <a href="https://techcommunity.microsoft.com/t5/SharePoint-Blog/Flow-on-demand-for-SharePoint-list-items-and-documents/ba-p/52024"><strong>new capabilities</strong></a> about integrating Flows with modern libraries, allowing you create interactive in document libraries and list! Probably they will quickly replace the old Event Handler or Event Timer Jobs!&#8230;</p>
<p>Flows, introduce a <strong>new way to development scheduler</strong> to build and respond your <strong>business needs</strong>, it is very fast to implement them and very intuitive!&#8230;with the ability to build zero code processes directly from a SharePoint list. These Flows operate against the entire scope of a list, waiting for data-or driven triggers to launch each process. Flows operate on a single item or document selected in the modern user experience.</p>
<p>You could create Flows using <a href="https://flow.microsoft.com/en-us/services/shared_sharepointonline/sharepoint/">templates </a>or you could create <strong>your owns directly inside SharePoint</strong>. Selecting a Flow launches the browser based Flow designer. When you save the Flow it’s also added as a drop-down button in that list or library.<br />
<img decoding="async" class="aligncenter size-full wp-image-2801" src="http://blogit.create.pt/fabiocarvalho/wp-content/uploads/sites/271/2017/03/image-6.png" alt="" width="800" height="431" srcset="https://blogit.create.pt/wp-content/uploads/2017/03/image-6.png 800w, https://blogit.create.pt/wp-content/uploads/2017/03/image-6-300x162.png 300w, https://blogit.create.pt/wp-content/uploads/2017/03/image-6-768x414.png 768w, https://blogit.create.pt/wp-content/uploads/2017/03/image-6-696x375.png 696w, https://blogit.create.pt/wp-content/uploads/2017/03/image-6-780x420.png 780w" sizes="(max-width: 800px) 100vw, 800px" /></p>
<p><strong>Take a look at the flow templates list that you can use:</strong></p>
<p><a href="https://flow.microsoft.com/en-us/services/shared_sharepointonline/sharepoint/">https://flow.microsoft.com/en-us/services/shared_sharepointonline/sharepoint/</a></p>
<p><img decoding="async" class="aligncenter wp-image-2771" src="http://blogit.create.pt/fabiocarvalho/wp-content/uploads/sites/271/2017/03/flows.png" alt="" width="492" height="2066" srcset="https://blogit.create.pt/wp-content/uploads/2017/03/flows.png 732w, https://blogit.create.pt/wp-content/uploads/2017/03/flows-244x1024.png 244w, https://blogit.create.pt/wp-content/uploads/2017/03/flows-696x2921.png 696w, https://blogit.create.pt/wp-content/uploads/2017/03/flows-100x420.png 100w" sizes="(max-width: 492px) 100vw, 492px" /></p>
<div align="center">
<div class="youtube-embed" data-video_id="W6oxcYRtW-8"><iframe title="Microsoft Flow: Wait for approval" width="696" height="392" src="https://www.youtube.com/embed/W6oxcYRtW-8?feature=oembed&#038;enablejsapi=1" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></div>
</div>
<p>Thanks</p>
<p><span style="color: #000000"><a style="color: #000000" href="https://www.linkedin.com/in/fmrgc/"><strong>Fábio Carvalho</strong></a></span><br />
SharePoint Consultant<br />
<strong>|create|</strong><span style="color: #ff0000"><strong>it</strong></span><strong>|</strong></p>
<p>The post <a href="https://blogit.create.pt/fabiocarvalho/2017/03/24/sharepoint-using-flows-on-yours-list-items-and-documents/">SharePoint &#8211; Using Flows on yours list items and documents</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blogit.create.pt/fabiocarvalho/2017/03/24/sharepoint-using-flows-on-yours-list-items-and-documents/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>SharePoint Online &#8211; Storage Metrics &#8211; Monitor storage usage in your Site Collection</title>
		<link>https://blogit.create.pt/fabiocarvalho/2017/03/23/sharepoint-online-storage-metrics-monitor-storage-usage-in-your-site-collection/</link>
					<comments>https://blogit.create.pt/fabiocarvalho/2017/03/23/sharepoint-online-storage-metrics-monitor-storage-usage-in-your-site-collection/#respond</comments>
		
		<dc:creator><![CDATA[Fábio Carvalho]]></dc:creator>
		<pubDate>Thu, 23 Mar 2017 23:25:35 +0000</pubDate>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Migration]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Administration]]></category>
		<category><![CDATA[SharePoint 2010]]></category>
		<category><![CDATA[SharePoint 2013]]></category>
		<category><![CDATA[SharePoint 2016]]></category>
		<category><![CDATA[SharePoint Online]]></category>
		<category><![CDATA[Storage Metrics]]></category>
		<guid isPermaLink="false">http://blogit.create.pt/fabiocarvalho/?p=2881</guid>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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