How to change Default Display settings

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Dear all,
How to change the default display settings(Screen Resolution) in
the configuration?. Which component is suitable for this? . i need to done
it without using display driver and Explorer Shell. Kindly help me. I kindly
expect ur solutions as soon as possible.

Thanks,
veerasivakumar. v
--
V.Veerasivakumar
InLott Technologies Pvt Ltd,
Chennai,
India.

E-Mail: (e-mail address removed)
 
Veerasivakumar said:
Dear all,
How to change the default display settings(Screen Resolution) in
the configuration?. Which component is suitable for this? . i need to done
it without using display driver and Explorer Shell. Kindly help me. I kindly
expect ur solutions as soon as possible.

Thanks,
veerasivakumar. v

....you want to change the resolution without including a display driver?
 
Once you include the display driver in your configuration, you will be
able to change the display settings in the Target Designer.

¡Nos vemos!
 
Dear friends,
Thanks for ur reply. I didn't include the display driver in my
configuration. After the booting this image, the system properties show the
"Default Monitor on" in the Display settings instead of Display driver name.
So, i want to know which component supports this settings in XPe
configuration. Kindly advice me.

--
V.Veerasivakumar
InLott Technologies Pvt Ltd,
Chennai,
India.

E-Mail: (e-mail address removed)
 
Veerasivakumar,

I don't think I could understand your post but you have already gotten the advice - please add the proper display driver and set the
default display settings in TD. Also make sure the driver's working properly at runtime before you are trying to change windows
display properties.

=========
Regards,
KM
 
Veerasivakumar said:
Dear friends,
Thanks for ur reply. I didn't include the display driver in my
configuration. After the booting this image, the system properties show the
"Default Monitor on" in the Display settings instead of Display driver name.
So, i want to know which component supports this settings in XPe
configuration. Kindly advice me.
You are, as I thought, asking how to use functions of a display driver,
without including one. You need to add the correct display driver for
your card, just as you would have to in XPPro.
 
Dear friends,
I have included Display driver as your advice and it is working
properly. No problem in my display driver. But my questions is, how Windows
XPE has Default Monitor function and which component is suite for this?.
--
V.Veerasivakumar
InLott Technologies Pvt Ltd,
Chennai,
India.

E-Mail: (e-mail address removed)
 
Well, well, copy paste the following script
name it 'resolution.bat' and after FBA
evoke it with
resolution.bat 800 600 75

paye atention to line wrap of my mail sender

the script will set the resolution to arg1, arg2, and refresh rate
to arg3

if the video driver is included, the script will set the proper
resolution to the actual video driver, it the video driver is
NOT included, the script will set the resolution to the default
video driver (vgasave if you prefer)

caveat: the color depth may be 8 bit only when no video driver
included.

tips, you can evoke it in the phase 8498, then it will configure
the vgasave (default video), if you evoke it after FBA and video
driver installed, then it will configure actual video driver.

Que demander de plus ?

HTH

Zirong

----------------------------------8<---------------------------------------------
: set screen resolution to $1x$2

setlocal

if /I "%3" == "" (
set VRR=75
) else (
set VRR=%3
)

set RegKey=HKLM\HARDWARE\DEVICEMAP\VIDEO
set HKCCKey=HKCC\System\CurrentControlSet
for /F "tokens=7* delims=\" %%A in ('reg query "%RegKey%" ^| findstr /I
"video0"') do (
reg add "%HKCCKey%\%%B" /v DefaultSettings.XResolution /t REG_DWORD
/d %1 /f >nul
reg add "%HKCCKey%\%%B" /v DefaultSettings.YResolution /t REG_DWORD
/d %2 /f >nul
reg add "%HKCCKey%\%%B" /v DefaultSettings.VRefresh /t REG_DWORD /d
%VRR% /f >nul
reg add "%HKCCKey%\%%B\Mon80861100" /v DefaultSettings.XResolution /t
REG_DWORD /d %1 /f >NUL
reg add "%HKCCKey%\%%B\Mon80861100" /v DefaultSettings.YResolution /t
REG_DWORD /d %2 /f >NUL
reg add "%HKCCKey%\%%B\Mon80861100" /v DefaultSettings.VRefresh /t
REG_DWORD /d %VRR% /f >NUL
)

:END
endlocal
----------------------------------8<---------------------------------------------
 
Back
Top