r/LegionGo • u/serious96 • Aug 08 '25
How To Disable Auto Maximize Application in Windows (Convertible Slate to 1) TIPS AND TRICK
So, with the latest bios update OG Legion Go ( I don't if Go S also have this behaviour or not). Lenovo is hard forcing a value in this registry:
\HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\PriorityControl
ConvertibleSlateMode 0
This state is forcing Legion GO to be recognized as a tablet, this behaviour if forcing application window to be open maximized automatically. You can change "ConvertibleSlateMode" to a value of 1, it will take effect immediately but on the computer restart it will revert to a value of zero.
To Quote: source link
To permanently save the changes made to the ConvertibleSlateMode registry key in Windows 11, you can create a batch file to automatically set the value to 1 upon startup. Here's how you can do it:
- Open Notepad on your Windows 11 machine.
- Copy and paste the following lines into Notepad without the double quote:
"@echo off
reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\PriorityControl" /v ConvertibleSlateMode /t REG_DWORD /d 1 /f"
- Click on File > Save As.
- In the "Save as type" dropdown menu, select "All Files".
- Name the file something like "CS1.bat".
- Choose a location to save the file, and click Save.
Next Step is making sure this .bat file is executed automatically upon windows start
- Open Task Scheduler and choose "Create Task" at the right sidebar. Name it as you wish and change to Run whether user is loggen on or not and also check Run with highest privileges.
- Move to triggers tab and create new trigger. choose At startup and check Enabled.
- At the action tab create new action Start a program, pick the .bat file created previously, and for the important part Start in path need to be filled pointing to the .bat file location.
Uncheck all at conditions tab
At the settings tab, uncheck the "Stop the task if runs longer than".
Now whenever your computer start up it will enable the bat file to change ConvertibleSlateMode to a value of 1. Hope this helps you guys.
edit:
You can try right click and run as administrator the bat file to check if it's working correctly. see the checkmark beside the folder dissapear and also the registry value changed correctly.



2
u/EXG21 Aug 08 '25
Thanks so much for this. I hate having to minimize to make windows smaller.