I needed away for some clients to easily check their Windows Server Backup log. So I wrote a quick C#...
Read more
Delete a folder with files that have long names in Windows
This is more of a trick. Back in the day we had to use subst on the path to make...
Read more
Use Powershell to quickly search Windows Event Logs
Get-WinEvent -FilterHashtable @{logname=’system’; } | where-object { $_.Message -like ‘*DHCP*’ } This is way faster than scrolling and filtering windows...
Read more
Windows WiFi Profile Export
I needed a quick way to import and export wireless profiles from computers. Too many customers can’t remember their passwords...
Read more
Add New Storage Driver after moving hard drive or new motherboard install
Get the drives and burn to a cd using a working system Boot broken system to Windows disk Pick your...
Read more
Bitlocker
Encrype a drive and get a recovery key manage-bde -on j: -RecoveryPassword Encrypt a drive providing your own recovery password...
Read more
Remotely Reboot Polycom Phone
I have had some issues with systems like RingCentral and Vonage where I have no ability to mass reboot the...
Read more
Use vbscript and Telnet to Reboot SGE2000P Switch
This can possible work on other switches to with some modifications. Since this switch allows telnet I first used telnet...
Read more
Open Source Code Release
I released some code C# Remote Support Application, client and server PIC18 C18 Library with lots of hardware functions to...
Read more
Android Emulator and Wireshark
First connect to the emulator via telnet telnet localhost 5554 Start capturing and provide a path to the file network...
Read more