Installing the Windows 10 SDK and Inpect.exe

search for inspect.exe from this folder, we see there are several folders which contain this file: If you don’t have it, open the Visual Studio Installer: For any VS version,…

Cloning a GitHub Repository using Command Line

…to the directory you want to clone the repo, and type in: git clone <paste your clipboard here> This will download the repo: And the files will be downloaded:  …

Dowload Dynamics 365 Entity Record Photo in C#

…BinaryWriter(new FileStream(file, FileMode.Append, FileAccess.Write)); fs.Write(image); fs.Close(); Console.WriteLine(file); } Console.ReadLine(); } catch (Exception ex) { // Handle exception } } } } Run the code. You will see the files downloaded…

Showing Agents Unread Messages in Omnichannel

In this post, we will look at how we can configure in Omnichannel for Customer Service the ability to show unread messages for Omnichannel Agents. This is very useful if…

Creating Themes with the Power Apps Creator Kit

…There are 3 apps – canvas template, canvas kit reference app, and fluent theme designer: Let’s open the Fluent Theme Designer. This allows us to create a theme, with tools…

Missing Code Components Tab in Power Apps

components tab should look like this: And if you wanted to add more code components, you should be able to click on Get more components and see the Code tab:…