Can Private Browsing Protect You Online?

Can Private Browsing Protect You Online? Maintaining your privacy while using the internet has become more challenging over the years. The recent Facebook privacy scandal made that abundantly clear, with users shocked at how much information had been recorded about them. While it’s almost impossible to enjoy the internet and leave zero digital footprints, there…

5 Tech Travel Tips You Can Use

5 Tech Travel Tips You Can Use Travelling soon? For most people, this also means making sure your tech is packed and ready for the adventure. Smartphones, ebook readers, tablets, laptops and smart watches are now so light and portable that you’d never think of leaving them behind, plus they can add a ton of…

Get TeamViewer ID – All Versions

I had some messages about getting the latest TeamViewer ID’s, so here is an updated Powershell script that should return all versions. $TeamViewerVersions = @(‘6′,’7′,’8′,’9′,”) If([IntPtr]::Size -eq 4) { $RegPath=’HKLM:\SOFTWARE\TeamViewer’ } else { $RegPath=’HKLM:\SOFTWARE\Wow6432Node\TeamViewer’ } $ErrorActionPreference= ‘silentlycontinue’ foreach ($TeamViewerVersion in $TeamViewerVersions) { If ((Get-Item -Path $RegPath$TeamViewerVersion).GetValue(‘ClientID’) -ne $null) { $TeamViewerID=(Get-Item -Path $RegPath$TeamViewerVersion).GetValue(‘ClientID’) } } Write-Host…

Generate a LetsEncrypt SSL Certificate for Unifi Controller

Here is a quick how to on generating an SSL Certificate for your Unifi Controller on Ubuntu. Install git if you haven’t already. yum install git -y Clone the LetsEncrypt bot. sudo git clone https://github.com/letsencrypt/letsencrypt /opt/letsencrypt cd /opt/letsencrypt Generate the certificate. – Replace <FQDN> with your fully qualified domain, i.e unifi.mydomain.com sudo -H ./letsencrypt-auto certonly –standalone…

Script: Fix Windows 7 Slow Patches

Here is a quick script to fix the Windows 7 Slow update issue from a fresh install. Updates came from various sources, some people said use this update, and use that update. So I just included them all. #Installs Patches #————— # kb3020369 # kb3172605 # kb3125574 # kb3197868 # kb3078601 # kb3109094 # kb3138612…