<?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>Modern Workplace Archives - Blog IT</title>
	<atom:link href="https://blogit.create.pt/category/tech/modern-workplace/feed/" rel="self" type="application/rss+xml" />
	<link>https://blogit.create.pt/category/tech/modern-workplace/</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 #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>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>
		<item>
		<title>Day@Office #1 &#8211; Schedule a team meeting with a single message</title>
		<link>https://blogit.create.pt/antoniobrisson/2017/03/16/dayoffice-1-schedule-a-team-meeting-with-a-single-message/</link>
					<comments>https://blogit.create.pt/antoniobrisson/2017/03/16/dayoffice-1-schedule-a-team-meeting-with-a-single-message/#respond</comments>
		
		<dc:creator><![CDATA[António Brisson]]></dc:creator>
		<pubDate>Thu, 16 Mar 2017 17:17:43 +0000</pubDate>
				<category><![CDATA[User Adoption]]></category>
		<category><![CDATA[Outlook]]></category>
		<category><![CDATA[Digital Transformation]]></category>
		<category><![CDATA[Office]]></category>
		<category><![CDATA[Microsoft 365]]></category>
		<category><![CDATA[Modern Workplace]]></category>
		<guid isPermaLink="false">http://blogit.create.pt/antoniobrisson/?p=731</guid>

					<description><![CDATA[<p>Hi everyone, today I&#8217;m proud to announce the first episode of my new web series Day@Office where I will present many very short films with Office365 productivity tricks. Please enjoy, comment, share and have a wonderful and productive day !</p>
<p>The post <a href="https://blogit.create.pt/antoniobrisson/2017/03/16/dayoffice-1-schedule-a-team-meeting-with-a-single-message/">Day@Office #1 &#8211; Schedule a team meeting with a single message</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&#8217;m proud to announce the first episode of my new web series Day@Office where I will present many very short films with Office365 productivity tricks.</p>
<p>Please enjoy, comment, share and have a wonderful and productive day !</p>
<p><iframe title="Day@Office" width="696" height="392" src="https://www.youtube.com/embed/Z2amahrpzwQ?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/16/dayoffice-1-schedule-a-team-meeting-with-a-single-message/">Day@Office #1 &#8211; Schedule a team meeting with a single message</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/16/dayoffice-1-schedule-a-team-meeting-with-a-single-message/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Modern Workplaces are here to stay and it’s up to you to make your life better with them.</title>
		<link>https://blogit.create.pt/antoniobrisson/2016/11/10/modern-workplaces-are-here-to-stay-and-its-up-to-you-to-make-your-life-better-with-them/</link>
					<comments>https://blogit.create.pt/antoniobrisson/2016/11/10/modern-workplaces-are-here-to-stay-and-its-up-to-you-to-make-your-life-better-with-them/#comments</comments>
		
		<dc:creator><![CDATA[António Brisson]]></dc:creator>
		<pubDate>Thu, 10 Nov 2016 23:34:59 +0000</pubDate>
				<category><![CDATA[User Adoption]]></category>
		<category><![CDATA[Digital Transformation]]></category>
		<category><![CDATA[Modern Workplace]]></category>
		<category><![CDATA[Shadow IT]]></category>
		<guid isPermaLink="false">http://blogit.create.pt/antoniobrisson/?p=471</guid>

					<description><![CDATA[<p>These last two weeks have been very exciting for Modern Workplace enthusiasts. Microsoft launched Microsoft Teams and  at Web Summit there were many topics related with the impact of technologies in the worplace and work-life balance.  At the summit, Sean Ryan’s had a very exciting presentation of Workplace by Facebook and Bill Brigs (CTO, Deloitte) debated with [&#8230;]</p>
<p>The post <a href="https://blogit.create.pt/antoniobrisson/2016/11/10/modern-workplaces-are-here-to-stay-and-its-up-to-you-to-make-your-life-better-with-them/">Modern Workplaces are here to stay and it’s up to you to make your life better with them.</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>These last two weeks have been very exciting for <a href="https://products.office.com/en/business/modern-workplace/webcast-series">Modern Workplace</a> enthusiasts. Microsoft launched Microsoft Teams and  at <a href="https://websummit.net/">Web Summit </a>there were many topics related with the impact of technologies in the worplace and work-life balance.  At the summit, Sean Ryan’s had a very exciting presentation of <a href="https://workplace.fb.com/">Workplace by Facebook</a> and Bill Brigs (CTO, Deloitte) debated with Charles Manning (CEO, Kocahava) on whether  “Technology has destroyed work-life balance” or not.</p>
<p>Although you can safely assume that I’m incredibly biased towards the positive side of the debate (just take a peak at my taskbar in the picture below), I will still share my opinion with you: <strong>“Modern Workplaces are here to stay and it’s up to you to make your life better with it”</strong></p>
<p><figure id="attachment_481" aria-describedby="caption-attachment-481" style="width: 415px" class="wp-caption aligncenter"><a href="http://blogit-create.com/wp-content/uploads/2016/11/taskbar.png"><img decoding="async" class="wp-image-481 " src="http://blogit-create.com/wp-content/uploads/2016/11/taskbar-300x39.png" alt="taskbar" width="415" height="54" /></a><figcaption id="caption-attachment-481" class="wp-caption-text">My taskbar presenting Outlook, Microsoft Teams, Slack, Sype for Business, WhatsApp and Delve</figcaption></figure></p>
<p><span id="more-5935"></span></p>
<p>As an early millennial, born in 1982, I’ve had the opportunity to witness firsthand the transition to a fast-developing information era in the context of my social, student and professional life. In little more than 30 years we’ve passed from patiently waiting for someone to call us on the home landline to the exasperation of waiting for an instant message reply for more than 30 seconds. We’ve passed from getting the phone of our teacher for scheduling a prep-exam class to studying online with our colleagues. We substituted the reading of an encyclopedia for an era of abundance at the distance of a mouse click.</p>
<p>Alongside with this development, we’ve witnessed how geeks can change the world. We’ve seen how easy it is to collaborate with someone that we found across the ocean and shares our interests. We’ve seen regular people going viral on Youtube. We followed their success stories and recreated our own heroes. As a result, now we are always on.  We value mobility and believe that we can change the world if we find the wright people and the wright tools.</p>
<p><strong>So, what could you expect when people like these enter your organizations? What can you do about it?</strong></p>
<ol>
<li><strong>Stay updated. If your people don’t get the tools they need, they will get the tools they need.</strong><br />
Let&#8217;s put it this way “If your people don’t get the tools they need, they will get the tools they need”. Meaning, if you don’t empower your people with right tools within your company’s ecosystem, they will move your company’s work and knowledge to somewhere more useful where they will be able to achieve their purposes. They will do it just because they can do it and because they are used to doing it for so long in so many different ways. This is the fundamental reason behind the growth of <a href="http://managewatch.com/shadow-it-by-the-numbers/">Shadow IT</a> as one of the most relevant threats to company’s safety.<br />
Almost every day a new tool gets out on the market, are you still using the right tools? Most of the time the answer to this question is inside the organization. Promote the sharing of experiences in groups or in small presentation sessions and discuss the alignment between the possibilities of a tool and your team&#8217;s purpose. At <a href="http://www.create.pt/en/">Create IT</a> we promote internal <em><strong>DemoShots</strong> </em>which are 10min of a fully functional demonstration of a tool or feature that someone finds that could be of use to the company followed by 15 min of discussion around the pros and cons of adopting that tool or feature in our day to day work. Anyone can scheduled a <strong><em>DemoShot</em></strong>.</li>
<li><strong>Respect personal space. You have the best team, and they are the best because they are who they are.</strong><br />
Every once in while (let’s keep it this way…) you have a productivity desire or a very tough deadline that gets in your extra time and most of the times, when you love your job, you feel good about it. That’s great, but that’s your own personal choice and you can’t expect the same from your team just because you made that choice. Don’t put expectations about contacting them or getting that email response during the night or weekends unless you have seriously and freely talked about it. Of course, there is the<a href="http://mashable.com/2016/09/29/virgin-digital-detox/#1d0CGH628OqC"> Virgin way of doing it </a>but you might not need to go that far.</li>
<li><strong>Every team is a team</strong><br />
Every team has its own micro culture. Its own challenges and its own business cases. There is no universal solution for team work. Don’t get stressed if one team uses an online group and another is still using email. Just make sure that they know the pros and cons of their option and that everyone on the team is comfortable with that option (even if they still use email for discussing a subject). Again, talk about it.</li>
<li><strong>Teamwork is sharing</strong><br />
Stop downloading every single version of your documents to your laptop. You will only need one final version, which is the sum of your contributions and your team contributions. Do you really want your work to be spread among several desktops? Are you going to merge every single contribution? What if you lose your laptop somewhere in the process? Don’t take these chances when you can have your work on the cloud with version control and can sync it with any of your devices.</li>
<li><strong>Every work is work in progress</strong><br />
Share it from the beginning. Our sales team at <a href="http://www.create.pt/en/">Create IT </a>deals with many PowerPoint files that are shared between people in different locations. We found out that during the writing of proposals our team members never shared a document before they finished it, so when they finally were ready to ask for feedback it often was too late ask for asking or too late for replying. To overcome this problem, we decided to adopt a shared from the beginning policy, meaning that we create our documents directly in a shared workspace right from the beginning. Thus, we are always open to feedback and ready to give it, always aware that the document is in progress until someone says that it is finished. Don’t wait for the wright moment to share your work. Share it from the beginning.</li>
<li><strong>Finally, say yes and build on it</strong><br />
Don’t be a show stopper! Be a builder. Receive what the team proposes to you as a challenge to build upon. You might be comfortable with whatever you’re doing and don’t see the need for the change that your colleague is proposing. Ask yourself “Is there something that I do today that I could improve with this change? Is there something that I would not be able to do?” Share it.</li>
</ol>
<p>As Bob Dylan once wrote “There’s nothing so stable as change” as soon as we integrate this reality in our workplace we will be more ready face changes and adapt to them and as consequence we will improve our work-life balance and happiness.</p>
<p>The post <a href="https://blogit.create.pt/antoniobrisson/2016/11/10/modern-workplaces-are-here-to-stay-and-its-up-to-you-to-make-your-life-better-with-them/">Modern Workplaces are here to stay and it’s up to you to make your life better with them.</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blogit.create.pt/antoniobrisson/2016/11/10/modern-workplaces-are-here-to-stay-and-its-up-to-you-to-make-your-life-better-with-them/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
			</item>
	</channel>
</rss>
