MS Teams – Continuously popup “Login Now”

If you changed your Office password or logged with multiple Office accounts in the system. You may face this.

Even though you hit on “Login Now”, it comes to same screen. No Options! You not allowing to sign in or not allowing you to do anything other than hitting on login.

You could try kill the app (in “task manager”) but still its same.

 

Until Microsoft finds proper way to handle this dead lock, you could try below solution

Right click on Microsoft teams task manager icon and hit on ‘Log out’ then login again. 


You good to go!

Configure Google Domains with Office 365 and Custom Azure Web App Domain

If you are setting up Office 365 with custom domain you will be asked to configure name server pointing to below in the domain admin page. In our case it will be Google domains registration page.

dns entries for o 365.PNG

If you altered name servers into Office 365 it wont help you to propagate DNS entries with Google domain management tool since you have handed over responsibilities to Microsoft Online DNS services.

⚡ Note – You required to enter DNS record in Office 365 but not in the google domain registration console.

You could achieve adding custom domain entries buy following path or finding domains in search in Office 365 admin portal.

☛ Home –> Setup –> Domains –> New Custom Record

adding custom domains

 It may take many minutes to propagate around the world based on the condition and you could check success of propagation with tool ViewDNS.

⚓ References

Azure Functions with SharePoint Online

Common trend we came and interesting figure we came up is moving towards Severless where we are not worry about infrastructure. “Azure Functions” is a compute offering which you allow to write custom logic with choice of C#, F# and JavaScript (as for May, 2017).

From the choices above I have chosen SharePoint CSOM (Client Side Object Model) to this sample but if you prefer JSOM or REST API with the requirement, you could go with those.

Lets checkout Azure Functions with SharePoint Online where both in same cloud group which call as SaaS (Software as a Service).

🛠 Step ♳ – Create an Azure Function

You could arrive there with simply following below reference which is common thing and described in every reference.

https://docs.microsoft.com/en-us/azure/azure-functions/functions-create-function-app-portal

🛠 Step ♴ – Adding SharePoint CSOM DLLs

To add SharePoint DLLs to Functions App environment, you required to arrive with Kudu environment.

 Function à Platform Features à Advanced Tools (Kudu)

Shortcut – You could arrive there with URL

https://<function name>.scm.azurewebsites.net/

After you arrived with Kudu portal, check for debug then PowerShell (Command prompt is also available but prefer PS). Navigate to bin folder which resides under following location under you function name and upload your SharePoint DLLs to the folder (i.e. Microsoft.SharePoint.Client.dll and Microsoft.SharePoint.Client.Runtime.dll)

☕ Learn more on Kudu – https://github.com/projectkudu/kudu

🛠 Step ♵ – Refer SharePoint references on the Function

After adding DLLs to the bin, you could arrive with function and start writing you logic within the run.csx.

You could refer added DLLs in the function as below in the top.

#r “Microsoft.SharePoint.Client.Runtime.dll”

#r “Microsoft.SharePoint.Client.dll”

🛠 Step ♶ – Imports references

This is typical step we are doing in any C# which is adding references.

using System;

using System.Security;

using System.Configuration;

using Microsoft.SharePoint.Client;

🛠 Step ♷ – Configuration Values in Azure Function

You will be required the user name, password, and site URL to your SharePoint, those could be done with the application settings as we were keep doing with the web.config files.

Navigate thorough below path and add your configurations where you will be references in function logic.

Click on Function à Platform Features à Application Settings à App settings à Add values as key/ value pairs

Above could be accessed as below in the code.

string userName = ConfigurationManager.AppSettings[“User”];

🛠 Step ♸ – Application Logic

You could write as your preference. In my sample on the gist which I have posted below is considered copying list items from one list to another. It’s really simple and you could able to expand the logic as you have done earlier with SharePoint CSOM.


