Some software that I use always switches off the Windows option "Show window contents while dragging". That means that dragging a window just moves an outline, and the window only moves when you drop the outline. That's grim. You can switch this option in Control Panel. That's a bunch of clicks, and it'll get switched back later. Grr!
Siva Mulpuru knows enough Powershell to fix a similar setting (thanks, Google) so I borrowed that code and fixed it up to do what I wanted.
Siva Mulpuru knows enough Powershell to fix a similar setting (thanks, Google) so I borrowed that code and fixed it up to do what I wanted.
$setwindowsdragfull = @" using System.Runtime.InteropServices; public class dragfixer { [DllImport("user32.dll", SetLastError = true, CharSet = CharSet.Auto)] private static extern int SystemParametersInfo (int uAction, int uParam, string lpvParam, int fuWinIni); public static void SetDragFullWindows () { SystemParametersInfo( 0x0025, 1, "", 0x03 ); } } "@ Add-Type -TypeDefinition $setwindowsdragfull [dragfixer]::SetDragFullWindows()Then I had to figure out how to run a Powershell script. This batch file seems to work.
\@powershell -executionpolicy bypass -File SetDragFullWindows.ps1Then I can put an icon somewhere handy and click the annoyance away.