Windows 2019 Change Product Key Not Working

Published on Author JFLeave a comment
Windows 2019 Activation

After installing Windows 2019 you may not be able to activate it with the default product key. When you click “change product key” in the activation screen nothing happens. Solution: change it from the CMD line. You will get popups each time you run these commands. Open CMD > Shift + Right Click > Run… Continue reading Windows 2019 Change Product Key Not Working

How to fix AWS Lightsail CLIENT_UNAUTHORIZED [769]

Published on Author JF9 Comments
amazon lighstail

There are two main reasons why you might get “Log in failed. If this instance has just started up, try again in a minute or two. CLIENT_UNAUTHORIZED [769]” in Amazon Lightsail browser based SSH login. You will need SSH login from Putty, etc. If you cannot remote in using SSH then you cannot fix this.… Continue reading How to fix AWS Lightsail CLIENT_UNAUTHORIZED [769]

Chrome Remote Desktop Lock Screen

Published on Author JFLeave a comment

Don’t want someone looking at your screen that you are remoted into using Chrome Remote Desktop? Here’s the link to Google’s support page for it. Here are the shortcuts to Mac only. Why not Windows 10? Because you have to set RDP to allow connections from any security level. You should only have it set… Continue reading Chrome Remote Desktop Lock Screen

How to install PHP 5.6 on CentOS 6.10

Published on Author JFLeave a comment

I just did a fresh install of CentOS 6.10 today and needed to install PHP. It had been a while, so I needed a refresher. Note: PHP 5.6 is pretty much End Of Life, so you should be installing PHP 7.2, or higher at this point in time. That said, sometimes you have to support… Continue reading How to install PHP 5.6 on CentOS 6.10

Vagrant status is “running” but VirtualBox shows “Powered Off” Windows 10

Published on Author JFLeave a comment

You’ve installed Vagrant and run vagrant up and then vagrant ssh successfully. You then start VirtualBox Manager and it shows that it is powered off: In order to see the actual status, press SHIFT then right-click on the icon for Virtual Box, then click Run as Administrator You will see that it reports the VM… Continue reading Vagrant status is “running” but VirtualBox shows “Powered Off” Windows 10

How to install OpenVas 9 on Ubuntu 16.04 Xenial

Published on Author JF

This installation covers my experience with installing only OpenVas VERSION 9 on Ubuntu 16.04 Xenial only. There are a variety of resources out there that will help you install previous versions like these: https://launchpad.net/~mrazavi/+archive/ubuntu/openvas https://www.vultr.com/docs/how-to-install-openvas-vulnerability-scanner-on-ubuntu-16-04 https://hackertarget.com/openvas-9-install-ubuntu-1604/ Again, this works for Verion 9 only. Update Ubuntu sudo lsb_release -a sudo apt-get -y update && upgrade sudo reboot (if possible) Add… Continue reading How to install OpenVas 9 on Ubuntu 16.04 Xenial

How to kill tasks by username using Windows command line

Published on Author JFLeave a comment

Open CMD or PowerShell as administrator. taskkill /? Review the options. tasklist To see the running tasks. What I found interesting is that I had a bunch of winword.exe running. If I did: taskill winword.exe It would give me an error and say it couldn’t find winword.exe However, if I did it by filtering by… Continue reading How to kill tasks by username using Windows command line

How to install PHP Manager in IIS 10 or higher

Published on Author JFLeave a comment

PHP Manager is a useful tool for configuring PHP in IIS. It is no longer supported, however, and a Registry trick is required to install it. Overview PHP Manager allows you to configure multiple versions of PHP for multiple VHosts on an IIS server. While it adds some overhead to the configuration, it can be… Continue reading How to install PHP Manager in IIS 10 or higher

Output Microsoft Windows installed features to a file

Published on Author JFLeave a comment

Use PowerShell to output a list of installed features This requires a couple steps. I ran this in Microsoft Windows 2012 R2. YMMV. I was in a rush and didn’t feel like figuring out why you have to do step 1. Create a folder called log and text file called iis.log somewhere. I used C… Continue reading Output Microsoft Windows installed features to a file