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…
Finding all VM’s with an ISO mounted using PowerCLI.
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 }}