Sign in with Microsoft
Sign in or create an account.
Hello,
Select a different account.
You have multiple accounts
Choose the account you want to sign in with.

Symptom

The users runs a desktop flow in unattended mode and the execution fails because it cannot find the right UI elements. Error screenshots will show that the screen resolution at run time is different from the one used when creating the desktop flow.   

Cause

Some Windows machines or VMs can default to a smaller screen resolution when running unattended desktop flows. If the automated applications is sensitive to the screen resolution or if you are using image based automation, this can lead to the desktop flow failing. 

Resolution

Set the default resolution in the UIFlowService.exe.config file:

  • Navigate to "C:\Program Files (x86)\Power Automate Desktop"

  • Open UIFlowService.exe.config in a text editor

  • Set the Microsoft.Flow.RPA.UIFlowService.ScreenDefaultResolutionEnabled to true

  • Adjust the default screen resolution by setting the Width and Height properties:

        <!-- Screen resolution settings -->

        <add key="Microsoft.Flow.RPA.UIFlowService.ScreenDefaultResolutionEnabled" value="true" />

        <add key="Microsoft.Flow.RPA.UIFlowService.ScreenDefaultResolutionWidth" value="1920" />

        <add key="Microsoft.Flow.RPA.UIFlowService.ScreenDefaultResolutionHeight" value="1080" />

        <add key="Microsoft.Flow.RPA.UIFlowService.ScreenDefaultResolutionScale" value="100" />

  • Go to Start Menu > Services, find the "Power Automate service" (in older versions this is called the "UIFlowService", and the process name is UIFlowService.exe if you choose to use Task Manager). Restart this service by right clicking and hitting "Restart". Or if you prefer, you can simply reboot your machine.

Need more help?

Want more options?

Explore subscription benefits, browse training courses, learn how to secure your device, and more.

Communities help you ask and answer questions, give feedback, and hear from experts with rich knowledge.

Was this information helpful?

What affected your experience?
By pressing submit, your feedback will be used to improve Microsoft products and services. Your IT admin will be able to collect this data. Privacy Statement.

Thank you for your feedback!

×