Freigeben über


Set-DisplayResolution

Set-DisplayResolution

Changes the display resolution for a Server Core server.

Syntax

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

Detaillierte Beschreibung

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).

Parameter

-Force

Performs the action without a confirmation message.

Aliasse

Keiner

Erforderlich?

false

Position?

named

Standardwert

Keiner

Pipelineeingaben akzeptieren?

false

Platzhalterzeichen akzeptieren?

false

-Height<Object>

Specifies a height, in pixels, for the display.

Aliasse

Keiner

Erforderlich?

true

Position?

2

Standardwert

Keiner

Pipelineeingaben akzeptieren?

True (ByPropertyName)

Platzhalterzeichen akzeptieren?

false

-Width<Object>

Specifies a width, in pixels, for the display.

Aliasse

Keiner

Erforderlich?

true

Position?

1

Standardwert

Keiner

Pipelineeingaben akzeptieren?

false

Platzhalterzeichen akzeptieren?

false

<CommonParameters>

Dieses Cmdlet unterstützt die allgemeinen Parameter: -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer, -OutVariable. Weitere Informationen finden Sie unter about_CommonParameters (https://go.microsoft.com/fwlink/p/?LinkID=113216).

Eingaben

Der Eingabetyp ist der Typ der Objekte, die über die Pipeline an das Cmdlet übergeben werden können.

Ausgaben

Der Ausgabetyp ist der Typ der Objekte, die vom Cmdlet ausgegeben werden.

Beispiele

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

Verwandte Themen

Get-DisplayResolution