|
wf10000
新手上路

积分 10
发帖 4
注册 2007-4-22
状态 离线
|
『楼 主』:
【求助】能用批处理改变屏幕分辨率吗?
使用 LLM 解释/回答一下
本人在网吧工作```由于工作的原因经常遇到一些问题.比如说魔域不能窗口化``网上也没有专门的魔域窗口工具.
要做到窗口化必须要把分辨率调到1024*768以上.使用中发现1280*1024是实现窗口的效果最好``
但是1024*768是最大众化的分辨率``
我现在想要做的就是能不能用批处理自动修改指定分辨率(1280*1024)? 客人打开了以后即可实现分辨率修改亦既魔域游戏窗口化运行?
谢谢了 本人初来,感觉这里面的学习氛围不错```
I work in an internet café. Due to the nature of my job, I often encounter some problems. For example, Myth of the Realms cannot be windowed. There are no special window tools for Myth of the Realms online.
To achieve windowed mode, the resolution must be adjusted to above 1024*768. I found that 1280*1024 has the best windowed effect, but 1024*768 is the most popular resolution.
What I want to do now is whether I can use a batch script to automatically modify the specified resolution (1280*1024)? After the customer opens it, the resolution can be modified, that is, the Myth of the Realms game runs in windowed mode?
Thank you. I'm new here. I feel the learning atmosphere here is very good.
|
|
2007-4-22 11:15 |
|
|
wf10000
新手上路

积分 10
发帖 4
注册 2007-4-22
状态 离线
|
『第 2 楼』:
使用 LLM 解释/回答一下
如果哪位高手能做到我想肯定立大功一件呵``困扰了很多网管的问题.....
等待高手ing 本人菜鸟一个 学习中``
Good Good Study.Day Day Up.
If any expert can do it, I'm sure it will be a great achievement. It's a problem that has troubled many network administrators...
Waiting for the expert. I'm a novice, learning...
Good Good Study.Day Day Up.
|
|
2007-4-22 11:20 |
|
|
slore
铂金会员
      
积分 5212
发帖 2478
注册 2007-2-8
状态 离线
|
『第 3 楼』:
使用 LLM 解释/回答一下
只能用其他语言写一个,然后用P调用。。给它参数。。。单独P我想是没有可能。
Only write it in another language, then call it with P. It's impossible to do it alone with P.
|
|
2007-4-22 11:32 |
|
|
wf10000
新手上路

积分 10
发帖 4
注册 2007-4-22
状态 离线
|
『第 4 楼』:
使用 LLM 解释/回答一下
哦?......我一直想能不能用P实现的.
没想到貌似简单的问题这么复杂.....
Oh?......I've always wondered if it can be done with P.
Unexpectedly, what seemed like a simple problem is so complicated.....
|
|
2007-4-22 11:41 |
|
|
ccwan
金牌会员
     
积分 2725
发帖 1160
注册 2006-9-23 来自 河北廊坊
状态 离线
|
|
2007-4-22 22:38 |
|
|
wf10000
新手上路

积分 10
发帖 4
注册 2007-4-22
状态 离线
|
|
2007-4-23 11:56 |
|
|
lxmxn
版主
       
积分 11386
发帖 4938
注册 2006-7-23
状态 离线
|
『第 7 楼』:
使用 LLM 解释/回答一下
我想到一个思路,就是用Regmon.exe这样的注册表监控程序来监视注册表的行为,然后手工设置显示器的分辨率,再来看Regmon.exe,看哪些注册表键值被修改或者创建了,再根据其特点来写个修改注册表的批处理,不知道是否可行。
I have a thought, that is to use a registry monitoring program like Regmon.exe to monitor registry behavior, then manually set the monitor resolution, and then look at Regmon.exe to see which registry key values are modified or created, and then write a batch script to modify the registry according to its characteristics. I wonder if this is feasible.
|
|
2007-4-23 12:22 |
|
|
zh159
金牌会员
     
