PowerShell – Get the list of all connectors used by each Power Apps application

The PowerShell script will list all connectors used in the Power Apps application in all environments user has access to. # Required Modules (installed as admin) #   Install-Module -Name Microsoft.PowerApps.Administration.PowerShell #   Install-Module -Name Microsoft.PowerApps.PowerShell -AllowClobber # $Delimiter = “,” # Get list of all Environments $Environments = Get-PowerAppEnvironment | Select-Object -Property EnvironmentName, DisplayName  write-host $Environments # Loop …

PowerShell – Get the list of all connectors used by each Power Apps application Read More »

Power Apps Save Combo Box with Office 365 Users to SharePoint List’s Person Data

This is a quick post showing how to save Office 365 Users data from the combo box to a SharePoint list. It shows two combo boxes with Office 365 Users – one allowing only one selection, another allows multiple. The former will save to the SharePoint column with the Person data type, the latter to …

Power Apps Save Combo Box with Office 365 Users to SharePoint List’s Person Data Read More »

Call Azure Form Recognizer API on SharePoint document/image URL in Power Automate

Power Automate (formerly Microsoft Flow) can call Azure Form Recognizer via the connector. However, at the time of this writing, the Form Recognizer v2 connector is not yet available. One of the options is to use the HTTP connection. Refer to my previous post, we can call Form Recognizer API by passing the image URL …

Call Azure Form Recognizer API on SharePoint document/image URL in Power Automate Read More »

Call Azure Form Recognizer Analyze Receipt using Document/Image File URL or Binary Content

This is a quick post showing how to use Azure Form Recognizer API. Azure Form Recognizer can analyze custom-model form, where we will have to train data to create a model first, or pre-built model, which currently offers only for U.S. sales receipts. Even though this post will only talk about the latter, the same …

Call Azure Form Recognizer Analyze Receipt using Document/Image File URL or Binary Content Read More »

Azure Form Recognizer with labeling tool

Azure Form Recognizer is one of Cognitive Services that uses machine learning to extract information from form documents such as invoices, receipts, etc. The service performs OCR (Optical Character Recognition) to extract text and structure to be used in model training and prediction.  The service, consumed via REST API, offers the prebuilt (pre-trained) and custom …

Azure Form Recognizer with labeling tool Read More »

Scroll to Top