首页 > 解决方案 > 批处理如何让 Batch CMD 在第二个监视器上弹出,而不是在默认监视器上

问题描述

批处理如何让 Batch CMD 在第二个监视器上弹出,而不是默认监视器总是隐藏在游戏后面,当 ALT+TAB 它 [将 CMD 移动到第二个] 但它总是回到游戏,因为很难将 Batch CMD 弹出窗口移动到第二监视器等

然后我使用的批次是:

REM Store systems current time into BEFOREDATE var as mm-dd-yy
SET TODAY=%date:~0,2%-%date:~3,2%-%date:~6,8%

Start "" "Game Dir\ etc.exe"
Pause

REM Set the below date to date you wish to roll your system date back to
DATE 10-12-20
Pause

REM Set system date back to current date
DATE %TODAY%

标签: batch-file

解决方案


推荐阅读