If the graphical user interface (GUI) of the application on Windows 11 appears unusual or distorted, you can change its style by launching the application with a specific command line option.
Steps to Change the GUI Style
- Open Command Prompt:
- Press
Win + R
, typecmd
, and press Enter.
- Press
- Start the RPA Application with the Fusion Style:
- Run the application with the following command:
> RPA.exe -style Fusion
- Run the application with the following command:
Creating a Batch File for Easy Access
To simplify this process, you can create a batch file that automatically starts the application with the desired style. Follow these steps:
- Create a Batch File:
- Open Notepad.
- Enter the following content:
@echo off start "" "RPA.exe" "-style" "Fusion"
- Save the Batch File:
- Save the file as
RPA.bat
in the same directory where the application executable fileRPA.exe
is located.
- Save the file as
- Run the Application:
- Double-click the
RPA.bat
file whenever you want to start the application with the "Fusion" style.
- Double-click the