Windows change display resolution with one click

Created:
Last Update:

Author: Christoph Stoettner
Read in about 2 min · 216 words

Postboxes for newsletter

Photo by Vidar Nordli-Mathisen | Unsplash

I spend the entire day working on a very sizable 4k UHD display, and I frequently ran into the problem of wanting to share my screen with participants in various collaboration tools. Then, viewers claim that my screen is too small on the remote displays due to the display resolution of 3840x2160 pixels.

In order to adjust the resolution, I often go to the desktop and right-click. It is quite frustrating to have to do that several times each day (and switch back after the meeting).

I created some scripts for Linux that may automatically execute when I start with or without an external display and modify the display resolution. Unfortunately, I also need to utilize other operating systems. What choices are available on Windows?

I discovered three PowerShell scripts and EXE files, however two of them required licenses for non-personal usage and one of them was broken. I landed up at http://tools.taubenkorb.at/change-screen-resolution/#download , which is available for free download the author just asks for a donation.

I made two cmd files and transferred the script to my desktop:

4k.cmd

ChangeScreenResolution.exe /w=3840 /h=2160 /d=0

full_hd.cmd

ChangeScreenResolution.exe /w=1920 /h=1080 /d=0

Now, all I have to do to change the display resolution is double-click the script.

It only takes some seconds each time, but the experience is fantastic.

Author
Add a comment
Error
There was an error sending your comment, please try again.
Thank you!
Your comment has been submitted and will be published once it has been approved.

Your email address will not be published. Required fields are marked with *

Suggested Reading
Card image cap

During the latest automated deployment of the HCL Connections Desktop Plug-ins for Microsoft™ Windows™ , I had issues activating the Password Save Policy. We wanted to disable the option that users can save passwords.

The documentation tells us, that the registry key HKLM\SOFTWARE\Wow6432Node\IBM\Social Connectors\Settings\Password Save Policy needs to be set to 1 to achieve this.

Created: Read in about 2 min
Aaron Burden: Fountain pen and a notebook

During my talk at FrOSCon I wasn’t sure how to install Asciidoctor on Windows. So I tried on a Windows 10 VM.

When you want to use Asciidoctor on a Windows desktop, you need to download the Rubyinstaller and install it.

Now you can open a administrative command window and install with gem install asciidoctor.

Created:
Last Update:
Read in about 1 min
Aaron Burden: Fountain pen and a notebook

Since some versions of IBM Connections, it is mandatory to delete temp and wstemp of your Connections node after deployment or updates, or you end up with an old layout/design of Connections GUI.

On a Windows Server System this can be a pain, because within temp/wstemp WebSphere Application Server creates a folder structure with nodename / application server name and so on. In must cases the delete ends with the message “path too long”.

Created:
Last Update:
Read in about 2 min