Posts

Showing posts with the label Office 365

Review of Microsoft 365 Learning Pathways

Image
I've recently been doing a series of reviews of different tools available to support organisations in their adoption efforts.  In this post I will review Microsoft 365 Learning Pathways. This is one I have been planning to write up for a while.  I've been able to use the solution a handful of times this year and have seen the benefit of provisioning it.  What is Microsoft 365 Learning Pathways? Microsoft 365 Learning Pathways, is a customisable SharePoint Online communication site that is provisioned into your tenant with ready made resources for supporting end users using Microsoft 365. Once deployed you can customise the settings and create training playlists for your users.   There is also the ability to integrate with Teams via the app bar. If you're looking to support your adoption efforts and provide your users with access to information and help on Microsoft 365 products, whether it's Excel or Microsoft Teams the site has videos and guides to support....

Review of the Microsoft Teams Adoption Bot

Image
We've recently been looking at the different tools already available to aid organisations in their adoption journey. In my last post I reviewed the Champion Management Platform .  In this post I review another adoption tool called the Microsoft Teams Adoption Bot.  What is the Adoption bot? It is a Chatbot built using Power Virtual Agents and is a Microsoft open source tool available on GitHub. The bot can be deployed to your Teams environment and made accessible to the whole organisation to support adoption of the Microsoft tools. Once deployed users can add it to their app bar in teams. From here anytime the user has a question relating to the Microsoft 365 tools, then can ask the chatbot.  The chatbot will then provide an answer or using Power Automate post feedback or questions to a designated Teams channel. For a more detailed explanation and instructions on how to deploy take a look at the GitHub page here . There is also a short YouTube video by Mat...

Review of the Champion Management Platform App

Image
Whether you call them Champions, Super Users, Power Users or Influencers they are a core tool in supporting adoption efforts across an organisation while you role out new applications and tools.  I've worked with many organisation's to help implement a Champions network, a group of upskilled individuals that can support their colleagues and evangalise Microsoft 365 within their teams or departments. Tracking who the champions are for your business is important to ensure you have the coverage required, so I often support organisation's by building some form of tracking list that can be used to track who the Champions are and also double as a resource to support the end users.  This can be a time consuming task but Microsoft have recently announced  The Microsoft 365 Champion Management Platform . This new solution is an application you can add to your tenant and add to a tab in a Microsoft Teams channel.  In this post I will take you through some of the features ...

Creating a new site theme in SharePoint Online

Image
SharePoint Online Site Themes: SharePoint comes with a number ready made out of the box themes that you can apply to your SharePoint site(s). The themes can transform your site to give it a more unique feel. You can change the theme by navigating to the Settings (Cog) > Change the look > Theme . Once there you will be presented with the available themes. More recently you are able to customise the out of the box themes. At the time of Although this allows you to customise existing themes you may not find the colours that match your branding.  Often organisations want to use there own brand colours to personalise their SharePoint sites. With a few steps it is possible to create and import your own theme(s) in to your SharePoint environment. You can then utilise the theme(s) by adding them manually to sites or in your site designs. Benefits of having a custom site theme You or other site owners can switch to the company branded theme once added to your tenant It will be availab...

Update the request access email in multiple SharePoint Online sites

Image
Background Recently I had a request to update 50 plus SharePoint Online sites with a group email address so that this mailbox received all site access requests.  This group was being used as the owners of the SharePoint sites and as it was a group they had not been receiving the access requests. As a result we decided we wanted to forward these requests to the group mailbox.   Using the resources from Microsoft Docs I was able to set the request access email in a SharePoint site, using PowerShell.   Using the guidance command provided in Microsoft Docs I was able to create a PowerShell script and added a step to repeat this on multiple sites by importing a spreadsheet (CSV) with the site addresses. If had done this manually it would have taken around a day to go to each site and set. Using the script in a matter of minutes the job was done and I was able to focus on other tasks.  I did a few random spot checks to ensure it worked.  What you need to get...

SharePoint Online creating an organisation news site

Image
A SharePoint admin can now make a SharePoint Online site an organisation news site . This gives news post created in the SharePoint site a visual marker and makes them appear on the SharePoint start page (SharePoint App) for users across the business.  At the time of writing, this is achieved via a simple PowerShell script. Below is an example of the script I have been using. PowerShell Script # Sets the specified site as an Organisational News site. Update the URLs below. $adminSiteUrl = " https://XXXXX-admin.sharepoint.com " $newsSiteUrl = " https://XXXXX.sharepoint.com/sites/SITENAME " # Connection to tenant Connect-SPOService $adminSiteUrl -Credential $cred # Set specified site as organisational news site Set-SPOOrgNewsSite -OrgNewsSiteUrl $newsSiteUrl # Confirms process completed and specified site has been set as organisational news site Write-Host "Organisational News site has been set" -ForegroundColor Green What do you need to get started? Ensure ...

SharePoint Online Home Sites

A new feature released by Microsoft in June 2020 allows a SharePoint Admin to turn the company's main internal landing site as a new home site. This is achieved at the time of writing  by running a simple PowerShell script against the desired site. Once done your SharePoint Communication site will be at the heart of your organisation and putting it one click away for users. I've had the opportunity to use this new feature a couple of times now and these are some notes to help you if you want to replicate in your environment or just understand what the home site is all about. While I've been getting used to it, I've found the Microsoft information useful in guiding me. What you need? The following PowerShell modules are required to run the scripts: Microsoft.Online.SharePoint,PowerShell SharePointPnPPowerShellOnline Users repeating these steps require SharePoint Admin rights to successfully run the commands on a site. Resources Official Microsoft guidance on setting up t...

Creating a SharePoint Online Organisation Asset Library

Image
Creating a shared library for branded images or templates has been around for many years but getting the image or file into your SharePoint site has been a challenge at times. You would find owners and editors downloading a copy from the source and then uploading to their SharePoint site(s). This then created issues where images or files change and sites are no longer using the "one source of truth". The workaround was to use a link which could come with its own issues. Microsoft have recently released the ability to create a organisation asset library that owners and editors from across the business can access.  At the time of writing this is achieved by running a PowerShell script to set a library as an organisation wide asset library. PowerShell script Below is the simple script I've been using to set an organisation asset library. Replace the red text with your URLs to run the script. # Amend the below addresses $adminSiteUrl = " https://XXXXX-admin.sharepoint.co...