How to show a pop up notification with a Powershell script.

Showing a pop-up notification from the system tray is very easy with Powershell on Windows 11. To begin, run this command as Administrator to install the BurntToast module. Install-Module -Name BurntToastInstall-Module -Name BurntToast Then you are ready to use this script to show a sample notification. Import-Module BurntToast New-BurntToastNotification -Text "Windows 11 Update", "You are … Read more

How to fix garbled console font in Ubuntu 15.04 Linux.

The console font in Ubuntu 15.04 can be quite garbled when a console application is loaded that requires ncurses characters to draw an interface. There as easy fix for this. Run this command in a virtual terminal or a terminal emulator window. sudo dpkg-reconfigure console-setupsudo dpkg-reconfigure console-setup Now choose UTF-8 from this list. On this … Read more