- @echo off
- for /f "tokens=1,3" %%i in ('reg query "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Hardware Profiles\UnitedVideo" /s') do (
- if "%%i" equ "DefaultSettings.XResolution" (
- set /a ScreenWidth=%%j
- ) else (
- if "%%i" equ "DefaultSettings.YResolution" (
- set /a ScreenHeight=%%j
- )
- )
- )
- >xn.ini echo [Video]
- >>xn.ini echo ScreenWidth=%ScreenWidth%
- >>xn.ini echo ScreenHeight=%ScreenHeight%
- start "" "%~dp0xm.exe"
复制代码
|