|
[注意]深山红叶启动光盘(WinPE&PE Builder)讨论专帖(违令者必删)
红叶,这里有一个可以设置PE启动时屏幕分辨率和刷新率的PE插件,在我的PE光盘中测试成功,请测试!代码如下:
; PE Builder v3 plug-in INF file
; Created by jrs
;
; Use this file to customize display settings
[Version]
Signature= "$Windows NT$"
[PEBuilder]
Name="display"
Enable=1
[SetupReg.AddReg]
; Screen setting 640x480 16Bit
;0x4,"ControlSet001\Services\VgaSave\Device0","DefaultSettings.BitsPerPel",0x010
;0x4,"ControlSet001\Services\VgaSave\Device0","DefaultSettings.XResolution",0x280
;0x4,"ControlSet001\Services\VgaSave\Device0","DefaultSettings.YResolution",0x1E0
; Screen setting 800x600 16Bit
0x4,"ControlSet001\Services\VgaSave\Device0","DefaultSettings.BitsPerPel",0x010
0x4,"ControlSet001\Services\VgaSave\Device0","DefaultSettings.XResolution",0x320
0x4,"ControlSet001\Services\VgaSave\Device0","DefaultSettings.YResolution",0x258
; Screen setting 1024x768 32Bit
;0x4,"ControlSet001\Services\VgaSave\Device0","DefaultSettings.BitsPerPel",0x020
;0x4,"ControlSet001\Services\VgaSave\Device0","DefaultSettings.XResolution",0x400
;0x4,"ControlSet001\Services\VgaSave\Device0","DefaultSettings.YResolution",0x300
; Screen setting 1280x1024 32Bit
;0x4,"ControlSet001\Services\VgaSave\Device0","DefaultSettings.BitsPerPel",0x020
;0x4,"ControlSet001\Services\VgaSave\Device0","DefaultSettings.XResolution",0x500
;0x4,"ControlSet001\Services\VgaSave\Device0","DefaultSettings.YResolution",0x400
; Screen setting 1600x1200 32Bit
;0x4,"ControlSet001\Services\VgaSave\Device0","DefaultSettings.BitsPerPel",0x020
;0x4,"ControlSet001\Services\VgaSave\Device0","DefaultSettings.XResolution",0x640
;0x4,"ControlSet001\Services\VgaSave\Device0","DefaultSettings.YResolution",0x480
; Refresh rate 75 HERTZ
0x4,"ControlSet001\Services\VgaSave\Device0","DefaultSettings.VRefresh",0x04b
;XResolution:
;0x280 is 640
;0x320 is 800
;0x400 is 1024
;0x500 is 1280
;0x640 is 1600
;YResolution:
;0x1E0 is 480
;0x258 is 600
;0x300 is 768
;0x400 is 1024
;0x480 is 1200
;in BitsPerPel:
;0x8 is 8 Bit
;0x10 is 16 Bit
;0x18 is 24 Bit
;0x20 is 32 Bit
;refresh rate
;60=03C
;65=41
;70=046
;72=048
;75=04B
;85=055
;WARNING: Windows is supposed to reject unsupported settings but do not rely on that.
;If you specify unsupported settings you can damage your hardware.
;NOTE: Many problems with 0x18 24 Bit, 16 Bit and 32 Bit work OK.
另。软件交流区中我发了一个帖子,其中有我自己汉化的一些小工具,PE中可以用
jrs的WinPE中集成的软件,部分是自己汉化的,将陆续贴出!
http://bbs.wuyou.net/cgi-bin/topic.cgi?forum=33&topic=530&show=25
|
|