Author: thatsolutionsguy

Create a Power Apps Canvas App from a drawing with the help of OCR !!!

Developing an app is a breeze! Get started by envisioning your app's design through an expressive sketch. Take a look at the following sample illustration I've created. Ensure that your drawing is neat and legible so that the OCR (Optical Character Recognition) can accurately capture your intended image. Log in to Power Apps maker portal … Continue reading Create a Power Apps Canvas App from a drawing with the help of OCR !!!

How to fix :ps1 is not digitally signed. You cannot run this script on the current system.

If you ever experienced this I'm sure you know how irritating that may be. To fix it you have to run the command below to run Set-ExecutionPolicy and change the Execution Policy setting. Set-ExecutionPolicy -Scope Process -ExecutionPolicy Bypass The command Set-ExecutionPolicy -Scope Process -ExecutionPolicy Bypass sets the execution policy for the current PowerShell process to … Continue reading How to fix :ps1 is not digitally signed. You cannot run this script on the current system.

PL-400 Module 7 Azure Function Source Code.

using System; using Microsoft.Azure.WebJobs; using Microsoft.Azure.WebJobs.Host; using Microsoft.Extensions.Logging; using System.Threading.Tasks; using Xrm.Tools.WebAPI; using Microsoft.IdentityModel.Clients.ActiveDirectory; using Xrm.Tools.WebAPI.Results; using System.Dynamic; using Xrm.Tools.WebAPI.Requests; using System.Collections.Generic; namespace InspectionManagementApp { public static class InspectionRouter { [FunctionName("InspectionRouter")] public static void Run([TimerTrigger("0 0 0 * * *")] TimerInfo myTimer, ILogger log) { log.LogInformation($"C# Timer trigger function executed at: {DateTime.Now}"); CRMWebAPI api = … Continue reading PL-400 Module 7 Azure Function Source Code.