/display-resolution

set display resolution from powershell on windows using win32 api

Primary LanguageC#MIT LicenseMIT

Change Display Settings

Changes display settings in Windows from Powershell or .Net tool.

Usage

Powershell

Install

Import-Module set-display-resolution.psm1

Usage:

Set-DisplayResolution(1024,768,CDSFlags.SetPrimary);

write-host Get-DisplayResolution()

.Net Tool

Install:

dotnet tool install --global ChangeDisplaySettings

Usage:

ChangeDisplaySettings -w 1024 -h 768

...

ChangeDisplaySettings --help

...

  -w, --width     Required. Width of the screen

  -h, --height    Required. Height of the screen

  -t, --test      (Default: false) Test resolution change or actually perform the change.

  --help          Display this help screen.

  --version       Display version information.

Resources