<?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>Tech Archives - Blog IT</title>
	<atom:link href="https://blogit.create.pt/category/tech/feed/" rel="self" type="application/rss+xml" />
	<link>https://blogit.create.pt/category/tech/</link>
	<description>Create IT blogger community</description>
	<lastBuildDate>Mon, 11 Apr 2022 20:34:53 +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 Enable Teams Meeting Attendance List Download in Microsoft 365</title>
		<link>https://blogit.create.pt/miguelisidoro/2020/09/20/how-to-enable-teams-meeting-attendance-list-download-in-microsoft-365/</link>
					<comments>https://blogit.create.pt/miguelisidoro/2020/09/20/how-to-enable-teams-meeting-attendance-list-download-in-microsoft-365/#comments</comments>
		
		<dc:creator><![CDATA[Miguel Isidoro]]></dc:creator>
		<pubDate>Sun, 20 Sep 2020 20:07:53 +0000</pubDate>
				<category><![CDATA[Outlook]]></category>
		<category><![CDATA[Microsoft 365]]></category>
		<category><![CDATA[Modern Workplace]]></category>
		<category><![CDATA[Collaboration]]></category>
		<category><![CDATA[Microsoft Teams]]></category>
		<category><![CDATA[Office 365]]></category>
		<guid isPermaLink="false">https://blogit.create.pt/?p=11830</guid>

					<description><![CDATA[<p>This post explains how we can enable the possibility, in Microsoft Teams, for Meeting Organizers to download the meeting attendance list to Excel to retrieve the list of all attendees that were present in a meeting. Introduction Recently, someone asked me if it was possible to export a Microsoft Teams Meeting Attendance List to Excel [&#8230;]</p>
<p>The post <a href="https://blogit.create.pt/miguelisidoro/2020/09/20/how-to-enable-teams-meeting-attendance-list-download-in-microsoft-365/">How to Enable Teams Meeting Attendance List Download in Microsoft 365</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 enable the possibility, in Microsoft Teams, for Meeting Organizers to download the meeting attendance list to Excel to retrieve the list of all attendees that were present in a meeting.</p>



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



<p>Recently, someone asked me if it was possible to export a Microsoft Teams Meeting Attendance List to Excel while in the meeting!</p>



<p>My first reaction was that I hadn&#8217;t seen that possibility in my tenant and that probably this wasn&#8217;t possible. The truth is that Microsoft Teams has added a new feature that allows organizers to download and view the attendees that are present in a meeting. However, this option is not enabled by default.</p>



<p>After googling a bit, I found a <a aria-label="undefined (opens in a new tab)" href="https://support.microsoft.com/en-ie/office/download-attendance-reports-in-teams-ae7cf170-530c-47d3-84c1-3aedac74d310" target="_blank" rel="noreferrer noopener">Microsoft support article</a> that pointed me in the right direction.</p>



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



<p>Unfortunetaly, this configuration isn&#8217;t available in Teams Admin Center and in order to enable this meeting policy, we have to use PowerShell.</p>



<h3 class="wp-block-heading">Pre-Requisites</h3>



<p>The first step is to install Microsoft Teams and Skype for Business PowerShell modules:</p>



<ul class="wp-block-list"><li><strong>Microsoft Teams</strong> &#8211; just run the following command in a PowerShell console: Install-Module MicrosoftTeams</li><li><strong>Skype for Business:</strong> <a aria-label="undefined (opens in a new tab)" href="https://www.microsoft.com/en-us/download/details.aspx?id=39366" target="_blank" rel="noreferrer noopener">download </a>and install the PowerShell Module (update 26/07/2021: no longer necessary)</li></ul>



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



<p>After installing the required PowerShell modules, we are ready for the fun part! Just run the PowerShell commands below (ensure that you run using the &#8220;Run as Adminstrator&#8221; option). In my example, I will change the Global meeting policy, that can make sense if we want to enable this policy for all users but you may want to create a new policy instead if we want to enable meeting attendance download to a restricted set of users. Check <a href="https://docs.microsoft.com/en-us/microsoftteams/meeting-policies-in-teams#meeting-policy-settings---meeting-attendance-report" target="_blank" aria-label="undefined (opens in a new tab)" rel="noreferrer noopener">this Microsoft article</a> for details.</p>



<ol class="wp-block-list"><li>Import-Module SkypeOnlineConnector</li><li>Connect-MicrosoftTeams<br><br>This step will allow ask for credentials of a Global Admin user. This authentication method works fine if you have Multi-Factor Authentication enabled (MFA) in your tenant.<br><br><img fetchpriority="high" decoding="async" width="568" height="345" class="wp-image-11854" style="width: 600px" src="https://blogit.create.pt////wp-content/uploads/2020/09/Teams_Login.jpg" alt="" srcset="https://blogit.create.pt/wp-content/uploads/2020/09/Teams_Login.jpg 568w, https://blogit.create.pt/wp-content/uploads/2020/09/Teams_Login-300x182.jpg 300w" sizes="(max-width: 568px) 100vw, 568px" /><br></li><li>$sfbSession = New-CsOnlineSession</li><li>Import-PSSession $sfbSession<br><br>Lines 3 and 4 are required to avoid an error saying Get-CsTeamsMeetingPolicy is not available in the next command.<br></li><li>Get-CsTeamsMeetingPolicy -Identity &#8220;Global&#8221;<br><br>After running this command, we can see that the &#8220;AllowEngagementReport&#8221; property which enables/disables the meeting attendance download is disabled.<br><br><img decoding="async" width="511" height="132" class="wp-image-11861" style="width: 600px" src="https://blogit.create.pt////wp-content/uploads/2020/09/Teams_AllowEngagementReport_False.jpg" alt="" srcset="https://blogit.create.pt/wp-content/uploads/2020/09/Teams_AllowEngagementReport_False.jpg 511w, https://blogit.create.pt/wp-content/uploads/2020/09/Teams_AllowEngagementReport_False-300x77.jpg 300w" sizes="(max-width: 511px) 100vw, 511px" /><br></li><li>Set-CsTeamsMeetingPolicy -Identity &#8220;Global&#8221; -AllowEngagementReport Enabled<br><br>This command will enable the the meeting attendance download<br><br></li><li>Get-CsTeamsMeetingPolicy -Identity &#8220;Global&#8221;</li></ol>



<p>After running this command, we can see that the &#8220;AllowEngagementReport&#8221; property is now enabled.</p>



<p><img decoding="async" width="503" height="132" class="wp-image-11868" style="width: 600px" src="https://blogit.create.pt////wp-content/uploads/2020/09/Teams_AllowEngagementReport_True.jpg" alt="" srcset="https://blogit.create.pt/wp-content/uploads/2020/09/Teams_AllowEngagementReport_True.jpg 503w, https://blogit.create.pt/wp-content/uploads/2020/09/Teams_AllowEngagementReport_True-300x79.jpg 300w" sizes="(max-width: 503px) 100vw, 503px" /></p>



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



<p>To test if the configuration was successful, just schedule a meeting and check if while in the meeting, you are able to download the meeting attandance list.</p>



<p>You now should have a new option named &#8220;Download attendance list&#8221; and you should be able to download the meeting&#8217;s attendance list. The list will contain all users that are effectively attending the meeting and will not contain the attendees that were invited that are not attending the meeting, even if they accepted the meeting request. </p>



<figure class="wp-block-image size-large"><img decoding="async" width="526" height="417" src="https://blogit.create.pt////wp-content/uploads/2020/09/Teams_Meeting_Presence_Download.png" alt="" class="wp-image-11871" srcset="https://blogit.create.pt/wp-content/uploads/2020/09/Teams_Meeting_Presence_Download.png 526w, https://blogit.create.pt/wp-content/uploads/2020/09/Teams_Meeting_Presence_Download-300x238.png 300w" sizes="(max-width: 526px) 100vw, 526px" /></figure>



<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 href="https://blogit.create.pt////miguelisidoro/2020/04/12/save-time-scheduling-microsoft-teams-meetings-using-findtime/" target="_blank" aria-label="undefined (opens in a new tab)" 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 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 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 Scheduling!</p>
<p>The post <a href="https://blogit.create.pt/miguelisidoro/2020/09/20/how-to-enable-teams-meeting-attendance-list-download-in-microsoft-365/">How to Enable Teams Meeting Attendance List Download in Microsoft 365</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blogit.create.pt/miguelisidoro/2020/09/20/how-to-enable-teams-meeting-attendance-list-download-in-microsoft-365/feed/</wfw:commentRss>
			<slash:comments>8</slash:comments>
		
		
			</item>
		<item>
		<title>Pros and Cons of Single Tenant vs Multiple Tenants in Office 365</title>
		<link>https://blogit.create.pt/miguelisidoro/2019/01/07/pros-and-cons-of-single-tenant-vs-multiple-tenants-in-office-365/</link>
					<comments>https://blogit.create.pt/miguelisidoro/2019/01/07/pros-and-cons-of-single-tenant-vs-multiple-tenants-in-office-365/#comments</comments>
		
		<dc:creator><![CDATA[Miguel Isidoro]]></dc:creator>
		<pubDate>Mon, 07 Jan 2019 00:22:36 +0000</pubDate>
				<category><![CDATA[Microsoft 365]]></category>
		<category><![CDATA[Modern Workplace]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Collaboration]]></category>
		<category><![CDATA[Modern SharePoint]]></category>
		<category><![CDATA[Office 365]]></category>
		<guid isPermaLink="false">https://blogit.create.pt/?p=8352</guid>

					<description><![CDATA[<p>Office 365 Single Tenant vs Multiple Tenants, what is the best option for you and why? I recently was involved in a scenario with a customer that had to choose between having multiple Office 365 tenants or just a single tenant. This post will talk about some of the technical considerations that you will have [&#8230;]</p>
<p>The post <a href="https://blogit.create.pt/miguelisidoro/2019/01/07/pros-and-cons-of-single-tenant-vs-multiple-tenants-in-office-365/">Pros and Cons of Single Tenant vs Multiple Tenants in Office 365</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>Office 365 Single Tenant vs Multiple Tenants, what is the best option for you and why?</p>



<p>I recently was involved in a scenario with a customer that had to choose between having multiple Office 365 tenants or just a single tenant. This post will talk about some of the technical considerations that you will have to ask yourself if you are considering choosing between a single or a multi-tenant approach and the impacts that this decision has on the end user experience.</p>



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



<p>The decision of going with multiple tenants for your organization should not be taken lightly since <strong>it has a LOT of implications</strong> for the end user experience. I will discuss the end user experience implications in a greater detail below but let me be clear: <strong>you should choose to use a single Office 365 tenant for your organization if you can.</strong></p>



<h2 class="wp-block-heading">Common Scenarios for Multiple Tenants</h2>



<p>There are a few scenarios that organizations may feel that the best or even the only option is to go with multiple tenants. Here are some of the most common scenarios:</p>



<ul class="wp-block-list"><li>Our organization is composed by several divisions worldwide and each division must have its data stored in different geographies</li><li>We must provide complete autonomy of administrative control for each division within the organization</li><li>We want to avoid network latency problems with Office 365 workloads (Ex: Exchange Online, SharePoint Online, Teams)</li><li>One of your divisions may one day leave the organization and we want to ensure that if this happens, data is properly isolated</li><li>The organization has multiple Office 365 licensing providers from different geographies</li></ul>



<p>Going with multiple tenant is a possible way to solve the problems above but there are almost always alternative solutions. Recently, Multi-Geo capabilities were announced that allow organizations to split its data residency across different geographies without the need to have multiple tenants. To learn more about Multi-Geo Capabilities in Office 365, click <a rel="noreferrer noopener" aria-label="here (opens in a new tab)" href="https://products.office.com/en/business/multi-geo-capabilities" target="_blank">here</a>.</p>



<h2 class="wp-block-heading">Important Technical Questions To Consider</h2>



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



<p>One fairly common mistake that many organizations can make is to think that because they have multiple DNS domains, they need to have multiple Office 365 tenants. This is NOT true and you can have multiple domains in a single tenant (you can have up to 5000 domains in a single Office 365 tenant, more details <a aria-label="here (opens in a new tab)" href="https://docs.microsoft.com/en-us/office365/servicedescriptions/office-365-platform-service-description/domains" target="_blank" rel="noreferrer noopener">here</a>).</p>



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



<p>In Office 365, users will authenticate to every workload using their identity, typically in one of the following scenarios:</p>



<ul class="wp-block-list"><li>An Azure Active Directory account synchronized with your local Active Directory environment (recommended scenario for most organizations)</li><li>A Cloud Only Account (if your organization doesn&#8217;t have a local Active Directory or some users will only need to access Office 365 and Cloud resources)</li></ul>



<h3 class="wp-block-heading">Azure Active Directory</h3>



<p>If you need to sync your local Azure Active Directory with Azure Active Directory, there are a few considerations you have to take into account:</p>



<ul class="wp-block-list"><li>An Azure Active Directory tenant is associated to a single Office 365 tenant</li><li>Each user is unique in Azure Active Directory and you cannot synchronize the same user into multiple tenants. This has a very important implication: <strong>each user is a member of a single tenant and is consider as a Guest user in any other tenant</strong></li><li>If you have multiple tenants, each DNS domain can only be registered in a single tenant</li><li>If you have several local Active Directory forests and you want to sync all forests into a single tenant, you can only have one Azure AD Connect instance that will have to have access to all the local AD forests. To learn more about the Azure AD Connect supported topologies, click <a rel="noreferrer noopener" aria-label="here (opens in a new tab)" href="https://docs.microsoft.com/en-us/azure/active-directory/hybrid/plan-connect-topologies" target="_blank">here</a></li></ul>



<h3 class="wp-block-heading">Tenant Migration</h3>



<p>If you are in a case where there are already several tenants in your organization and you want to migrate users and Office 365 workloads into a single tenant, it is important to evaluate which workloads are already being used. The easiest migration path is if the only workload in use is email and the more workloads in use, the harder the migration will be.</p>



<p>If you still evaluating if you are going for a single tenant or multiple tenants, read on.</p>



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



<p>One of the most important things to consider before deciding between a single or multiple tenants is the end user experience. Next, I will discuss in greater detail, what the end user experience will be like in each of the two scenarios.</p>



<h3 class="wp-block-heading" id="mce_28">Single Tenant</h3>



<p>This is how the end user experience will look like if you go with a single Office 365 tenant:</p>



<ul class="wp-block-list"><li>All users are treated as from the same company</li><li>Single point of access for all collaboration (single Intranet Portal for collaboration), users will only have to access one URL, making it easier for users to find the information they are looking for</li><li>Better user experience overall</li><li>Seamless sharing experience</li><li>Sharing Office 365 groups can be done directly from SharePoint</li><li>SharePoint Search will returns results for all information in the organization that each user has access to and the new intelligent/modern search recommendations will have a full experience on all the organization&#8217;s content, making it easier for users to find the information they are looking for</li><li>Term Store can be used across the whole organization</li><li>Users will access their OneDrive for Business site from any location in the tenant</li><li>Users will access their user profile from any location in the tenant</li><li>Using services like Flow, PowerApps, PowerBI, Stream, and Forms will be much easier: <ul><li>PowerApps applications are all in one tenant and can be shared with all users in the organization without restrictions (Ex: Vacation Request App to allow all users in the organization to shedule their vacations)</li><li>Flows can be used by all users in the organization</li><li>Forms can be responded by all users in the organization </li></ul></li><li>Full Microsoft Teams Experience (no need to switch between tenants). This is how Microsoft Teams experience will look like with a single tenant: <ul><li>Users do not have to switch between tenants in Teams and can talk to everyone in their organization</li><li>Users are notified of new conversations (or conversation replies) they have with anyone inside their organization</li><li>Presence of users in Teams is consistent (there is only one tenant and users are always connected to the same tenant)</li><li>You can talk to anyone in the organization in Teams and you can easily find anyone in the organization in the Teams search bar </li></ul></li><li>Full Experience in Office 365 Groups</li><li>A single tenant already supports Multiple Geographies (for Exchange, OneDrive and SharePoint). To know more about Multi-Geo Capabilities in Office 365, click <a rel="noreferrer noopener" aria-label="here (opens in a new tab)" href="https://docs.microsoft.com/en-us/office365/enterprise/multi-geo-capabilities-in-onedrive-and-sharepoint-online-in-office-365" target="_blank">here</a></li><li>Shared mailboxes may include users from different domains as all users are in the same tenant</li><li>Sync offline any document library in any SharePoint site in the tenant using the same identity</li><li>Office 365 App Launcher will appear for all users since they are always using the tenant they belong to</li></ul>



<h3 class="wp-block-heading">Multiple Tenants</h3>



<p>This is how the end user experience will look like if you go with multiple Office 365 tenants:</p>



<ul class="wp-block-list"><li>Users from other tenants are treated as Guests (limited user experience)</li><li>Several points of access for collaboration (several Intranet Portals for collaboration), users will have to access several different URLs, making it harder for users to find the information they are looking for</li><li>Delve is limited to one Office 365 tenant and users will not be able to collaborate using Delve with users from other tenants</li><li>Shared mailboxes cannot include users from different tenants</li><li>Across Office 365 tenants, external Out of Office replies will be used. The internal Out of Office replies will only work for users within the same tenant</li><li>Guest users cannot be pre-authorized on SharePoint content; they need to follow the invitation workflow on a case-by-case basis through an email invitation. External Access will also need to be enabled in the tenant</li><li>Adding external users to a Office 365 group must be done from Outlook Web App (confusing for users, since they have two places to share an Office 365 group: SharePoint for internal users, Outlook Web App for external users)</li><li>SharePoint Search and Term Store are bound to a single tenant. Users will have to search in multiple tenants, making it harder for users to find the information they are looking for</li><li>Microsoft Search does not work across tenants, and the new intelligent/modern search recommendations will not be nearly as helpful as they could be</li><li>Users will only be able to access their OneDrive for Business site from the tenant they belong to</li><li>Users will only be able to access their user profile from the tenant they belong to </li><li>Trying to use the services like Flow, PowerApps, PowerBI, Stream, and Forms will be much harder: <ul><li>PowerApps only supports users from one tenant <a href="https://powerusers.microsoft.com/t5/General-Discussion/Ability-to-sign-in-to-multiple-tenants-in-PowerApps-for-Android/td-p/126007"></a>. For example, a Vacation Request App can only be used by users in one tenant (or the app should be installed in all tenants and data gathering for all organization would have to be merged)</li><li>Flow can only be used by users in one tenant</li><li>Forms can only be answered by users in the same tenant. If we want to share the form with other tenants, the form must be public which allows users from any organization or an anonymous user to respond </li></ul></li><li>Users can&#8217;t sync offline document libraries from multiple tenants using OneDrive for Business with the same identity (there is a <a rel="noreferrer noopener" aria-label="user voice request  (opens in a new tab)" href="https://onedrive.uservoice.com/forums/913522-onedrive-on-windows/suggestions/18441352-enable-syncing-of-files-across-o365-organizations" target="_blank">user voice request </a>to enable this feature)</li><li>Limited Teams Experience (users from one tenant need to switch between tenants to talk with users from another tenant). <br>This is how Microsoft Teams experience will look like with multiple tenants: <ul><li>Users have to switch between tenants in Teams to talk to people from another tenant</li><li>Users are not notified of conversations of other tenants in which they are Guests when connected to another tenant (eg, the tenant to which they belong) <ul><li>Only when there is a direct mention to the team, users are notified of other tenant&#8217;s conversations in the upper right corner of Teams</li></ul></li><li>Users, when connected to another tenant as Guests, are only notified of their tenant&#8217;s conversations in the upper right corner of Teams</li><li>The names of users when connected as Guests to other tenants appear with suffix &#8220;(Guest)&#8221;</li><li>Presence of users in the Teams is not consistent, and the indication of presence is only correct in the tenant to which the user belongs to. Example: <ul><li>User as Guest appears as Offline</li><li>User in the tenant that belongs to appears as Busy </li></ul></li><li>By default, it is only possible to talk with people of the same tenant at the same time. If we want to talk to people from other tenants, we have the following possibilities: <ul><li>We have to switch tenants in Teams and we can no longer talk to people in our tenant</li><li>We add the person as guest in our tenant in one of the teams to which we also belong</li></ul></li></ul></li><li>There are several Teams features limitations for Guest users (see the table below)</li></ul>



<div class="wp-block-image"><figure class="aligncenter"><img decoding="async" width="768" height="847" src="https://blogit.create.pt////wp-content/uploads/2019/01/SingleVSMultiTenant_TeamsExperience.png" alt="" class="wp-image-8378" srcset="https://blogit.create.pt/wp-content/uploads/2019/01/SingleVSMultiTenant_TeamsExperience.png 768w, https://blogit.create.pt/wp-content/uploads/2019/01/SingleVSMultiTenant_TeamsExperience-272x300.png 272w, https://blogit.create.pt/wp-content/uploads/2019/01/SingleVSMultiTenant_TeamsExperience-696x768.png 696w, https://blogit.create.pt/wp-content/uploads/2019/01/SingleVSMultiTenant_TeamsExperience-381x420.png 381w" sizes="(max-width: 768px) 100vw, 768px" /><figcaption>Microsoft Teams User Experience with Multiple Office 365 Tenants </figcaption></figure></div>



<ul class="wp-block-list"><li>Limited Experience in Office 365 Groups (see table below)</li></ul>



<div class="wp-block-image"><figure class="aligncenter"><img decoding="async" width="580" height="912" src="https://blogit.create.pt////wp-content/uploads/2019/01/SingleVSMultiTenant_Office365GroupExperience.png" alt="" class="wp-image-8380" srcset="https://blogit.create.pt/wp-content/uploads/2019/01/SingleVSMultiTenant_Office365GroupExperience.png 580w, https://blogit.create.pt/wp-content/uploads/2019/01/SingleVSMultiTenant_Office365GroupExperience-191x300.png 191w, https://blogit.create.pt/wp-content/uploads/2019/01/SingleVSMultiTenant_Office365GroupExperience-267x420.png 267w" sizes="(max-width: 580px) 100vw, 580px" /><figcaption>Office 365 User Experience with Multiple Office 365 Tenants </figcaption></figure></div>



<ul class="wp-block-list"><li>Office 365 App Launcher will only be displayed for users when they access the tenant they belong to. When they access other tenants, the App Launcher will not be displayed, making it a confusing experience for the user</li></ul>



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



<p>The analysis above takes in consideration the current features in Office 365 and things may change in the future. Despite the changes that may occur in the future, the user experience with multiple tenants will always be limited in comparison with the end user experience with a single tenant. </p>



<p>If your organization needs to collaborate without barriers and have a richer collaboration experience, a single tenant scenario is your best option.</p>



<p>You may go for multiple tenants but in the way I see it, this should only be an option if technically there is no other option.<br>One of strongest arguments in favor of a multi tenant scenario is the case of organizations that are composed by multiple divisions or companies (ex: hotel chain with multiple hotel units) and one of the companies may leave the organization. Even in this case, the decision to go for multiple tenants should be carefully evaluated since the degree of separation that this solution imposes within the organization and the limitations in what regards to collaboration experience are very significant and should not be overlooked. No doubt that if, in the scenario above, a company leaves an organization that has a single Office 365 tenant, migrating users and Office 365 workloads will be harder but should this alone make organizations go for multiple tenants, sacrificing the collaboration experience? I would love to hear your thoughts on this subject and feel free to leave your opinion in the comments section of this post below.</p>



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



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



<p>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 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 want to know all about the latest SharePoint and Office 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 go all in to SharePoint Online and Office 365, a hybrid scenario may be the best choice.&nbsp;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>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 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 you want to learn all the steps and precautions necessary to successfully keep your SharePoint farm updated and be ready to start your move to the cloud, click <a 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 learn how to greatly speed up your SharePoint farm update process to ensure your SharePoint farm keeps updated and you stay one step closer to start your move to the cloud, click <a rel="noreferrer noopener" aria-label="here (opens in a new tab)" 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 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>Happy SharePointing!</p>
<p>The post <a href="https://blogit.create.pt/miguelisidoro/2019/01/07/pros-and-cons-of-single-tenant-vs-multiple-tenants-in-office-365/">Pros and Cons of Single Tenant vs Multiple Tenants 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/01/07/pros-and-cons-of-single-tenant-vs-multiple-tenants-in-office-365/feed/</wfw:commentRss>
			<slash:comments>42</slash:comments>
		
		
			</item>
		<item>
		<title>9 Outlook Quick Tips for Productivity</title>
		<link>https://blogit.create.pt/marionunes/2018/11/13/9-outlook-tips-for-productivity/</link>
					<comments>https://blogit.create.pt/marionunes/2018/11/13/9-outlook-tips-for-productivity/#respond</comments>
		
		<dc:creator><![CDATA[Mário Nunes]]></dc:creator>
		<pubDate>Tue, 13 Nov 2018 15:15:14 +0000</pubDate>
				<category><![CDATA[Outlook]]></category>
		<category><![CDATA[Modern Workplace]]></category>
		<category><![CDATA[Misc]]></category>
		<category><![CDATA[Productivity]]></category>
		<guid isPermaLink="false">https://blogit.create.pt/?p=7749</guid>

					<description><![CDATA[<p>Disable notifications New email notifications are a big distraction. Disable them! Archive processed email Archive emails that you don&#8217;t need to take further actions. In your inbox, you should have only the things you need to do, not those you have already done. I personally have only one archive folder, you might need to have [&#8230;]</p>
<p>The post <a href="https://blogit.create.pt/marionunes/2018/11/13/9-outlook-tips-for-productivity/">9 Outlook Quick Tips for Productivity</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h2>Disable notifications</h2>
<p>New email notifications are a big distraction. Disable them!</p>
<p><img decoding="async" src="https://i.imgur.com/e3uZnbY.png" /></p>
<h2>Archive processed email</h2>
<p>Archive emails that you don&#8217;t need to take further actions. In your inbox, you should have only the things you need to do, not those you have already done.</p>
<p>I personally have only one archive folder, you might need to have more, but try to keep it simple!</p>
<p>If you have never archived your emails, archiving everything now might take several hours, but is well worth it! Also, it should not take any of your time, as it can be done overnight.</p>
<h2>Use tasks and calendar appointments</h2>
<p>Use tasks for things that can be done quickly (less than 30min).</p>
<p>Use calendar appointments for bigger tasks (more than 30min).</p>
<h2>Setup calendar and tasks on the main screen</h2>
<p>Have all the information you need on the main screen to avoid extra clicks and loading wait times!</p>
<h2><img decoding="async" src="https://i.imgur.com/qaiP6xO.png" />Use drag and drop</h2>
<p>Take full advantage of drag-and-drop for moving files and creating tasks and events!</p>
<p><img decoding="async" src="https://i.imgur.com/thqCXw2.png" /></p>
<h2>Keep windows small</h2>
<p>Don&#8217;t open your emails on a big window, it&#8217;s easier to read on a smaller screen (like books).</p>
<h2>Use the file preview feature</h2>
<p>Preview your files directly on the email.</p>
<p><img decoding="async" src="https://i.imgur.com/Jhhpzl7.png" /></p>
<h2>Colour direct emails</h2>
<p>Distinguish emails sent directly to you with colour!</p>
<p><img decoding="async" src="https://i.imgur.com/9KbTqGd.png" /></p>
<h2>Don&#8217;t abuse folder rules</h2>
<p>Use folder rules wisely. If you have too many rules and folders, you might lose time checking them all.</p>
<p>&nbsp;</p>
<p>I hope this was helpful,</p>
<p>Thanks for reading!</p>
<p>Mário Nunes</p>
<p>The post <a href="https://blogit.create.pt/marionunes/2018/11/13/9-outlook-tips-for-productivity/">9 Outlook Quick Tips for Productivity</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blogit.create.pt/marionunes/2018/11/13/9-outlook-tips-for-productivity/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Day @ Office Episode 1.S2 – No Wifi! No Problem!</title>
		<link>https://blogit.create.pt/antoniobrisson/2017/12/06/day-office-episode-s2e1-no-wifi-no-problem/</link>
					<comments>https://blogit.create.pt/antoniobrisson/2017/12/06/day-office-episode-s2e1-no-wifi-no-problem/#respond</comments>
		
		<dc:creator><![CDATA[António Brisson]]></dc:creator>
		<pubDate>Wed, 06 Dec 2017 15:40:07 +0000</pubDate>
				<category><![CDATA[Digital Transformation]]></category>
		<category><![CDATA[Office]]></category>
		<category><![CDATA[Microsoft 365]]></category>
		<category><![CDATA[#Files-OnDemand]]></category>
		<category><![CDATA[#M365]]></category>
		<category><![CDATA[#O365Adoption]]></category>
		<category><![CDATA[#OneDrive]]></category>
		<category><![CDATA[sharepoint]]></category>
		<guid isPermaLink="false">http://blogit.create.pt/antoniobrisson/?p=1164</guid>

					<description><![CDATA[<p>The new Day@Office episode is about the new OneDrive feature: Files-On Demand. With Files On-Demand , managing synched files with OneDrive has never been easier. With Files On-Demand you can list a complete library in your local OneDrive folder and select which specific files you need to synchronize to your device  without taking the whole disk space [&#8230;]</p>
<p>The post <a href="https://blogit.create.pt/antoniobrisson/2017/12/06/day-office-episode-s2e1-no-wifi-no-problem/">Day @ Office Episode 1.S2 – No Wifi! No Problem!</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>The new <a href="https://youtu.be/jEgujh4b64Y">Day@Office</a> episode is about the new OneDrive feature: Files-On Demand.</p>
<p>With Files On-Demand , managing synched files with OneDrive has never been easier. With Files On-Demand you can list a complete library in your local OneDrive folder and select which specific files you need to synchronize to your device  without taking the whole disk space with files that you rarely use.</p>
<h1>Setup</h1>
<p>To enable Files On-Demand you just follow these steps:</p>
<p><strong>1 &#8211; Click on your OneDrive icon</strong></p>
<p><a href="http://blogit-create.com/wp-content/uploads/2017/12/1.png"><img decoding="async" class="alignnone size-full wp-image-1224" src="http://blogit-create.com/wp-content/uploads/2017/12/1.png" alt="" width="172" height="38" /></a></p>
<p><strong>2 &#8211; Click on &#8220;more actions&#8221;</strong></p>
<p><a href="http://blogit-create.com/wp-content/uploads/2017/12/2.png"><img decoding="async" class="alignnone size-full wp-image-1214" src="http://blogit-create.com/wp-content/uploads/2017/12/2.png" alt="" width="722" height="255" /></a></p>
<p><strong>3 &#8211; Select &#8220;Settings&#8221;</strong></p>
<p><a href="http://blogit-create.com/wp-content/uploads/2017/12/3.png"><img decoding="async" class="alignnone size-full wp-image-1204" src="http://blogit-create.com/wp-content/uploads/2017/12/3.png" alt="" width="721" height="359" srcset="https://blogit.create.pt/wp-content/uploads/2017/12/3.png 721w, https://blogit.create.pt/wp-content/uploads/2017/12/3-300x149.png 300w, https://blogit.create.pt/wp-content/uploads/2017/12/3-324x160.png 324w, https://blogit.create.pt/wp-content/uploads/2017/12/3-696x347.png 696w" sizes="(max-width: 721px) 100vw, 721px" /></a></p>
<p><strong>3 &#8211; On the &#8220;Settings&#8221; tab check &#8220;Save space and download files as you need them&#8221;</strong></p>
<p><a href="http://blogit-create.com/wp-content/uploads/2017/12/4.png"><img decoding="async" class="alignnone size-full wp-image-1194" src="http://blogit-create.com/wp-content/uploads/2017/12/4.png" alt="" width="837" height="901" srcset="https://blogit.create.pt/wp-content/uploads/2017/12/4.png 837w, https://blogit.create.pt/wp-content/uploads/2017/12/4-279x300.png 279w, https://blogit.create.pt/wp-content/uploads/2017/12/4-768x827.png 768w, https://blogit.create.pt/wp-content/uploads/2017/12/4-696x749.png 696w, https://blogit.create.pt/wp-content/uploads/2017/12/4-390x420.png 390w" sizes="(max-width: 837px) 100vw, 837px" /></a></p>
<h1>Once configured you future syncs with document libraries will work as follows:</h1>
<ul>
<li>A link to each library file will be created in your local folder</li>
<li>Each file or set can be defined to keep a local copy or not</li>
<li>When you open cloud file that exists in a synchronized document library a copy of the document will be downloaded to your sync folder.</li>
</ul>
<h1>Interested in getting to know more?</h1>
<h2>Visit our <a href="https://o365adoption.create.pt/en/">O365Adoption offer</a></h2>
<p>The post <a href="https://blogit.create.pt/antoniobrisson/2017/12/06/day-office-episode-s2e1-no-wifi-no-problem/">Day @ Office Episode 1.S2 – No Wifi! No Problem!</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blogit.create.pt/antoniobrisson/2017/12/06/day-office-episode-s2e1-no-wifi-no-problem/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Day @ Office Episode #5 &#8211; Onboarding Talent</title>
		<link>https://blogit.create.pt/antoniobrisson/2017/07/25/day-office-episode-5-onboarding-talent/</link>
					<comments>https://blogit.create.pt/antoniobrisson/2017/07/25/day-office-episode-5-onboarding-talent/#respond</comments>
		
		<dc:creator><![CDATA[António Brisson]]></dc:creator>
		<pubDate>Tue, 25 Jul 2017 16:41:50 +0000</pubDate>
				<category><![CDATA[Office]]></category>
		<category><![CDATA[Microsoft 365]]></category>
		<category><![CDATA[Modern Workplace]]></category>
		<guid isPermaLink="false">http://blogit.create.pt/antoniobrisson/?p=1024</guid>

					<description><![CDATA[<p>Have you ever turned a new team member in complete burnout by information overflow? This is how we can help you.</p>
<p>The post <a href="https://blogit.create.pt/antoniobrisson/2017/07/25/day-office-episode-5-onboarding-talent/">Day @ Office Episode #5 &#8211; Onboarding Talent</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Have you ever turned a new team member in complete burnout by information overflow? This is how we can help you.</p>
<p><iframe title="Day@Office5" width="696" height="522" src="https://www.youtube.com/embed/WlRjfSUT9f0?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></p>
<p>The post <a href="https://blogit.create.pt/antoniobrisson/2017/07/25/day-office-episode-5-onboarding-talent/">Day @ Office Episode #5 &#8211; Onboarding Talent</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blogit.create.pt/antoniobrisson/2017/07/25/day-office-episode-5-onboarding-talent/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Day @ Office Episode #4 &#8211; Ups! Need to rescue THAT document!</title>
		<link>https://blogit.create.pt/antoniobrisson/2017/05/26/day-office-episode-4-ups-need-to-rescue-that-document/</link>
					<comments>https://blogit.create.pt/antoniobrisson/2017/05/26/day-office-episode-4-ups-need-to-rescue-that-document/#respond</comments>
		
		<dc:creator><![CDATA[António Brisson]]></dc:creator>
		<pubDate>Fri, 26 May 2017 16:26:54 +0000</pubDate>
				<category><![CDATA[Office]]></category>
		<category><![CDATA[Microsoft 365]]></category>
		<category><![CDATA[Modern Workplace]]></category>
		<category><![CDATA[0365]]></category>
		<category><![CDATA[Skype]]></category>
		<category><![CDATA[Version History]]></category>
		<category><![CDATA[word]]></category>
		<guid isPermaLink="false">http://blogit.create.pt/antoniobrisson/?p=984</guid>

					<description><![CDATA[<p>Ever lost someone else&#8217;s work while saving yours? We&#8217;ve all been there. This is how we use O365 version history to recover lost work.</p>
<p>The post <a href="https://blogit.create.pt/antoniobrisson/2017/05/26/day-office-episode-4-ups-need-to-rescue-that-document/">Day @ Office Episode #4 &#8211; Ups! Need to rescue THAT document!</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Ever lost someone else&#8217;s work while saving yours? We&#8217;ve all been there. This is how we use O365 version history to recover lost work.</p>
<p><iframe title="Day @ Office Episode #4 - Ups! Need to rescue THAT document!" width="696" height="522" src="https://www.youtube.com/embed/GbLVKtajgtg?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></p>
<p>The post <a href="https://blogit.create.pt/antoniobrisson/2017/05/26/day-office-episode-4-ups-need-to-rescue-that-document/">Day @ Office Episode #4 &#8211; Ups! Need to rescue THAT document!</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blogit.create.pt/antoniobrisson/2017/05/26/day-office-episode-4-ups-need-to-rescue-that-document/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>100 hours of fun: Tuga IT 2017!</title>
		<link>https://blogit.create.pt/pedrovala/2017/05/03/100-hours-of-fun-tuga-it-2017/</link>
					<comments>https://blogit.create.pt/pedrovala/2017/05/03/100-hours-of-fun-tuga-it-2017/#respond</comments>
		
		<dc:creator><![CDATA[Pedro Vala]]></dc:creator>
		<pubDate>Wed, 03 May 2017 23:24:17 +0000</pubDate>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Communities]]></category>
		<category><![CDATA[DevOps]]></category>
		<category><![CDATA[Agile]]></category>
		<category><![CDATA[Cloud]]></category>
		<category><![CDATA[Machine Learning]]></category>
		<category><![CDATA[IoT]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[Microsoft Azure]]></category>
		<category><![CDATA[Data Platform]]></category>
		<category><![CDATA[Tuga IT]]></category>
		<guid isPermaLink="false">http://blogit.create.pt/pedrovala/?p=1264</guid>

					<description><![CDATA[<p>Tuga IT is surely one of the best and biggest tech events happening at Portugal. Look at this: A three-day event with a full day of workshops and two full days of sessions, with 8 parallel tracks on Saturday! More than 100 hours of fun! Wait! There&#8217;s more.. The sessions will be presented by world [&#8230;]</p>
<p>The post <a href="https://blogit.create.pt/pedrovala/2017/05/03/100-hours-of-fun-tuga-it-2017/">100 hours of fun: Tuga IT 2017!</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><a href="http://tugait.pt/2017">Tuga IT</a> is surely one of the best and biggest tech events happening at Portugal.</p>
<h4><strong>Look at this:</strong></h4>
<p>A three-day event with a full day of workshops and two full days of sessions, with 8 parallel tracks on Saturday! More than 100 hours of fun!</p>
<h4><strong>Wait! There&#8217;s more..</strong></h4>
<p>The sessions will be presented by world class speakers talking about some of the most exciting technologies from Azure to a full Open Source track, Enterprise Integration, Agile, DevOps, IoT, Machine Learning and much more.</p>
<p>All this at the price of 10€ for the lunch option or absolutely free for the no-lunch option (the workshops have a separate price ofc).</p>
<h4><strong>Finally, the <span style="text-decoration: underline"><span style="color: #993300;text-decoration: underline">most important</span></span> reason to attend:</strong></h4>
<p>I will be doing a session there (a-ha!) on Saturday May 21st about Azure Search and Amazon CloudSearch!</p>
<p>Make sure to stop by! You can register <a href="https://app.weventual.com/detalheEvento.action?iDEvento=4115">here</a>.</p>
<p>The post <a href="https://blogit.create.pt/pedrovala/2017/05/03/100-hours-of-fun-tuga-it-2017/">100 hours of fun: Tuga IT 2017!</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blogit.create.pt/pedrovala/2017/05/03/100-hours-of-fun-tuga-it-2017/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Day @ Office Episode #3 &#8211; Collaborate without creating duplicates</title>
		<link>https://blogit.create.pt/antoniobrisson/2017/03/29/day-office-episode-3-collaborate-without-creating-duplicates/</link>
					<comments>https://blogit.create.pt/antoniobrisson/2017/03/29/day-office-episode-3-collaborate-without-creating-duplicates/#respond</comments>
		
		<dc:creator><![CDATA[António Brisson]]></dc:creator>
		<pubDate>Wed, 29 Mar 2017 13:58:04 +0000</pubDate>
				<category><![CDATA[Office]]></category>
		<category><![CDATA[Microsoft 365]]></category>
		<category><![CDATA[Modern Workplace]]></category>
		<category><![CDATA[Misc]]></category>
		<category><![CDATA[PowerPoint]]></category>
		<guid isPermaLink="false">http://blogit.create.pt/antoniobrisson/?p=961</guid>

					<description><![CDATA[<p>Tired and confused while compiling document[VersionA].doc with document[VersionB].doc from your team while you were already creating a new version of the &#8220;original with changes&#8221;? Stop hurting yourself! Try co-authoring, it&#8217;s easy, integrated a agile. See how on the video below:</p>
<p>The post <a href="https://blogit.create.pt/antoniobrisson/2017/03/29/day-office-episode-3-collaborate-without-creating-duplicates/">Day @ Office Episode #3 &#8211; Collaborate without creating duplicates</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Tired and confused while compiling document[VersionA].doc with document[VersionB].doc from your team while you were already creating a new version of the &#8220;original with changes&#8221;?</p>
<p>Stop hurting yourself!</p>
<p>Try co-authoring, it&#8217;s easy, integrated a agile. See how on the video below:</p>
<p><iframe title="Day @ Office  Episode #3 - Co-author a document without duplicates" width="696" height="392" src="https://www.youtube.com/embed/99jIhYod65k?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></p>
<p>The post <a href="https://blogit.create.pt/antoniobrisson/2017/03/29/day-office-episode-3-collaborate-without-creating-duplicates/">Day @ Office Episode #3 &#8211; Collaborate without creating duplicates</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blogit.create.pt/antoniobrisson/2017/03/29/day-office-episode-3-collaborate-without-creating-duplicates/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Day@Office Episode #2 &#8211; Fast presentations with great images</title>
		<link>https://blogit.create.pt/antoniobrisson/2017/03/29/dayoffice-episode-2-fast-presentations-with-great-images/</link>
					<comments>https://blogit.create.pt/antoniobrisson/2017/03/29/dayoffice-episode-2-fast-presentations-with-great-images/#respond</comments>
		
		<dc:creator><![CDATA[António Brisson]]></dc:creator>
		<pubDate>Wed, 29 Mar 2017 08:35:13 +0000</pubDate>
				<category><![CDATA[Modern Workplace]]></category>
		<guid isPermaLink="false">http://blogit.create.pt/antoniobrisson/?p=941</guid>

					<description><![CDATA[<p>Ever wondered how you can reduce all that time searching for the perfect picture image for your powerpoint presentation? Now imagine that you could do all that without leaving the PowerPoint application window&#8230;.. Here is how in the new Day@Office episode:</p>
<p>The post <a href="https://blogit.create.pt/antoniobrisson/2017/03/29/dayoffice-episode-2-fast-presentations-with-great-images/">Day@Office Episode #2 &#8211; Fast presentations with great images</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Ever wondered how you can reduce all that time searching for the perfect picture image for your powerpoint presentation?</p>
<p>Now imagine that you could do all that without leaving the PowerPoint application window&#8230;..</p>
<p>Here is how in the new Day@Office episode:</p>
<p><iframe title="Day@Office Episode #2 - Fast presentations with great images" width="696" height="392" src="https://www.youtube.com/embed/xGMVaQIayCM?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></p>
<p>The post <a href="https://blogit.create.pt/antoniobrisson/2017/03/29/dayoffice-episode-2-fast-presentations-with-great-images/">Day@Office Episode #2 &#8211; Fast presentations with great images</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blogit.create.pt/antoniobrisson/2017/03/29/dayoffice-episode-2-fast-presentations-with-great-images/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>O365 Groups Vs Yammer Groups Vs Microsoft Teams a brief comparison.</title>
		<link>https://blogit.create.pt/antoniobrisson/2017/03/20/o365-groups-vs-yammer-groups-vs-microsoft-teams-a-brief-comparison/</link>
					<comments>https://blogit.create.pt/antoniobrisson/2017/03/20/o365-groups-vs-yammer-groups-vs-microsoft-teams-a-brief-comparison/#respond</comments>
		
		<dc:creator><![CDATA[António Brisson]]></dc:creator>
		<pubDate>Mon, 20 Mar 2017 10:00:01 +0000</pubDate>
				<category><![CDATA[Office]]></category>
		<category><![CDATA[Microsoft 365]]></category>
		<category><![CDATA[Modern Workplace]]></category>
		<guid isPermaLink="false">http://blogit.create.pt/antoniobrisson/?p=771</guid>

					<description><![CDATA[<p>The first time I logged on to Yammer a couple of years ago I said &#8220;wow, whenever they find the time to integrate this with a community site it will be the best collaborative solution ever!&#8221; I was told I would have to wait a couple of months&#8230; well it took a little bit longer but [&#8230;]</p>
<p>The post <a href="https://blogit.create.pt/antoniobrisson/2017/03/20/o365-groups-vs-yammer-groups-vs-microsoft-teams-a-brief-comparison/">O365 Groups Vs Yammer Groups Vs Microsoft Teams a brief comparison.</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>The first time I logged on to Yammer a couple of years ago I said &#8220;wow, whenever they find the time to integrate this with a community site it will be the best collaborative solution ever!&#8221; I was told I would have to wait a couple of months&#8230; well it took a little bit longer but it finally happen! Great day, except that meanwhile, communities are dead, Office 365 groups were born and Microsoft Teams is getting its space. What now? What should I do?</p>
<p>My answer is clear: it depends on the scenario constraints and on the experience that you want to provide. One way to provide an answer to this is to have a clear assessment of the pros and cons of each solution. Today I present my contribution to this daunting task by summarizing the  availability for users and guests (users outside the organization) of some of the most relevant functions  of Yammer Groups, O365 as well as an attempt to tackle these by combining Microsoft Teams and of the combination of Yammer Group with a Team Site as well as an Office365 Group with a Yammer channel.</p>
<p><figure id="attachment_811" aria-describedby="caption-attachment-811" style="width: 1920px" class="wp-caption alignnone"><a href="http://blogit-create.com/wp-content/uploads/2017/03/O365Groups.jpg"><img decoding="async" class="wp-image-811 size-full" src="http://blogit-create.com/wp-content/uploads/2017/03/O365Groups.jpg" alt="" width="1920" height="1080" /></a><figcaption id="caption-attachment-811" class="wp-caption-text">Office Groups users and guests compare</figcaption></figure></p>
<p><figure id="attachment_801" aria-describedby="caption-attachment-801" style="width: 1920px" class="wp-caption alignnone"><a href="http://blogit-create.com/wp-content/uploads/2017/03/MicrosoftTeams.jpg"><img decoding="async" class="wp-image-801 size-full" src="http://blogit-create.com/wp-content/uploads/2017/03/MicrosoftTeams.jpg" alt="" width="1920" height="1080" /></a><figcaption id="caption-attachment-801" class="wp-caption-text">Microsoft Teams users and guests compare</figcaption></figure></p>
<p><figure id="attachment_791" aria-describedby="caption-attachment-791" style="width: 1920px" class="wp-caption alignnone"><a href="http://blogit-create.com/wp-content/uploads/2017/03/YammerGroups.jpg"><img decoding="async" class="wp-image-791 size-full" src="http://blogit-create.com/wp-content/uploads/2017/03/YammerGroups.jpg" alt="" width="1920" height="1080" /></a><figcaption id="caption-attachment-791" class="wp-caption-text">Yammer Groups users and guests compare</figcaption></figure></p>
<p><a href="http://blogit-create.com/wp-content/uploads/2017/03/OfficeYammerGroupsTeams.jpg"><img decoding="async" class="alignnone wp-image-871 size-full" src="http://blogit-create.com/wp-content/uploads/2017/03/OfficeYammerGroupsTeams.jpg" alt="" width="1920" height="1080" srcset="https://blogit.create.pt/wp-content/uploads/2017/03/OfficeYammerGroupsTeams.jpg 1920w, https://blogit.create.pt/wp-content/uploads/2017/03/OfficeYammerGroupsTeams-300x169.jpg 300w, https://blogit.create.pt/wp-content/uploads/2017/03/OfficeYammerGroupsTeams-768x432.jpg 768w, https://blogit.create.pt/wp-content/uploads/2017/03/OfficeYammerGroupsTeams-1024x576.jpg 1024w, https://blogit.create.pt/wp-content/uploads/2017/03/OfficeYammerGroupsTeams-696x392.jpg 696w, https://blogit.create.pt/wp-content/uploads/2017/03/OfficeYammerGroupsTeams-1068x601.jpg 1068w, https://blogit.create.pt/wp-content/uploads/2017/03/OfficeYammerGroupsTeams-747x420.jpg 747w" sizes="(max-width: 1920px) 100vw, 1920px" /></a></p>
<p>The post <a href="https://blogit.create.pt/antoniobrisson/2017/03/20/o365-groups-vs-yammer-groups-vs-microsoft-teams-a-brief-comparison/">O365 Groups Vs Yammer Groups Vs Microsoft Teams a brief comparison.</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blogit.create.pt/antoniobrisson/2017/03/20/o365-groups-vs-yammer-groups-vs-microsoft-teams-a-brief-comparison/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
