Author

Rich

Just another IT guy.

Windows Command Line Ping Sweep

January 13, 2017

A brutally basic ping sweep from Windows command to look for hosts on a subnet. for /L %x in (1,1,254) do @ping -n 1 -w 25 192.168.0.%x |…

Raid and IOPs Cheat Sheet – Excel

January 13, 2017

I made this 5 years ago in Excel and it was pretty popular. I think there are some errors in the math formulas that were pointed out for…

Calculator

January 13, 2017

I mean, who hasn’t written a calculator application? Not much explaining to do here…

TheWatcher

January 13, 2017

An excercise in FileSystemWatcher in .NET that was used to create an application to monitor a given folder (and subfolders) for specific file/folder operations such as Creation, Deletion,…

Allscripts ProEHR User Account Unlock

January 13, 2017

A utility I wrote to show locked user accounts in the Allscripts Professional EHR database and allow the user to unlock selected accounts.

Acrobat Key Finder

January 13, 2017

A small tool to I wrote to find the Acrobat installed keys through version 11 of Acrobat.

PDF2TIFF

January 13, 2017

I wrote PDF2TIFF to facilitate monitoring of a specified folder location for new PDF file drops and then converting to TIFF automatically using Ghostscript and storing the TIFF…

Forgotten Scripts

January 13, 2017

Came across a script I wrote some time ago. Sitting there in my user directory was patch.cmd. As I find my scripts, I'm putting them in Git for…

How to Disable Cortana in Windows 10

January 4, 2017

Sorry, Cortana -- not everyone likes you. =) Launch the group policy editor by pressing Windows + R, typing gpedit.msc into the box, and pressing Enter. Navigate to…

Windows Uptime Command

December 19, 2016

I generally use a quick command like net statistics server|more on a Windows machine to quickly grab the uptime.  I decided to put together a small uptime utility…