Provisioning Microsoft Omnichannel for Customer Service

In this post, we will go through the setup process for Omnichannel for Customer Service in a Dynamics 365 org. Head to the Power Platform Admin Center at https://admin.powerplatform.microsoft.com and…

About

…1996: Completed my Bachelor of Technology degree majoring in Information and Communication Systems 1997: Built my first social website described by LookSmart as “impressive” 1998: Built a packaged eCommerce shopping…

Hiding Form Header and Footer Through JavaScript in Dynamics 365 Power Apps

…3 parts, header command bar, header body, and header tab navigator: Let’s hide and show each one using JavaScript. Header Command Bar Hide: formContext.ui.headerSection.setCommandBarVisible(false); Show: formContext.ui.headerSection.setCommandBarVisible(true); Header Body Hide: formContext.ui.headerSection.setBodyVisible(false);…

Using Kudu API and PowerShell to Deploy Azure App Services

…with the URL we are adding api/zip/site/wwwroot/. The site/wwwroot is the location of what we will download: $username = “`$MyAppService-DEV” $password = “wa4ttpa5fl6lfnpc” $base64AuthInfo = [Convert]::ToBase64String([Text.Encoding]::ASCII.GetBytes((“{0}:{1}” -f $username, $password))) $userAgent…

Wrong User When Pushing To GitHub from Visual Studio Code

…thinks I am a different user, in this case, carldesouza – “e: Permission to carldesouzacom/my-linter-test.git denied to carldesouza. fatal: unable to access ‘https://github.com/carldesouzacom/my-linter-test/’: The requested URL returned error: 403”: In…