Lugh

List all installed programs with PowerShell

List installed programs with PowerShell To list the programs installed on your machine, open PowerShell, copy / paste the following command and press Enter. You will see the list of all the installed programs on your computer or server. Get-ItemProperty HKLM:SoftwareWow6432NodeMicrosoftWindowsCurrentVersionUninstall* | Select-Object DisplayName, DisplayVersion, Publisher, InstallDate | Format-Table –AutoSize To export the list to …

List all installed programs with PowerShell Read More »

Set wordpress under maintenance mode

How to set a wordpress site under maintenance mode In order to customize your wordpress site without your users facing broken links or other issues, it is possible to set a maintenance mode. To perform this, add the following code to your site. // Activate WordPress Maintenance Modefunction wp_maintenance_mode() {if (!current_user_can(‘edit_themes’) || !is_user_logged_in()) {wp_die(‘Under MaintenanceWebsite …

Set wordpress under maintenance mode Read More »

Configuring and securing a cisco router

Configuring and securing a Cisco router The following tutorial was made using Cisco Packet Tracer. Cisco Packet Tracer is a free networking simulation tool downloadable from the following link after creating an account. https://www.netacad.com/courses/packet-tracer Considering the following topology, composed of a computer PC0 and two routers R1 and R2. We need to start by configuring …

Configuring and securing a cisco router Read More »

Installation and Configuration of Recalbox

Installation and configuration of Recalbox Recalbox is a libre software, free and open source retrogaming emulation distribution developped to be used with a Raspberry Pi or nano-computers. It allows to install and play games from NES, Super NES, PS1, Gamecube, MasterSystem and many other consoles. Prerequisites: Raspberry Pi SD card Download Etcher to install Recalbox …

Installation and Configuration of Recalbox Read More »