In these instructions I will describe how to configure your TyT MD-2017 to store up to 100.000 contacts. And as a result the info that is displayed on the screen will be nicely formatted. What you need: The latest firmware for 100.000 contacts. Link to version 4.05 (April 2018) Firmware installer utility. Link to version 3.04 Contacts list. He re is a link to the list on the AmateurRadio.digital site. What you don't need is a new codeplug. So all the hard work you've put into creating or modifying the codeplug will be saved. Contacts, channels and zones are not touched by this upgrade. So lets get started Download the firmware from the link above or search the web for an even later version. HamDigitaal.nl has a nice list. Unzip the firmware file to a folder. Inside you will find a folder: MD-2017 1.22 CPS, open that one If you haven't already done it, run the CPS 2017 Setup v1.22.exe to install the CPS software. You'll need it later. Also...
For a customer i was creating a project portal. On the project portal we have a list with all projects and when a new item is added to that list a power automate flow creates a new project site in SharePoint. For some projects the team members might want to create a Team in Microsoft Teams. That's why I choose to create a group using the REST API call CreateGroupEx The site that gets created can easily be Teamified by the PM. Here is the http action in Power Automate. Headers: { "accept": "application/json;odata=verbose" } Body: { "displayName":"@{triggerOutputs()?['body/Project_x0020_number']}", "alias":"@{triggerOutputs()?['body/Project_x0020_number']}", "isPublic":false, "optionalParams":{ "Description":"", "Owners":["@{triggerOutputs()?['body/Editor/Email']}",""], "CreationOptions": [...
Starting a Power Automate flow on a new or changed document or item is easy. But can you only start it when a certain condition is met? Yes, you can. In this example I only want to start the flow when the field "Document Status" is set to "To review". Here's how. The trigger for this flow is: When a file is created or modified We need to go to the settings of this action... Add a trigger condition... @equals(triggerOutputs()?['body/Document_x0020_Status/Value'], 'To review') Click Done and now the flow will only start if the condition is met. Bonus tip! If you find it hard to create the trigger condition expression do this: Pick the field you want to compare against... Enter the value and click on "Edit in advanced mode" Select the expression and copy it into the trigger action from above. After this you can delete the Do until action.
Comments