Task Scheduler for Edge Browser

Anyone know of the command to start the Edge Browser UI Vision macros from the Windows task scheduler?

For chrome it is:

C:\Program Files (x86)\Google\Chrome\Application\chrome.exe

For Edge, following this convention does not seem to work.
Any suggestions?
Thanks,

In task scheduler you use the same path as for example inside a batch file. The Microsoft Edge file path on English Windows is C:\Program Files (x86)\Microsoft\Edge\Application\msedge.exe

This RPA command line works well for me:

"C:\Program Files (x86)\Microsoft\Edge\Application\msedge.exe" "file:///c:/test/ui.vision.html?direct=1&macro=Demo/Core/DemoAutofill&savelog=log1.txt"

See also the RPA API batch file collection.

Short Edge demo:

Okay. I just tried it now. It works. Thanks