Author

Rich

Just another IT guy.

Get RDS-CAL License Details (2008 RDS License Server)

August 20, 2018

Get current RDS-CAL details via PowerShell. Run this from your 2008 RDS Licensing server. # Filename of the export $filename = RDS-CAL-Report.csv # Import RDS PowerShell Module import-module…

Intel Xeon E7540 replaced with X7560

August 12, 2018

Recently I've been dealing with CPU RDY of about 5% across two ESXi hosts. I've load balanced the best I could given necessary workloads and was able to…

Allscripts Vision User Reporting

August 2, 2018

A quick Powershell script I hacked together that will enumerate all Active Directory users, and build an XML file for an application I wrote that generates user reports…

Disable Windows 10 First Sign-in Animation

June 25, 2018

To disable the Windows 10 first sign-in animation screen, use one of the two following methods. Through Group Policy or the Registry. Group Policy Run the Local Group Policy Editor (Start…

Increase LVM Partition in Linux

June 20, 2018

Some notes on increasing LVM partition in Linux. Terminology Physical Volume (PV): This can be created on a whole physical disk (think /dev/sda) or a Linux partition. Volume Group…

Change Allscripts ProEHR HMScan Path

January 18, 2018

Follow the steps below against correct EHR database in SQL Management Studio if you want to change the pointers yourself. select * from HPSITE.SCAN_DOCUMENTPAGEUpdate the Document Page from…

Cleanup Windows User Temporary Files

October 30, 2017

This script will cleanup all users temporary files in their AppData\Local\Temp for Windows 7 and newer. # Define the base directory for user profiles$usersPath = "C:\Users"$totalBeforeCleanup = 0$totalAfterCleanup…

PortQry

October 25, 2017

Microsoft! You have some tools that I’ve not seen before. PortQry.exe -n x.x.x.x -p tcp -r 1:1024

Windows Shutdown Event Logs

June 21, 2017

A custom filter can be created to show Windows shutdown events which can be used to help troubleshoot or isolate an incident when a system was rebooted or…