
标题: [系统相关] 批处理命令检查显示器不是这个分辨率后重启怎么写? [打印本页]
作者: chiltonzchen 时间: 2025-3-19 09:44 标题: 批处理命令检查显示器不是这个分辨率后重启怎么写?
我网上查到这个命令是检查到这个分辨率重启:wmic desktopmonitor get ScreenHeight ,ScreenWidth|findstr 1920|findstr 1080&&shutdown -r -f -t 60
求答反过来怎么实现:检查不到1920或1080才触发重启,怎么写,
比如可以不可以用if not exist 之类的
作者: hnfeng 时间: 2025-3-20 08:52
我的win10里面 ScreenHeight ,ScreenWidth 都是空的
你试试这样- wmic desktopmonitor get ScreenHeight ,ScreenWidth | findstr 1920 || shutdown -r -f -t 60
复制代码
作者: aloha20200628 时间: 2025-3-20 09:07
本帖最后由 aloha20200628 于 2025-3-20 11:23 编辑
回复 1# chiltonzchen
win8.1或win10有可能用 desktopmonitor 关键词拿不到屏幕分辨率实值,可改用 Win32_VideoController get VideoModeDescription 方法析取...
- @echo off &for /f "tokens=1,3 delims= " %%a in (
- 'wmic path Win32_VideoController get VideoModeDescription^|find " x " '
- ) do if %%a neq 1920 if %%b neq 1080 shutdown -r -f -t 60
- pause&exit/b
复制代码
作者: Batcher 时间: 2025-3-20 09:10
回复 1# chiltonzchen
把你那个命令里面的&&改成||试试
欢迎光临 批处理之家 (http://www.bathome.net/) |
Powered by Discuz! 7.2 |