Sometimes you need to change resolution for the Windows Server core edition. In Windows 2008 times the only way to go was to use registry tweaks.
Nowadays however you can use two Powershell 3.0 commands
As an example:
Why you may need to change resolution on server core, which you manage remotely or at least via Remote Desktop? For example for testlab purposes :)
Nowadays however you can use two Powershell 3.0 commands
get-DisplayResolution
set-DisplayResolution
As an example:
Set-DisplayResolution -width 1152 -height 864 -force
Why you may need to change resolution on server core, which you manage remotely or at least via Remote Desktop? For example for testlab purposes :)