Category Archives: Azure and Office 365
Integrate Dynamics 365 for Customer Engagement Apps with Microsoft Teams
Before getting into details, firstly I would like to talk about Microsoft Teams. If you’re familiar with MS Teams, you know that it is chat and collaboration platform – a place to manage all your conversations, files and important tools in one team workspace. You can access SharePoint, Power Bi and now Dynamics 365 for Customer Engagement right from the Teams app and can collaborate. Microsoft Teams comes with the Office 365 subscription and is present with both web and desktop version as well. Dynamics 365 page can be added as a tab on Microsoft Teams channel they are working on to allow easy access to the customer information. The tab added on MS Teams channel is a fully functional page that means you can edit any records or navigate to related records without leaving the app. You can also use Dynamics 365 Bot for quick updates on records. Before getting started, enable Microsoft Teams integration feature from Dynamics 365 Customer Engagement: Sign in as a System Administrator. Go to Settings > Administration > System Settings > General. Enable Microsoft Teams integration. Let’s get started: I hope you already have Microsoft Teams App installed on your system. Go to the Teams channel where you want to add a Dynamics 365 page as a tab, add a tab by clicking on the + button. Search for Dynamics 365 App. After clicking on the Dynamics 365 App, you will be asked to select the Organization and the App module. Select the same from the dropdown accordingly and click on SELECT. Search for the entity you want to connect the to this channel and click on SAVE. It is done, you can now edit the record details or navigate to the related records in Dynamics 365 from MS Teams app. Once you complete the above steps, you will see a notification of record is successfully connected (see above image). Any changes done here will be synchronized with the Dynamics 365 for Customer Engagement apps. Once the integration is done, Teams also provides the feature to associate files. Any related documents uploaded in the Files tab in Microsoft Teams will also appear in D365 Customer Engagement apps under Documents for the record. Similarly, any documents added in D365 for Customer Engagement apps will appear in the Files tab on Microsoft Teams.Below images is of Microsoft Teams Files tab: Below image is of D365 for CE app > Documents: In the below images, you can see various locations for documents, this is because I have also enabled SharePoint integration. You can select the specific location or All File to view each file related to this record. As you can see in the below images the files uploaded on Microsoft Teams appears over here. If you want open a record in Dynamics 365 for CE and you are in Microsoft Teams currently, don’t bother to enter the URL. Click the Go to Website icon. Setting up the Dynamics 365 Bot: You can set up the bot feature to interact with Dynamics 365 Apps. You can also use Dynamics 365 bot to look up and make a quick update on any record. For setting up please follow the below steps. You can go to the Chat on the left side of the Teams app, and then select Dynamics 365 for Customer Engagement apps. In the welcome message from Bot, it provides some abilities of the bot. You will need to click on Sign in. Select Org and then Click on NEXT. Enter credential and Sign in. The Dynamics 365 bot setup is complete and some option is already loaded to get started.
Share Story :
How to enable Document ID in SharePoint Online
Introduction: As you know that SharePoint Online can be used as a document management platform and with the help of Document Id’s you can effectively manage your documents by providing an easy way to track irrespective of their location. Document Id’s are automatically assigned to the documents uploaded on document or record management platform. Before using the Document ID features for our document management system, you must enable it for each site collection in which your documents are located. You must be a Site Collection Administrator for enabling this feature in SPO. Activate, enable and configure Document ID’s: Go to the top-level Site collection > Site Settings. Under Site Collection Administration, click Site collection features. Next to Document ID, click Activate. Activate icon will appear once the feature is activated. Go back to the Site Settings page and under Site Collection Administration, select Document ID settings. You will have to assign a prefix for the Document ID’s and the prefix should be between 4 to 12 characters with no special character. If you want all the documents within the Site Collection, to be assigned with a Document ID with the specified prefix, check the box “Reset all Document ID’s” (See above image). Once this feature is enabled, any new document created or uploaded to any document library in this particular Site Collection received a unique Document ID. Document Id’s can be viewed from the document properties, these are the hyperlinks that you can copy and use it to open a document in Office. Moving and Copying a file with a Document ID: When you move a file in SharePoint Online, Document ID will move with the file. It basically depends on whether the service is enabled or not at the destination site. So, if the service is not enabled at that site then the document will no longer have the Document ID. When a copy of the document is made, a new Document ID is created for the copy and obviously, the service needs to be enabled at the site where you are copying the file.
Share Story :
Count Number of files in SharePoint folder
Introduction: This blog explains how to Count No of files in SharePoint folder using MS Flow. Steps to be followed: Select “Send an HTTP request to SharePoint” from Actions. Enter below details:Site Address: Select the site address from the list. Method: GETUri: _api/web/GetFolderByServerRelativeUrl(‘LibraryTitle/foldername’)/ItemCountExample: _api/web/GetFolderByServerRelativeUrl(‘account/CFS Organization_584732FD1267E911A997000D3AA2C8D1‘)/ItemCount-> It will count the no of files in “CFS Organization_584732FD1267E911A997000D3AA2C8D1” folder. Output of above request: Accessing value of ItemCount: Add Compose Action. Add below expression in Inputs: body(‘Send_an_HTTP_request_to_SharePoint_’)[‘d’][‘ItemCount’]
Share Story :
Microsoft Teams PowerShell Module Overview
Introduction: In this article, we are going to take a quick overview of the Microsoft Teams PowerShell module and will cover a few things which we can perform in Microsoft Teams with the help of PowerShell. There are two different PowerShell modules to manage Microsoft Teams. 1. Microsoft Teams PowerShell Module – You can get this module from here: https://www.powershellgallery.com/packages/MicrosoftTeams/1.0.0 2. Skype for Business PowerShell Module – You can download it from here: https://www.microsoft.com/en-us/download/details.aspx?id=39366 Teams PowerShell module contain all the cmdlets needed to create and manage teams whereas Skype for Business module contains the cmdlets to manage policies, configuration, and other tools. Connecting to Microsoft Teams PowerShell: 1. Install the Microsoft Teams PowerShell Module. Open Windows PowerShell and run the command “Install-Module -Name MicrosoftTeams” and then enter Y. Module was already installed on my system, that’s why I got the messages highlighted in the above image. The version was old, so I re-entered the command and added the -Force parameter “Install-Module -Name MicrosoftTeams -Force” 2. Connect with Microsoft Teams. Run command “Connect-MicrosoftTeams” and enter the credentials. After login, you will be able to see your tenant details. 3. After the PowerShell Module relates to your Microsoft Teams, you can use the cmdlets for creating and managing teams. For e.g, To get all your teams list, run command “Get-Team” For creating a new team, run command “New-Team” For managing Team users, run command “Add-TeamUser”. You will be asked to provide GroupId. After providing the GroupId, it will ask to provide the user, which needs to be added to the team. 4. Similarly, you can remove the user from a team, create a new channel or remove any team channel or else remove any group, etc. All these cmdlets can be run as end users, but it will only work for the teams you own, or you are a member of that team. As a global admin, you will be able to act on all the teams. Managing MS Teams policies via PowerShell: 1. Download and install Skype for Business PowerShell Module. 2. Connect with Skype for Business PowerShell Module. Open Windows PowerShell and run the following commands: “Import-Module SkypeOnlineConnector” “$userCredential = Get-Credential” “$sfbSession = New-CsOnlineSession -Credential $userCredential” “Import-PSSession $sfbSession” Now you are connected to Skype for Business PowerShell Module. 3. There are basically 5 commands to manage the policies. GET – Get the details of the policy. NEW – Create new policies. SET – Lets you set particular values on a given policy. REMOVE – Delete the customs policy. GRANT – Assign policy to particular user.For e.g, you want to get the details of all the meeting policy, run command “Get-CsTeamsMeetingPolicy” You will be able to get the details of the all the meeting policy whether it has been created by Microsoft or it is a custom policy that will be shown. Similarly, for Messaging policy run command “Get-CsTeamsMessagingPolicy” Managing configurations via PowerShell: Connect to Skype for Business PowerShell Module. You have seen above how to connect to Skype for Business PS Module. Run command “Get-CsTeamsClientConfiguration”. This is basically your Teams settings in the admin center. Conclusion: Administrators can manage a good set of tools in Microsoft Teams through Microsoft Teams admin center and also through PowerShell. In this article, we have seen how easily we can connect through PowerShell and can manage things.
Share Story :
Facing issues with Microsoft Outlook? Use Microsoft Support & Recovery Assistant
Many times you find issues like one of your users are unable to set up their Office 365 Email account in Microsoft Outlook or Outlook suddenly stopped working or it is taking too much time to setup account after the credentials are entered. What will be the steps you will be performing at that time to resolve that issue? The best and very simple solution, in this case, would be to run Microsoft Support and Recovery Assistant. I was facing one similar issue one day. Let me go through the steps below which I performed and the issue what I found and how easy it became to resolve the issue. Before I proceed, let me provide you some info on SARA tool and how to install. Microsoft Support and Recovery Assistant work by running tests to figure out what’s wrong. It can fix many problems or can tell you how to fix them. SARA can fix several issues such as Office setup, Outlook (for MAC as well), Exchange Online, OneDrive for Business, etc. Installing SARA: Go to Outlook Support Center, click Download now. Click RUN when you are prompted on your system and then click Install. SARA will get downloaded. Click on I Agree after you have read the service agreement. And now you are ready to use the tool. How I resolved the Outlook issue for one of my users? Open SARA application or if you had just installed select Outlook and then click NEXT. You will be asked to confirm that you are on the affected machine, select Yes and click NEXT. You will be asked for the user credentials, enter the Office 365 account credentials and then click NEXT. After the validation process, the scan begins automatically. Below is the screenshot my Outlook scan results on the affected system. You have seen how I got the issues found with the help of SARA. So, in this case, the issue was that the “Use a proxy server for your LAN” option was checked on this system and I fixed that. After doing the same my issues got resolved. What if you are unable to understand the issues after scanning? SARA also provides an option to view the detailed report of the issue and if you are unable to understand the issue, you can always raise a support ticket with Microsoft. SARA also provide you with the feature of sharing your scan results to Microsoft. So, if you are working with a Microsoft support engineer, this option is very helpful. What if I am using other email system and not Office 365 with Microsoft Outlook App? Sara also provides support to accounts who don’t have Exchange Online, instead, they are using some other email system with Microsoft Outlook app. You will be able to authenticate and start the scanning for your Outlook app and can view the issues or detailed report. The only difference is, you won’t be getting the option to share your data with Microsoft instead you can share the logs with the person who is responsible for your Outlook issues, for example, your helpdesk person.
Share Story :
Teams or Group Expiration Policy in Office 365
Introduction: In Microsoft Teams we create several teams, managing teams and channels is also very important so that you can work in a compliant way. When you create a team a SharePoint site and an Office 365 Group is also created. With the increased use of O365 Groups, admins and users must have some way to clean up unwanted or unused groups. Here comes the need of setting up Team or Group Expiration Policy from Azure Active Directory and as you know Teams is based on Office 365 Groups, it is influenced by Group Expiration Policy. In this article, we will see how we can effectively manage teams or groups with the help of Group Expiration Policy. Let’s get started: 1. Go to Microsoft 365 Admin Center > Azure Active Directory. 2. In Active AD, go to Groups > Expiration Policy. 3. You can then set an expiration policy for a group by providing Group Lifetime. 4. You can set a default group expiration as 180 or 365 days else you also select custom and enter the number of days as per your requirements, but it should be more than 30 days. 5. When the expiration policy is in place, once a group ages to 30 days before their lifecycle period lapses, group owners receive notifications for renewal (3 notifications are sent on 30, 15 and 0 days respectively). If it is renewed the lifecycle extends for a defined period and if not renewed O365 soft-deletes the group when it expires. If there are no owners of that group, you can provide an email Id of someone who will be receiving the notifications. Note – Owners can recover the soft-deleted groups during the next 30 days. 6. Select the groups and save the policy by hitting the Save button. FAQ’s:- Is Group Expiration Policy available with a free or basic subscription of Azure AD? Answer – Group Expiration Policy is a premium feature and is only available with Azure AD Premium subscriptions. What happens if a Team or Group owner fails to check the expiry notifications? Answer – Teams also shows the expiry information on Teams settings. Open the team for which you are the owner and select manage team and then go to settings. At the bottom, you can see Team Expiry option. In addition, If O365 soft-deletes the team or group, owners have 30 days to recover the group and when a team is expiring, a warning triangle is displayed alongside the team name which is only visible to team owners. Conclusion: In this way, you can effectively manage your team or groups. The policy helps to remove inactive groups from the system and make things cleaner.
Share Story :
Microsoft Teams ‘Premium’ and ‘Freemium’
Introduction: Since the release of Microsoft Teams on March 2017 which was designed for business for all sizes, it is now being used by almost 500,000 organizations worldwide. Microsoft Teams is a big hit in the messaging app market after having such huge competitors like Slack, Facebook, Google, etc. Microsoft released its free version in July 2018 which is designed for small businesses or groups of people within a company who doesn’t have commercial Office 365 subscriptions or a couple of people working together. In this article, we are going to discuss the feature comparison between MS Teams ‘Premium’ and ‘Freemium’. I have written several articles on Microsoft Teams which comes with Office 365 subscriptions (Refer blogs on https://www.cloudfronts.in/category/azure-office365/) but asked by many users to provide some info on Microsoft Teams free. Sign Up for MS Teams – Any person with corporate or consumer email address can sign up for Teams. People who have commercial O365 subscription will already have access to MS Teams and those who don’t have the commercial subscription can sign up for the Microsoft Teams Freemium from this link – https://products.office.com/en-us/microsoft-teams/free Maximum no. of users – Free Teams brings up the features for up to 300 people. This number is similar for the commercial subscription as well, excluding Enterprise plans for which the max no. if users are unlimited. Online Apps in MS Teams – Microsoft Word, Excel, PowerPoint and OneNote are available online with a free version of Teams. With Office 365 commercial subscriptions the desktop versions of apps are available for Office 365 Business Premium and Enterprise plans (excluding E1). Like the premium MS Teams, the free version of Teams can also be integrated with more than 140 different apps. Note – Office 365 services like SharePoint Online, OneDrive for Business, and other Office 365 services will not be available with free MS Teams as it doesn’t have Office 365 subscription. Guest Access – This is a very awesome feature introduced by Microsoft in Teams with the help of which you can collaborate with external contacts, clients or with partners. Guest access is available with MS Teams free version as well. We can invite users with corporate or consumer email address and the users with commercial Office 365 subscriptions using Teams as well (see below image for sending an invite from MS Teams free). Audio & Video calls, Screen sharing and chat – Audio, video calling, screen sharing, and one to one chat are some of the key features any communication and collaboration platform. So, of course, these features are available with Microsoft Teams free version as well otherwise what would be the use of the free version. Scheduling meeting and Audio conferencing – Feature of Scheduling meetings, Audio conferencing and then depending upon your SKU, things link phone number calling and dial-in conferencing is not available in Microsoft Teams free version which we get with the paid version of MS Teams. Security and Compliance – Paid version gives you a full set of powerful IT capabilities, compliance and security controls and developer options to manage and scale Teams all as part of Office 365. Plus, you also get support and guaranteed uptime which you don’t get in free MS Teams version. Of course, security features such as Data Encryption and region-based data residency is available with free Teams, but we don’t have features like MFA, Auditing, reporting, etc which are there with a paid subscription. Custom status message – Presence status we can set in free MS Teams version which is awesome, but we don’t have an option to set custom status message compare to that we have in paid Teams. Storage – With free MS Teams you get 2 GB of storage per user and 10 GB of team storage (Shared storage) whereas with paid Teams you get 1 TB per user. Conclusion: Microsoft Teams Freemium is an awesome way for the people to start using Teams whether they are a couple of co-workers, small business or a group of people working together. It is easy to use and has all the major functionalities a messaging and collaboration app should have but if you want all the features with discussed above you can of course upgrade to the paid version and have a commercial Office 365 subscription. Hope this article helps you to understand the differences between Microsoft Teams ‘Premium’ and ‘Freemium’.
Share Story :
Integrating Site24x7 into Microsoft Teams
Introduction: Microsoft Teams is a cloud-based chat and collaboration platform, designed to simplify group work. It is customizable in many ways your teams work today. Whereas Site 24×7 is an integrated solution for cloud monitoring. It is a platform designed with full-stack monitoring and analysis tools to enhance user experience. Site24x7 users can integrate with Microsoft Teams to receive critical status alerts and RCA from their Site24x7 account as chat messages in selected Microsoft Teams Channel. In this article, I am going to show you how we at CloudFronts benefitting with this awesome integration. We are using Site24x7 for monitoring our client’s server and our own ISP services. With the help of this integration, I don’t have to go to Site24x7 each time for checking the status and everything is being done from Teams only. One important benefits of this integration are that we don’t have to add other responsible members in Site24x7 account instead we can add them directly to a team which I have created in Microsoft Teams for Site24x7. You can receive chat messages for the following Site 24×7 events: Monitor status alerts Incident Root Cause Analysis (RCA) To Start this Feature Integration, login to Site24x7 portal account before accessing your Microsoft Teams account via the login link provided in your Site24x7 integration form. Login to Site24x7 Portal Dashboard > Admin > Third Party Integration. Click on Add Third Party Integration and fill up the required details (see below image). Integration Name, Message Title, Integration level After you are done with the process, Microsoft Teams integration will be listed in the Third-Party Integration dashboard. You can set up multiple integrations. Adding Site 24×7 connector in Microsoft Teams: Navigate to the Teams tab and select the team and channel which you’re looking to integrate with Site24x7. click on the three dots and select Connectors from the dropdown as shown in below image. A new window will pop up. Search for Site24x7 and click the Configure button after it shows up. You’ll be navigated to a new window, click on Visit site to install (see below image). After that, you will be automatically redirected to the Microsoft Teams Integration form in Site24x7’s web client. Adding a Site 24×7 dashboard in Microsoft Teams: Log in to your Microsoft Teams. Open Teams channel and click the ‘+’ icon on the top layer of your channel window to add a tab. In the add a tab windows, search for Site 24×7 and click the icon. You will get a pop-up to connect to Site 24×7. Log in using your Site24x7 credentials or use your Office365 credential. After login, you can see your Site24x7 custom dashboard. Now you will receive and monitor all alerts on your Site24x7 MS Teams channel. If you want, see full report about monitor status you can click on “View Online Reports” You can also see Real-time alert, Memory/CPU utilization, Availability Chart, Monitor Status, Troubleshooting Status etc. (see below image) This is how you can integrate Site 24×7 into Microsoft Teams. Now we will see how to monitor the alerts through MS Teams chatbot. Setup Site24x7 bot for Microsoft Teams: Site24x7 Bot is an automated program based on an advanced AI-engine that gives a quick reply and share updates and notifications about your monitor’s status, availability, performance, outages, SLAs, RCAs, and alarms within your Microsoft Teams channels or private chat. You can interact with bots in private chats and channels within a team. Go to the Microsoft Teams app store and search for the Site24x7 app. In the pop-up window, pick the Team where you wish to install the Site24x7 Bot and click install. After the installation is done you will be able to Open the chatbot (see below image). From your personal chat window, you will be able to communicate with the Bot. After the successful authentication, you can initiate conversation with the Bot. For example, if you want to know the status of all your monitors, send a message What is the status of all monitors and you will be getting a revert (see below image). One more example, type – Availability Summary for Monitor Name. Bot commands in Microsoft Teams (see below image). Conclusion: Hope this article will help you for integrating Site24x7 into Microsoft Teams. Similarly, there are many more applications which can integrate with Microsoft Teams to make your life much easier. Microsoft Teams is consistently growing since its release and giving us with some awesome features.
Share Story :
Manage and secure Dynamics 365 for Customer Engagement documents in SharePoint Online
Introduction: When you check your Dynamics 365 Customer Engagement Entity records, you might think where your documents related to specific entities will get stored. Here, SharePoint comes into the picture. The built-in integration between Dynamics 365 and SharePoint is mainly focused on managing & storing documents in SharePoint and ultimately then surfacing these in the context of a CRM record. Apart from storing the documents in SharePoint, you might also wonder that is your stuff secure on SharePoint Online. In this article, we are going to see how you can store the documents on SharePoint Online and how we can secure those documents through SharePoint Online security features. For using the document management functionality, you need to enable the server-based SharePoint integration on a Site Collection in SharePoint Online. Note – Installing Microsoft Dynamics 365 List Component was used for SharePoint On-Premise earlier versions and is not required for SharePoint Online and later versions of SharePoint on-premises. IT Considerations: No additional software is required to install on SharePoint You need to have System Administrator Security role in Microsoft Dynamics 365. Make sure that the Dynamics 365 Customer Engagement and SharePoint Online in under the same Office 365 tenant. Steps for enabling server-based SharePoint Integration: Login to Dynamics 365 Customer Engagement services > Settings > Document Management. Under Document Management, go to Enable Server-Based SharePoint Integration. Check out the changes (in the below image) which you will notice if you have used the previous SharePoint integration and click on Select between Online & On-Premises depending upon the SharePoint infrastructure you have and click NEXT (check below image). Now you must enter the URL of your SharePoint site where you want your Dynamics 365 entity records documents to be stored. Here, I have entered the URL of my root site collection ‘https://o365talks.sharepoint.com’, you may want to have a different Site Collection for your D365 documents as per Organisation requirements. For that, you can create a new Site Collection, such as https://o365talks.sharepoint.com/sites/Dynamics365You can create Site Collection from the SharePoint Online admin center. Here it will show the site URL validation status. Click on NEXT after the validation succeeds. So we are done with the SharePoint integration. Now we need to enable document management for specific Dynamics 365 Customer Engagement Entities. Enable SharePoint document management for specific Dynamics 365 for Customer Engagement apps entity records. Go to Settings > Document Management Settings. Select the entities (for eg, Accounts, Lead, Opportunities, Projects) for which you wanted to store the documents in SharePoint Online and click on NEXT. Check Based on Entity and select Account or Contact to create a folder structure based on a specific entity (Account or Contact), or else you click on NEXT without checking if you don’t want your folders to be automatically created based on the Account or Contact entity. Now you can see the SharePoint Online Document Library has been created as the status is Succeeded. Click FINISH. You can see in the below image Document Libraries has been created for the entities under the SharePoint site (https://o365talks.sharepoint.com). You can access the same by going to Site Contents. Keep your D365 Customer Engagement documents safe While having the integration done for document management in SharePoint Online, it is also important to secure these documents. For that, there are several features which you can use to keep your SharePoint Online documents secure. Using Permission Level: – Microsoft already provides a set of default permission levels which is very useful, but you can also create new permission levels in SharePoint Online. You can then create Groups for that Site Collection for e.g. https://o365talks.sharepoint.com, associated with the permission level. For e.g., you can create a permission level called Contribute (Not delete) which means the users associated with this permission level will not be able to delete anything. Note – Never modify or delete a default permission level. Retention policy from Office 365 Security & Compliance center: – Create a Retention Policy for all or chosen SharePoint Online sites, so that if accidentally or by purpose if the documents are deleted from SharePoint Online it can be recovered. Restricting access for certain records: – You might not want that all the users should have access to all D365 for Customer Engagement records. You can basically customize permission for that SharePoint Document library to achieve the same. By default, all sites, list, libraries within a site collection inherit permissions from the parent site break the inheritance from library settings and then add only those users whom you want to provide access. Alerts: – Alerts can be set in two ways for SharePoint Online. a. Setting up alerts from SharePoint Online – You can set alerts for a specific document library within SharePoint Online, so if there is any modification or deletion you can get email or SMS alert.b. Alerts from the Security & Compliance center in Office 365: – Here we can set alerts whenever there is any activity in SharePoint Online defined by you. We can only get Email notifications in this case and not an SMS, unlike SharePoint Alerts. Audit in Office 365 Security & Compliance center: – With the help of Audit you can search for Users and Admin activities. Before you can start searching for the audit logs it needs to be turned ON. To turn it ON, just click Start recording user and admin activity on the Audit log search page in the Security & Compliance center. Here, we can get the audit logs for the activities defined by you. Access Control in SharePoint Online admin center: – With the help of access control, you can restrict or allow all the users to access SharePoint Online contents on basis of network location, which can do in just a few clicks. This helps to prevent access from untrusted locations. Conditional Access using Azure Active Directory: – You can either restrict access or enforce Multi-Factor Authentication for specific users or group of users whenever SharePoint Online is accessed from an … Continue reading Manage and secure Dynamics 365 for Customer Engagement documents in SharePoint Online
Share Story :
Now set custom status message in Microsoft Teams
Setting up custom status messages in Microsoft Teams was awaited for long but it is finally here. As Microsoft released Teams as Skype for Business replacement it was also right to say that Microsoft Teams must have the useful features of Skype for Business. Since the feature of setting up custom status messages was available in Skype for Business, it was long awaited in Microsoft Teams but it is here finally. Now, Teams users can set their own status messages to inform colleagues about their status for the next few hours, days or on a continuing basis. This status is different from the user’s presence status (Available, Away, Be right back, etc). In this status message you, an add up to 280 characters and can provide more detailed information. To set the status, hover over your profile picture at the top right-hand corner and select Set status message. You can mention your status message and then you can select till when you want to display the status messages to your colleagues. Guest users can also set the status message in Microsoft Teams. For viewing the status message on Teams, you can view the users’ card. You can also view each users’ card from the Manage team option of a Team so that you can see the whole members and then hover over each member. In the below image, you can see I have set my status message as ‘break’ and when one of the user viewed my people card, status is reflected.