To set your screen resolution to 1920x1080, you can use the Windows registry settings or the UIFlowService.exe.config file if you are working with Power Automate Desktop. Here are the steps for both methods:
Using Windows Registry:
- Open the Registry Editor (type
regeditin the Start menu). - Navigate to the following path:
-
SOFTWARE\WOW6432Node\Microsoft\Power Automate Desktop\Global\Screen
-
- Create or modify the following keys:
- ScreenResolutionEnabled: Set this to
1(DWORD) to enable custom resolution settings. - Width: Set this to
1920(DWORD). - Height: Set this to
1080(DWORD). - Scale: Set this to
100(DWORD).
- ScreenResolutionEnabled: Set this to
Using UIFlowService.exe.config (deprecated):
- Go to
C:\Program Files (x86)\Power Automate Desktopand open theUIFlowService.exe.configfile. - Set the following values in the XML:
<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" /> - Restart the UIFlowService service or your machine to apply the changes.
Make sure to check both the 32-bit and 64-bit registry locations if the settings do not work as expected.
References: