Disable windows auto resize

How to COMPLETELY disable windows automatically resizing & snaping: W10, W7

This issues is making me insane and ready to purge these OSs from the machine. I have two workstations that have been upgraded to W10 . There is a very annoying (to me) ‘feature’ that when I left click and hold on the top of a window (in order to move it) it automatically goes to full size of my display. I have to click the ‘double rectangle’ icon to get it back to its original size. This is *REALLY ANNOYING* (I also have a W7 that has the same behavior).

Browser windows seem to be especially affected in that the behavior happens all the time. It also happens with application software (Word, PP, etc) but sometimes I seem to be able to grab the top window area without it jumping to full screen. I have also run a number of anti-virus anti-malware programs (Malware-bytes, Adaware, MS Security, Kaspersky AV, BitDefender) on my machines and have not found anything.

I have searched (googled) quite a bit and it seems all the wisdom points to turning off Aero-Snap by

Go to Control Panel.

Click on Ease of Access link or Ease of Access Center icon.

Select Change how your mouse works or Make the mouse easier to use option.

Tick the check box for Prevent Windows from being automatically arranged when moved to the edge of the screen with the mouse under “Make it easier to manage windows”

I have done this and while it disables the snap to edge issue, it DOES NOT solve the resize to full screen issue.

What do I have to do to COMPLETELY TURN OFF ALL the windows resizing/snapping behavior i both W10 and W7.

Disable the automatic resizing window when dragging windows on the desktop

Using windows 10 Home, when I drag a window on the desktop, a shaded window appears that will allow me to select a fractional screen snap or to maximize the window. If this box happens to appear where the cursor falls when I simply want to translate the window, it automatically resizes the window to what the box suggests. I simply want this suggestion box to be disabled, but I cannot find a way to do it. I have tried every combination of turning snap and its features on and off. I just want this annoying auto-resizing suggestion box to go away.

Thank you for posting in Microsoft Community.

Sorry for the inconvenience caused to you. I’ll certainly help you with this.

Have you tried turning off When I snap a window, show what I can snap next to it feature from the system settings.

  1. Press Windows key + I and click on System.
  2. Click on Multitasking tab.
  3. Turn off When I snap a window, show what I can snap next to it feature.

You may also try the shortcut keys to snap the windows.

  • Press Windows Key + Left arrow to position the window on left half of the screen.
  • Press Windows Key + Right arrow to position the window on right half of the screen.
  • Press Windows Key + Up arrow to maximize the window.
  • Press Windows Key + Down arrow to minimize the window.

Post us back if you need further assistance. We’ll be glad to assist you.

How to disable auto-maximize/resize window (aero-snap) when near screen edge?

Whenever I drag or resize a window near any edge or corner of either monitor, Windows wants to maximize or resize the window for me in several different ways:

  • dragging a window near a corner offers resize to full-screen
  • dragging directly to the corner offers half-screen maximize
  • resizing to top or bottom edges offers a vertical maximize (one long strip from top to bottom)

Actually, now that I think about it the 3rd one isn’t so bad, its just the full and half-screen maximize features that drives me mad.

Is there a registry hack to disable these settings, preferably independently?

4 Answers 4

This Windows 7 feature is called Aero Snap. Here’s the easy way to disable it completely:

Go to Control Panel.

Click on Ease of Access link or Ease of Access Center icon.

Select Change how your mouse works or Make the mouse easier to use option.

Tick the check box for Prevent Windows from being automatically arranged when moved to the edge of the screen with the mouse under “Make it easier to manage windows” section.

And here’s the roundabout way via the registry:

Run Registry Editor (RegEdit).

Navigate to the following registry key:

In the right-pane, double click (or right click and select Modify) on WindowArrangementActive, and set its REG_SZ value to 0 to disable ; 1 to enable.

Close Registry Editor.

Log off and log on again, or restart computer for the change to take effect.

Hope this helps! I haven’t found any way to retain functionality for a single edge — it’s either all on or all off.

I’ll add an answer here because a similar behavior can also happen due to a certain third party application called Dell Display Manager. This software can cause a similar behavior to Aero Snap, or at least when searching for solutions, this post comes quite high in Google, so because I struggled to fix this, I’m going to post the solution for future victims of this program :D.

Читайте также:  Vmware workstation создание виртуальной машины linux

The problem is solved by opening the application and disabling «easy arrange» by selecting a no-layout icon (as in the second picture below).

This is how the behavior caused by Dell Display Manager looks like (when you drag a restored window around the screen).

and this is how you fix it:

I got this application together with my Dell monitor. Like most software made in China it is quite buggy (actually it’s among the best such programs I’ve used, much less buggy & horrible than others). Usually, hardware manufacturers have terrible software but this one is quite useful due to auto-setting of brightness level based on running application.

The problem can be fixed if you open Dell Display Manager. You will see that it has some example window layouts in the lower part of the window. You can also access these if you go to «Configure» (that is available when it’s in «Auto mode»). There, you have a tab called «Easy Arrange» and that’s where the problem is. In «easy arrange», the Dell Display Manager tracks window movements and attempts to reorganize them based on various available layouts. Depending on the layout you selected, it will draw yellow boxes on the screen. I had one where my screen was split in two: one thin vertical yellow box on the right and a larger one on the left. When the window was in one of the boxes, the border became red.

I posted this on the Microsoft Forum where somebody actually had the exact issue I was having:

Disable Window Resizing Win32

how do I disable resizing by dragging the edge of windows?

Here is my window creation code

8 Answers 8

The WS_OVERLAPPEDWINDOW style includes the WS_THICKFRAME style which, I think, is responsible for making your window resizeable.

Consider something like

WS_SIZEBOX); – YePhIcK Mar 13 ’17 at 2:30

You can use WS_OVERLAPPEDWINDOW ^ WS_THICKFRAME

The XOR will keep everything in WS_OVERLAPPEDWINDOW except for WS_THICKFRAME

You can try something like this:

It only disable resizing by dragging the edge of windows. By the way, WS_SIZEBOX is the same as WS_THICKFRAME because of

If you use WS_OVERLAPPED | WS_MINIMIZEBOX | WS_SYSMENU , it disable both maximizing and resizing.

Change your window style from WS_OVERLAPPEDWINDOW to, say, WS_CAPTION | WS_SYSMENU | WS_MINIMIZEBOX. In other words, it’s overlappedwindow minus the thickframe (resizable border) and the maxbox.

Process the WM_SIZING message and override all attempts to change the window’s rectangle.

For MFC, Go to Properties > Border and set to «Dialog Frame» It worked for me since the previous setting of the Border was set to «Resizing»

That works for me, but instead of using

Not the answer you’re looking for? Browse other questions tagged c++ winapi resize or ask your own question.

Linked

Hot Network Questions

Subscribe to RSS

To subscribe to this RSS feed, copy and paste this URL into your RSS reader.

site design / logo © 2021 Stack Exchange Inc; user contributions licensed under cc by-sa. rev 2021.4.16.39093

By clicking “Accept all cookies”, you agree Stack Exchange can store cookies on your device and disclose information in accordance with our Cookie Policy.

How To Stop Auto Resizing Of Windows In Windows 10

Last Updated on November 5, 2019 by admin 25 Comments

In Windows 10, with default settings, when you move a window to one of the corners or sides of the screen, it automatically resizes and snaps the window. You also get suggestions what you can snap next to the current window.

The multitasking feature is helpful when you are on a PC with a large screen or when you are using an external monitor. But if you are on a small laptop screen, the feature might not be very useful. In fact, the feature might annoy you when you are on a small screen device.

Luckily, Windows 10 can be configured to stop automatically resizing and arranging windows when moved them to sides or corners of the screen.

In this guide, we will see how to turn off one or more multitasking features in Windows 10.

Stop Windows 10 from automatically resizing windows

Step 1: Navigate to Settings app > System > Multitasking.

Step 2: Here, turn off the Snap windows option to stop Windows 10 from automatically resizing windows.

Old Method (doesn’t work with in the latest version of Windows 10)

Step 1: Open the Settings app and navigate to System > Multitasking.

Step 2: Under the Snap section, you will get the following options:

1. Arrange windows automatically by dragging them to sides or corners of the screen.

2. When I snap a window, automatically size it to fill available space.

3. When I snap a window, show what I can snap next to it.

4. When I resize a snapped window, simultaneously resize any adjacent snapped window.

If you want to stop Windows 10 from automatically arranging and resizing them when moved to the corner or sides of the screen, turn off Arrange windows automatically by dragging them to sides or corners of the screen option. When this option is turned off, other options are automatically turned off as well.

Читайте также:  Script with linux commands

As you know by now, when you snap a window, Windows 10 automatically shows a few windows that you can snap next it. If you don’t want to this suggestion, turn off the third option.

Filed Under: Windows 10 Tagged: Tips

Comments

David Wolfe says

MS audacity of having this as a setting as default. The idiots don’t realize these kinds of things will be their downfall.

Danny Heflin says

I have found that the issue is from within the screen saver, I checked mine & it showed it was set @ 29 min but disabled so I enabled it then set it with all 9’s in the time box, then I returned it to disabled so now when Wind Blows seeks to screw over my desktop it will have to wait 999999 min before doing so, it has only been doing this BS while I nap for 30 min to 2 hours, I am unsure how long the above number of min is but I doubt I will nap that long ever 🙂

Lin Ligrest says

Yep, It’s pretty bad when Microsoft arbitrarily up’s and changes things for no apparent reason. First off, I had to take an old vendors copy of Windows 7 and install it on my three Windows 10 home computers running the old 1804 build, because I couldn’t update to the newer 1904 OS build, then I download the media creation tool that contained the 1904 OS build. I was shocked at all the nonsense over this so called wonderful does nothing upgrade. If you don’t do there so called upgrades, they threaten you with, “There will no longer be anymore support for the old system that your using”. There will always be someone trying to build that better mouse trap, even though we all know the current one works just fine and can’t be improved upon. As far as windows resizing, it’s one more attempt by them trying to make things better that all ready work just fine. To sum it up, “IF IT AIN’T BROKE, DON’T FIX IT”. The real answer in al this is, ask us what we would like to have changed/or new in our computers, but they won’t listen.

this is a third party app like for Dell its premier color, or for MSI its true color tools…thats why it is not working when you change snap in windows, so for all you idiots bashing microsoft…its really because you have little knowledge regarding this. First be aware you do not know something to the degree necessary then learn and know what you need to…After this something doesnt work then maybe its the fault of the product in question…But people get a little bit of knowledge and think they know it all as their confidence is sky high…until they learn more then realize they know nothing at all…dumb asses.

Recently purchased new NUC 10 and downloaded Win 10 as the OS. Have tried all suggested solutions to kill the automatic re-sizing of windows and left upper corner docking when the screen-saver comes on. Nothing has worked. Microsoft needs to jettison this feature altogether. It serves no useful purpose.

Danny Heflin says

WIN 10 is the biggest POS Micro-SUCK has ever made, I truly enjoyed win 7 & had 0 issues but that system simply ceased about 8 months ago so I bought a new PC & couldn’t buy a win 7 one since it wont run on these new systems, I tried just using the win 7 OS from moving my drives into this one & it wouldn’t recognize shit, but oh well I now have win 10 then I learned it is an eternally updated turd that is never any more stable than the backup you have made & it actually devoured 1.5 T of Backup space on my backup drive in 3 months by never simply updating the Backups every backup it made was brand new I finally disabled that shit & I am now using the segate backup software from the drive which is working fine but win 10 still occasionally tries fucking me over again & again like this window resize shit I have had all that disabled since day 1 but every pain in the ass update it reverts every setting back to how the shitheads programing it want it & will rarely do what I want why because Micro-suck decided to make their OS WIND-BLOWS.

I agree completely with the complainants, this is infuriating. However I have found that if I slide a finger on both hands from the edges of the touchpad to the centre it SOMETIMES reverts to normal size. ( It just did before I wrote this ).

“But if you are on a small laptop screen, the feature might not be very useful. In fact, the feature might annoy you when you are on a small screen device.”

It bloody well annoys me whenever it happens.

I’m having same problem as above. I agree with annoyed by MS. I want the windows to stay where I last put them and the same size as I last put them. This seemed to happen a couple of updates ago. Now mine are always reduced in size and anchored in the upper left when I wake the computer from sleep. I also cannot find any combo of settings that make it stop doing this.
Please MS. FIX THIS!

Читайте также:  Что такое восстановленный windows с помощью образа диска

Doesn’t work, period. 10/27/2019, Win10 1903 18362.418 “up to date”.

Line at top of this website says “Last Updated on March 22, 2018 by admin”

1 year, 7 months later…

Rob Poretti says

Plain and simple: Turning off the snap windows option does not prevent windows from snapping. It is the worst productivity feature ever – because it is non-productive. I waste my time EVERY DAY with this bug… did I say that out loud? I meant “feature”…

Dak J Ultimak says

I am having the same problem, it started with a recent Windows 10 update. This is NOT the Snap feature which is fine, and I use all the time. If I drag any application anywhere near the TOP of the screen, it snaps to FULL SCREEN. When I click the Square (between the dash, minimize, and the X, close), it’s supposed to revert back to the original window size, instead it remains FULL SCREEN, then I have to resize the window over again. it happens with almost all program windows.

The solution was right for one. It did stop the auto adjust size. But what does not happen is the page only goes so high it stops one full size even if you lower the page past the start bar you can only make page so high . I am trying to figure a way to have full screen but no ads on bottom. As it could burn my screen because it is always white bar and never changes , that is the issue now.
Thanks got the information

Jack Littley says

none of these solutions work. this is a state problem all I want is for windows to return to the state it was in before hibernation. I cant seem to make it do that so I have resize and move my windows back to where I want them evertime the system hibernates. Bad design

Prachar Mike says

All of these replies are for a different problem than what the article is about…

I have tat problem myself – only happens on one of my devices. Still searching for the fix.

C A Rogillio says

Microsoft pays no attention to the wants or needs of it’s customers. They are absolutely deaf to our problems; making money is their holy grail, not customer service! I can’t wait to see IBM’s Red Hat improvements.

So MS is ignoring all the folks with the same issue (me included on Win10) and refuses to correct the problem. What a useless organization.

Duff Watkins says

proposed solution doesn’t work

Jeff Guarino says

does not work, I have the feature shut off , just like this article describes and my windows still expand to fill whole screen when moved near the edge.

Brand new computer, forced to use Windows 10, and not happy about it. I have all those options turned off, and yet every time I return to the computer, all my windows are re-sized at the top left of the screen. This is beyond annoying. This was never a problem with Win 7. Why can’t MS leave well enough alone?

this doesn’t work!. windows 10 shrinks my chrome browser whenever the screen saver comes on. THIS FEATURE SUCKS. the fix suggested does not work!

If I leave a window for another which is over it, many times upon returning to the first window, it has been reduced to a uselessly small size and I have to make it bigger again. This is totally annoying. I have everything turned off as suggested by this article and numerous others and it still happens. I do not know why this is supposed to help anyone. I wish MicroSoft would stop assuming what its users need and actually ask them.

Brand new Lenovo with Windows 10 – turning off the Snap does nothing. Screen still maximizes – extremely annoying and time consuming to constantly have to resize.

I have “all” of the above options turned off. But, since I deal with limited screen real estate, I have a portion of the title bar hanging off of the screen on an “un-maximized” window. But, if I then click on a scroll button, or try to resize the window, while the title bar, (or side of the window) is hanging off the edge of the screen, the window is *still* auto-resized so that the sides of the window that were off screen are now fully back inside the screen, which then messes up my arrangement of what I need to see within the window, forcing me to have to once more resize and replace it off screen again, and “hope” that I don’t have to scroll again, (since mouse scroll is disabled in that window for some reason).

I also have all three of the options checked for “Prevent windows from being automatically arranged when moved to the edge of the screen”, from the “Ease of Access Center”. I can find no other options for this. Everything I can find is set to prevent this from happening, but it is still happening.

Anyone have any other ideas for how to fix this?

@annoyed by Microsoft,
Not I. It is hyper frustrating.

annoyed by Microsoft says

I’m curious — does anybody find this to be a useful feature? It only annoys me, even with external monitors. I want windows where I put them, and the size I make them. Not flying all over the screen if I try to move a window to the “wrong” place.

Оцените статью