Author

Rich

Just another IT guy.

MAC Address Lookup

July 22, 2014

Spent a little time at lunch today creating a MAC lookup tool for my site. There is now a new menu, Tools, which will have some of the…

Extract KB Number from WSUS Excel Report

July 22, 2014

While reviewing my WSUS reports (exported to Excel) I found that I could streamline extracting the KB article from the exported report using a basic formula in Excel.Here's…

Crypto Ransomware CTB-Locker (Critroni.A)

July 22, 2014

Move over CryptoLocker, there's a newer and meaner kid on the block. CTB-Locker, or Curve-Tor-Bitcoin Locker, makes use of the Tor ((Tor is free software and an open…

Ingress is on iPhone

July 18, 2014

I’m in Resistance. I first played this when I had my invite and was using my Samsung Galaxy S2. I never really got into it, but maybe I’ll…

Total Editing Time in Microsoft Word

July 18, 2014

So I stumbled upon a feature (that's been around for a long time) for myself today when looking at the properties of a Word document.  I saw this…

Windows Update Error 800B0001

July 17, 2014

I got the following error attempting to check for updates against my WSUS server from a Windows 7 system. Looking closer at the WindowsUpdate.log file (C:windowsWindowsUpdate.log), I see…

Cannot open database “SUSDB” requested by the login.

July 14, 2014

I'm receiving this error message on my WSUS 3.0 SP2 server. The proposed fix ((http://social.technet.microsoft.com/Forums/windowsserver/en-US/e918a191-ef6d-4c4b-b83a-7a4ae20a5217/wsus-30-sp2-will-not-run-after-installing-update-2720211?forum=winserverwsus)) indicates to perform the following. Download the KB2720211 from Microsoft: http://support.microsoft.com/kb/2720211Open Regedit, and change…

Printer jam? I can fix that.

July 11, 2014

Having my first sip of coffee and walking to the office printer to fix a jam and thinking of how badly I’d like to remake the Printer Scene…

WSUS3 SP2 Service Problem

July 11, 2014

I was checking a few systems this morning and came across this glorious error.Easy enough to fix, right?  Just go to Administrative Tools > Services and restart the…

Get Last Windows Update Installation Date

July 11, 2014

This command will give you the last date and time Windows updates were installed on a computer. reg query HKLM\Software\Microsoft\windows\currentversion\windowsupdate\auto update\results\install /v LastSuccessTime

Calculate Date Differences in MySQL

July 7, 2014

There is a function in MySQL that will calculate the number of days between two given dates:  datediff Example mysql> select datediff('2014-06-09','2014-07-07'); +----------------------------------------------+ | datediff('2014-06-09','2014-07-07') | +----------------------------------------------+ |…