How to change resolution WinPE 4.0

Asked By 10 points N/A Posted on -
qa-featured

Hi All,

I am using Windows 8 and need to know about, How to change resolution WinPE 4.0 using the Unattend.xml file, Please help me by providing me the coding which need to be placed in Unattend.xml file.

Emma Marie

SHARE
Answered By 0 points N/A #189495

How to change resolution WinPE 4.0

qa-featured
WinPE 4.0 does not work with 16 bit color . To resolve this issue the color depth needs to be changed to 32 bit in the place as mentioned below from the previous 16 to the compatible value of 32 in Unattend.xml file.
 
<Display>
  <ColorDepth>32</ColorDepth>
  <HorizontalResolution>1024</HorizontalResolution>
  <RefreshRate>60</RefreshRate>
  <VerticalResolution>768</VerticalResolution>
</Display>
 
Now you should not be facing any issues.
 

Related Questions