积分 3687
发帖 1467
注册 2005-8-8
状态 离线
|
『第 8 楼』:
使用 LLM 解释/回答一下
估计单独修改注册表是没用的(有可能重启有效),可能还得启用一些刷新方式来切换显示
It is estimated that modifying the registry alone is useless (maybe restarting will be effective). Probably, some refreshing methods need to be enabled to switch the display.
|
|
2007-4-23 14:00 |
|
|
everest79
金牌会员
      一叶枝头,万树皆春
积分 2564
发帖 1127
注册 2006-12-25
状态 离线
|
『第 9 楼』:
使用 LLM 解释/回答一下
显卡驱动包里带着命令行工具
The command-line tools are included in the graphics card driver package
|
|
2007-4-23 14:02 |
|
|
dikex
高级用户
    潜水修练批处理
积分 788
发帖 366
注册 2006-12-31
状态 离线
|
『第 10 楼』:
使用 LLM 解释/回答一下
Originally posted by lxmxn at 2007-4-22 11:22 PM:
我想到一个思路,就是用Regmon.exe这样的注册表监控程序来监视注册表的行为,然后手工设置显示器的分辨率,再来看Regmon.exe,看哪些注册表键值被修 ...
HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Hardware Profiles\0001\System\CurrentControlSet\Control\VIDEO\{CA6A5C1F-A776-496E-9BD6-618B7DD56E5D}\0000下的两个类型REG_DWORD的键值:
DefaultSettings.XResolution 水平方向
DefaultSettings.YResolution 垂直方向
Originally posted by lxmxn at 2007-4-22 11:22 PM:
I have an idea, which is to use a registry monitoring program like Regmon.exe to monitor registry behavior, then manually set the monitor resolution, and then look at Regmon.exe to see which registry key values are modified...
Under the key value of two REG_DWORD types under HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Hardware Profiles\0001\System\CurrentControlSet\Control\VIDEO\{CA6A5C1F-A776-496E-9BD6-618B7DD56E5D}\0000:
DefaultSettings.XResolution Horizontal direction
DefaultSettings.YResolution Vertical direction
|
|
2007-4-23 14:04 |
|
|
everest79
金牌会员
      一叶枝头,万树皆春
积分 2564
发帖 1127
注册 2006-12-25
状态 离线
|
『第 11 楼』:
使用 LLM 解释/回答一下
Originally posted by dikex at 2007-4-23 01:04 AM:
HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Hardware Profiles\0001\System\CurrentControlSet\Control\VIDEO\{CA6A5C1F-A776-496E-9BD6-618B7DD56E5D}\0000下的两个类型REG_DWORD的 ...
XP下可以想法办激活自动设置分辨率或.inf操作之类的
Originally posted by dikex at 2007-4-23 01:04 AM:
HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Hardware Profiles\0001\System\CurrentControlSet\Control\VIDEO\{CA6A5C1F-A776-496E-9BD6-618B7DD56E5D}\0000下的两个类型REG_DWORD的 ...
You can try to activate the automatic resolution setting or .inf operation, etc. under XP.
|
|
2007-4-23 14:09 |
|
|
vkill
金牌会员
     
积分 4103
发帖 1744
注册 2006-1-20 来自 甘肃.临泽
状态 离线
|
『第 12 楼』:
使用 LLM 解释/回答一下
外部命令很多,看你愿意用不?
There are many external commands. It depends on whether you are willing to use them.
|
|
2007-4-24 00:04 |
|
|
ekuqingren
新手上路

积分 1
发帖 1
注册 2008-11-16
状态 离线
|
『第 13 楼』:
使用 LLM 解释/回答一下
好象可以的,以前下载过,你到百度找找
It seems it's okay. I downloaded it before. You can search on Baidu.
|
|
2010-1-29 11:19 |
|
|
xykot
新手上路

积分 6
发帖 7
注册 2010-2-16
状态 离线
|
|
2010-2-20 17:02 |
|
|
756399151
新手上路

积分 1
发帖 1
注册 2010-12-7
状态 离线
|
|
2010-12-17 13:38 |
|