Monthly Archive:: January 2017
22 Jan 2017
Remove Bitnami Banner from AWS WordPress Template
I’ve recently moved over to hosting and am now using AWS. As I’m lazy I decided to use the Bitnami Pre-configured Template, however it comes with an annoying banner in the bottom right corner, to remove it, simply access the server via SSH and enter following command sudo /opt/bitnami/apps/wordpress/bnconfig –disable_banner 1 The you’ll need to
19 Jan 2017
Finding all VM’s with an ISO mounted.
If you ever need to find which of your VM’s have an ISO mounted here’s a quick PowerCLI command you can run. Get-VM | FT Name, @{Label=”ISO file”; Expression = { ($_ | Get-CDDrive).ISOPath }}