Set-DisplayResolution

Set-DisplayResolution

Changes the display resolution for a Server Core server.

Sintaxis

Parameter Set: Default
Set-DisplayResolution [-Width] <Object> [-Height] <Object> [-Force] [ <CommonParameters>]

Descripción detallada

The Set-DisplayResolution cmdlet changes the display resolution for Windows Server® 2012 in Server Core mode. Specify both the width and the height in pixels. Unless you use the Force parameter, the cmdlet prompts you before it changes the settings. You can use the Get-DisplayResolution cmdlet to view the current resolution.

For more information about Server Core mode, see Configure and Manage Server Core Installations (https://technet.microsoft.com/en-us/library/jj574091).

Parámetros

-Force

Performs the action without a confirmation message.

Alias

ninguno

¿Requerido?

false

¿Posición?

named

Valor predeterminado

ninguno

¿Aceptar canalización?

false

¿Aceptar caracteres comodín?

false

-Height<Object>

Specifies a height, in pixels, for the display.

Alias

ninguno

¿Requerido?

true

¿Posición?

2

Valor predeterminado

ninguno

¿Aceptar canalización?

True (ByPropertyName)

¿Aceptar caracteres comodín?

false

-Width<Object>

Specifies a width, in pixels, for the display.

Alias

ninguno

¿Requerido?

true

¿Posición?

1

Valor predeterminado

ninguno

¿Aceptar canalización?

false

¿Aceptar caracteres comodín?

false

<CommonParameters>

Este cmdlet admite los siguientes parámetros comunes: -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer y -OutVariable. Para obtener más información, consulte about_CommonParameters (https://go.microsoft.com/fwlink/p/?LinkID=113216).

Entradas

El tipo de entrada es el tipo de los objetos que se pueden canalizar al cmdlet.

Salidas

El tipo de resultado es el tipo de objetos que emite el cmdlet.

Ejemplos

Example 1: Set resolution

This command sets the display resolution to a width of 1920 pixels and a height of 1200 pixels. The system prompts you for confirmation.

PS C:\> Set-DisplayResolution -Width 1920 -Height 1200

Example 2: Set resolution without confirmation

This command sets the display resolution to a width of 1024 pixels and a height of 768 pixels. The command includes the Force parameter. It attempts to make the change without prompting you.

PS C:\> Set-DisplayResolution -Width 1024 -Height 768 -Force

Temas relacionados

Get-DisplayResolution