Type something to search...

Move Any Window to an Exact Position and Size

You’ve set up a perfect workflow: your code editor on the left, browser on the right, terminal at the bottom. Then you restart your machine and spend the next five minutes dragging windows back into place — close, but never quite right.

OverRec fixes this.


The Problem with Manual Window Placement

Dragging a window with your mouse is inherently imprecise. You aim for pixel 960 and land on 963. You resize until it “looks right” only to notice the gap a moment later. For casual use this is fine. For screen recording, documentation screenshots, or a repeatable workspace layout, a few pixels of drift is enough to ruin consistency.


GUI: Draw First, Snap Second

The idea is simple — draw the rectangle you want the window to occupy, then tell OverRec which window goes there.

Step 1: Draw the target rectangle

Open OverRec and draw a rectangle in the position and size you want. Use Free Drawing Mode to drag it into shape, or switch to Fixed Coordinate Mode and type the exact values:

  • Position: X, Y from the top-left of your screen
  • Size: Width × Height in pixels

Step 2: Click the Snap Window button

The Snap button (rightmost in the top row) opens a searchable list of all visible windows on your system.

Step 3: Search and select

Type any part of the window title to filter the list. Search works in any language — English, Chinese, Japanese, Arabic, Hindi, Bengali, and more. Click the window you want.

OverRec moves and resizes it instantly to fill your rectangle, then brings it to the front.

That’s the entire workflow. Three steps, and the window is exactly where you need it.


CLI: One Command, Repeatable Every Time

For automation, scripting, or AI-assisted layouts, every GUI action is also available from the terminal.

Find the window ID

OverRec.exe cli window chrome

Output:

WindowID        Title
------------------------------------------------------------
657846          Google Chrome

Search with multiple keywords (all must match, case-insensitive):

OverRec.exe cli window visual studio code

Snap it to position

OverRec.exe cli snap --windowid 657846 --location 0,0 --size 1280x720

The window is restored if minimised, moved, resized, and brought to the front — in a single command.

Working with multiple monitors

First, list your monitors to find their positions:

OverRec.exe cli monitors --all

Then use --monitor to specify coordinates relative to that monitor’s top-left:

OverRec.exe cli snap --windowid 657846 --location 0,0 --size 1920x1080 --monitor 2

Tiling Windows Side by Side

Splitting two windows across your screen takes four commands:

OverRec.exe cli window chrome
OverRec.exe cli window notepad

OverRec.exe cli snap --windowid 657846 --location 0,0    --size 960x1080
OverRec.exe cli snap --windowid 329812 --location 960,0  --size 960x1080

Or as a one-liner in bash (WSL or terminal):

LEFT=$(OverRec.exe cli window chrome  | awk 'NR>2 && $1~/^[0-9]+$/ {print $1; exit}')
RIGHT=$(OverRec.exe cli window notepad | awk 'NR>2 && $1~/^[0-9]+$/ {print $1; exit}')
OverRec.exe cli snap --windowid "$LEFT"  --location 0,0   --size 960x1080
OverRec.exe cli snap --windowid "$RIGHT" --location 960,0 --size 960x1080

Use Cases

  • Screen recording: lock your demo app to a known region before hitting record
  • Documentation: capture consistent screenshots without manually repositioning windows between shots
  • Workspace setup: restore your preferred window layout with a single script after a restart
  • AI workflows: let an agent arrange windows before taking a screenshot or analysing the screen

Summary

MethodSteps
GUIDraw rect → Snap button → select window
CLIOverRec.exe cli window <name>OverRec.exe cli snap --windowid ID --location X,Y --size WxH

Download OverRec from the Microsoft Store.

Tags :
Share :

Related Posts

Learn Vocabulary Effortlessly with Infini Alchemy

Learn Vocabulary Effortlessly with Infini Alchemy

Are you looking for a fun and engaging game that can also help you learn new words? Look no further! Infini Alchemy is a creative alchemy game where you can combine basic elements like Water, Fire, Ea

read more
How to copy the formulas in ChatGPT response to word

How to copy the formulas in ChatGPT response to word

Copy the formulas in ChatGPT response to word, simply 3 steps:Copy the ChatGPT response as markdown (keep LaTeX formulas) Select the formulas in Word and insert as equation Convert LaTeX fo

read more
Master KET Vocabulary Through Alchemy: A New Learning Adventure

Master KET Vocabulary Through Alchemy: A New Learning Adventure

Infini Alchemy is an innovative web-based game that transforms vocabulary learning into an engaging alchemical adventure. By dragging and dropping elements to craft new items, players naturally absorb

read more
Real-Time Video Effects with GPU Acceleration

Real-Time Video Effects with GPU Acceleration

GPU rendering is now available in Sub Dimension Camera. This feature eliminates the need to wait for a video to "render" after recording. You can now preview and capture complex artistic filters in re

read more
See the World Differently: Camera Effects in Sub Dimension

See the World Differently: Camera Effects in Sub Dimension

Your camera captures moments. Effects transform them into art. Sub Dimension comes packed with real-time visual effects that apply live in the viewfinder — what you see is what you get, whether you'r

read more

Let an AI Agent Resize a Window and Take the Screenshot

Screen automation is easiest to trust when the result is visible and repeatable. In this short demo, an AI agent uses the OverRec screen skill to find a browser window, resize it to an exact rectangle

read more

将任意窗口精确定位到指定位置和尺寸

你精心搭建了完美的工作流:左边代码编辑器,右边浏览器,底部终端。然后重启电脑,又花了五分钟把窗口一个个拖回原位——差不多,但就是不够准。 OverRec 解决了这个问题。手动拖拽窗口的局限 用鼠标拖拽窗口本来就不精确。你瞄准第 960 像素,落点却是 963。你把窗口调到"看起来差不多",却在一秒后发现那道缝隙。日常使用无所谓,但对于录屏、文档截图或需要重复使用的工作区布局

read more

Mueve Cualquier Ventana a una Posición y Tamaño Exactos

Has configurado el flujo de trabajo perfecto: tu editor de código a la izquierda, el navegador a la derecha, la terminal abajo. Luego reinicias el equipo y pasas los siguientes cinco minutos arrastran

read more

Deja que un Agente de IA Redimensione una Ventana y Tome la Captura

La automatización de pantalla es más fácil de confiar cuando el resultado es visible y repetible. En esta breve demo, un agente de IA usa la habilidad de pantalla de OverRec para encontrar una ventana

read more

让 AI 智能体调整窗口大小并完成截图

屏幕自动化要让人放心,结果就必须可见、可重复。在这个简短演示中,AI 智能体使用 OverRec 屏幕技能找到一个浏览器窗口,将其调整到精确矩形,并在无需手动拖拽的情况下截取干净的截图。

read more