Here is a workaround.
1) Create a flow like described here Flow for desktop
2) Create a powershell script like
$headers = New-Object "System.Collections.Generic.Dictionary[[String],[String]]"
$headers.Add("sig", "Hoz_REPLACEME")
$headers.Add("Content-Type", "application/x-www-form-urlencoded")
$headers.Add("Hoz_GREPLACEME", "")
$response = Invoke-RestMethod 'https://prod-32.westus.logic.azure.com:443/workflows/REPLACEME/triggers/manual/paths/invoke?api-version=2016-06-01&sp=%2Ftriggers%2Fmanual%2Frun&sv=1.0&sig=REPLACEME' -Method 'POST' -Headers $headers
$response | ConvertTo-Json
3) Create shortcut like
%SystemRoot%\system32\WindowsPowerShell\v1.0\powershell.exe -ExecutionPolicy Bypass -File "C:\PowerShell\StartTeller.ps1"
4) Give your shortcut a hotkey

Voila
BTY, now that you have a script, you can schedule it with Windows task scheduler...
Also added a copy of a shortcut to shell:startup for something I have to do anytime I reboot the machine.