Maybe you know what it's possible to invoke mshta.exe inside batch with some specific parameters. So, it helps to access for screen which keeps data about screen resolution.
1 2 3 | @echo off
mshta "javascript:res=screen.width+'x'+screen.height;alert(res);close();" 1 | more
exit /b
|