Skip to main content

Posts

Excluding Teams from Office Deployment

Recently I received a request from one of my readers on how to tailor Office deployments and to be specific, how to exclude Teams from deployment configuration file. Let’s navigate to https://config.office.com/ from the browser. This is the place from where administrators can manage and deploy office products and subscriptions. You can see that there are two options on the page:  Create a new configuration  Import your configuration Here I am going to create a new configuration, but if you have existing configuration, you can import that too and update it based on your business needs. Once you have entered the Deployment Settings page, there are many options which need to be configured. Architecture Selection Select the architecture for which we are creating a deployment: Office Suite Selection Next is to select the Office Suite: Version Selection Next is to select the version which we want to deploy:

Acessing Azure DevOps By Using PAT

You may have come across a requirement, wherein you needed to update  Azure DevOps  objects programmatically and it is obvious that there must be some  authentication  mechanism which has to be in place. Now, there are many methods one can use to authenticate, but for this post, I’ve specifically chosen personal access token.  PAT , which is short for  Personal Access Token  is a way to provide an alternate password to authenticate to  Azure DevOps . To understand more about how to generate this token and how to utilize this, let’s follow certain steps and make a successful REST API call. You can checkout more about it on my article at Csharpcorner website.

Made debut as an International Speaker

Today, I've something good to share. Recently I was given an opportunity to talk in one of the technical conference named https://www.2020twenty.net/lightup/ , which was a fund raising event to support UNICEF in order to take a stand against COVID19 and it was organized by C# Corner and The Tech Platform.  I spoke on a topic ' Azure Bot Services Utilizing LUIS Capabilities ' which was a very wonderful experience. Hope recording of the same will be available soon.

Generating Client Code from OData Metadata

Sometimes when we need to call APIs, we are just given the information about the entities in the form of OData metadata . Now when we are not aware about possible methods and their parameters which are exposed for use, it becomes very cumbersome and time consuming to call even a single method. Till some extent, we can still manage our life for Get methods as they are easy to guess using entity names, but when it comes to PUT/POST/PATCH , things are not straight forward. And here comes the need to generate classes with given metadata. Let’s have a look, on how we can generate these client-side proxy classes. Install the required Visual Studio Extension I’m using Visual Studio 2019 but the equivalent features are available in other versions too. Navigate to Manage Extensions dialog and search for OData Connected Service as shown below and install it. Using this tool, one can easily generate classes for all the entities and complex types which are menti

Making a call to Retail Server APIs

This article will talk about how to make a call to Retail APIs (non anonymous )  and what all information is required to get the response. I started by generating the access token using username-password flow and obviously the client id as shown in below image: Then I tried to make a call to an API using Postman as shown below: And here is the 401 Unauthorized error ☹ and the reason is -  Microsoft_Dynamics_Commerce_Runtime_DeviceTokenNotPresen t After spending hours, I got to know that Retail APIs  can’t be called just by passing the access token. In order to make API call successful, there is one additional information ‘ devicetoken ’, which needs to be sent.  Now where to pass this information? Well, fortunately I was able to figure it out. This devicetoken  has to be passed as an header while making API call as shown below: Once device token is passed, I received the expected response from the API.  Hope I saved your hours

Providing Admin Consent to Azure Registered Application

It has been a while since I drafted anything. So, all these times, I was busy learning new things, which includes Dynamics 365, Graph API, MS Teams, some of the Azure services and much more.  Basically, this entire tenure was full of ups and downs where some things went very smooth and some things took many hours to get sorted. But now, I am back with so much on my plate and of course my next few posts would be majorly on troubleshooting part and how-tos. May be, there would be similar solutions which you may find on the internet, but I would still love to add it on my own blogger with my own findings for my own future references. With all this, let us get started with our first troubleshooting tip. Background The requirement was about adding a new Task in Planner , which is part of Office 365 . Now for any adding Task , we have to traverse through Groups , then Bucket and then inside any defined Bucket we can create a Task .  In order to perform all these, au

Jupyter error - No module named ‘selenium’

Recently I installed Anaconda to learn more about it and the first thing I was about to try was opening a web page automatically using Selenium. So, to perform this, I used Jupyter and tried to import Selenium webdriver. Till here, everything went well, but when I ran my code using Jupyter Notebook, I got an error: ‘ No module named ‘selenium ’. The strange thing is, I got an error, although I have got Selenium installed on my machine using pip with below command:  pip install selenium. Now what could be the reason? So, to analyze it further, I wrote the same Python code in Visual Studio and ran it. It worked perfectly alright. So, I just thought to give a try to check the version of Selenium and first I tried with pip as shown below: As the above message says, it is already installed and didn’t complain anything. So, next I thought to try with Anaconda command prompt as shown below:  Did you notice that rectangl