Sets display resolution info on Windows
$ dotnet add package ChangeDisplaySettingsChanges display settings in Windows from Powershell or .Net tool.
Install
Import-Module set-display-resolution.psm1
Usage:
Set-DisplayResolution(1024,768,CDSFlags.SetPrimary);
write-host Get-DisplayResolution()
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.