Como posso alterar a resolução da tela no prompt de comando do Windows 10?

1

Eu preciso alterar a resolução da minha tela a partir do prompt de comando, eu tentei QRes e NirCmd e ambos não foram capazes de alterar a resolução da tela (eu já verifiquei a sintaxe). Existe alguma maneira de o fazer?

    
por Mad 17.02.2017 / 18:57

2 respostas

0

Eu tenho o NirCmd e não consegui alterar a resolução da tela

Actually nircmd from nirsoft can change the screen resolution:

setdisplay {monitor:index/name} [width] [height] [color bits] {refresh rate} {-updatereg} {-allusers}

Changes your display settings.

  • The [width] and [height] parameters represents the number of pixels on your screen.

  • The [color bits] parameter represents the number of colors shown on your screen (8 - 256 color, 16 - 16bit color, 24 - 24bit color, and so on).

  • {refresh rate} is an optional parameter that specifies the monitor refresh rate.

  • If you specify the {-updatereg} parameter, the new settings will be saved in the Registry.

  • If you specify both {-updatereg} and {-allusers} parameters, the new settings will be saved in the Registry for all users.

  • If you have multiple monitors, you can use the optional monitor parameter, which specifies for which monitor you want to change the display settings.

    You can specify the monitor by index (0 for the first monitor, 1 for the second one, and so on) or by specifying a string in the system monitor name.

    The monitor name can be found in the Device manager of Windows: Right click on the monitor item, and then choose 'Properties'. The string displayed in the 'location' field is the monitor name.

Examples:

setdisplay 800 600 24 -updatereg
setdisplay 1024 768 24 90
setdisplay 1024 768 8
setdisplay monitor:1 1024 768 24 90
setdisplay monitor:name1 1024 768 24 90

Source Referência de Comando NirCmd - setdisplay

Aviso de isenção

Eu não sou afiliado com nirsoft de qualquer forma, eu sou apenas um usuário final de seu software.

    
por 17.02.2017 / 23:53
0

Você pode experimentar a ferramenta gratuita que desenvolvi: link

Basta ligar assim:

ChangeScreenResolution.exe /w=800 /h=600

    
por 31.07.2017 / 07:53