#r "Microsoft.SharePoint.Client.Runtime.dll"
#r "Microsoft.SharePoint.Client.dll"
using System;
using System.Security;
using System.Configuration;
using Microsoft.SharePoint.Client;
public static void Run(TimerInfo myTimer, TraceWriter log)
{
string userName = ConfigurationManager.AppSettings["User"];
string password = ConfigurationManager.AppSettings["Pass"];
string spSite = ConfigurationManager.AppSettings["SharePointSiteUrl"];
const string listName = "List00";
const string listNameDestination = "List01";
log.Info($"Trigger function executed at: {DateTime.Now} with {userName} | {password} on {spSite}");
using (ClientContext ctx = new ClientContext(spSite))
{
// Authenticating to SPO
SecureString securePassword = new SecureString();
foreach (char c in password.ToCharArray())
securePassword.AppendChar(c);
ctx.Credentials = new SharePointOnlineCredentials(userName, securePassword);
// Getting all SPO list items
List myList = ctx.Web.Lists.GetByTitle(listName);
CamlQuery query = CamlQuery.CreateAllItemsQuery(100);
ListItemCollection collListItem = myList.GetItems(query);
ctx.Load(collListItem);
ctx.ExecuteQuery();
// Destination list item – create list items
List destinationList = ctx.Web.Lists.GetByTitle(listNameDestination);
ListItemCreationInformation itemCreateInfo;
foreach (ListItem oListItem in collListItem)
{
// Getting list item
string customColumnValue = Convert.ToString(oListItem["CustomColumn"]);
log.Info($" List Item retrieved from {listName} => {customColumnValue}");
// Writing values to destination list which are retrieved
if (!string.IsNullOrEmpty(customColumnValue)){
itemCreateInfo = new ListItemCreationInformation();
ListItem newItem = destinationList.AddItem(itemCreateInfo);
newItem["Title"] = customColumnValue;
newItem.Update();
log.Info($" Updating column Title with {listNameDestination} with {customColumnValue}");
ctx.ExecuteQuery();
}
}
}
}

view raw

run.csx

hosted with ❤ by GitHub

⌛ Motivations

You could use Azure Functions as Timer Jobs (which we had in SharePoint Server) with scheduling and web hooks and etc.

References – Azure Function Developer Guide

Enabling External Sharing | Multidomain Sharing in SharePoint Online

In SharePoint online environment most of the businesses facing issue with connecting with another business (B2B) or in technical terms connecting with another domain.

We have been using different methods with the Active Directly level which we known as “Federation”. But will see how we could share SharePoint site with multiple domains.

📓 Note : 

  • You must have either Microsoft account or organizational account to achieve this. 
  • Microsoft account must not be Live, Outlook or Hotmail, It could be Gmail, Yahoo or another. Then you should create a Microsoft account with your domain. Eg. “example@yahoo.com”.
  • Organizational account is account in another Office 365 tenant

How to share site with external domain user?

Firstly, you must enable External Sharing in the Office 365 admin center. This could be find easily with searching external sharing in the admin center.

ext 1

Second, Go site administration and select your SharePoint site and hit on “Share” on the ribbon. Make sure and best practice 🔖 to mention your external domain you sharing as below.

ext 2

Finally added user will be visible as below in the Office 365 admin center.

📌 Some useful resources :

Register your Bot with Bot Framework

Registration of custom bot with the Bot directory is a simple process which can achieved by following through the link Register new bot.

Even it is simple there are few tips you can find out and something new to notice which describes as below.

Bot Handle?

This will be the wording which will used to create bot end point with your bot application. If I use bot handle as “TechCentro” generated embeded URi will be “https://webchat.botframework.com/embed/TechCentro”. This could contain only alphanumeric characters and underscore only.

Messaging end point?

After you hosted your bot application you will exposed the URL of  messaging endpoint, or in simple terms it will be route URL to your bot.

If you go with bot framework “Bot Application” template, it will be URL of web app plus “/api/messages”.

Eg. https://botappapi.azurewebsites.net/api/messages

Note: You must need to configured HTTPS and HTTP wont help you to proceed in the process.

Microsoft App ID?

This will generate by the bot registration application for you. You just need to tap on “Create Microsoft App ID and Password” then you will be redirected to App ID and password generation site.

Generated password will important keep in backup in a secure place since you wont be able to get it in future after your bot is created.

Improved LOOK to Office365

Since this is quick update on the Microsoft Office team and no influence on the functionality aspect, thought of make post ultra summarized. Older Office365 started rolling out in December and will continue through early 2017. Quick view will be enhanced in the home page of yours login as below.

There is a change on your apps on the cloud but more or less this is a UX (user experience) side improvements which makes Office user happy.

You can create new documents and also view latest modified documents at a glance on the home page. Documents will be simply quick preview of your OneDrive.

Your start page as can be selected on your preference with tapping on the “Settings Gear” which appears on the top right corner.

References

https://blogs.office.com/2016/12/28/the-new-office-com-gets-first-major-update/