Tuesday 19 November 2019

How to Fix a Humax HDR FOX T2 PVR that will not stay powered on

Issue
When you attempt to power on your Humax the standby orange light goes blue for a moment, and then powers off automatically again.

Cause
The reason for this could be a bad boot sector on the hard disk.

Resolution
To fix this, remove the hard disk cable that connects to the mother board, power the machine on, then whilst it is showing your channel on the display, connect the hard disk cable back onto the motherboard. Then ftp to the machine using humaxftp / 0000 as the default username and password, and change directory (cd) to "my videos" and then list the contents of the directory using a dir command. After doing this you should be able to put the machine back into standby, and wait until you hear the hard disk spin down and stop, and then switch off at the wall and the back on again.





Note: There also appears to be a telnet command line interface to run disk repairs on the Humax but I wasn't able to get this working myself, and in the end did not need to do this.

Tuesday 22 January 2019

How to retrieve a list of programs installed on Windows using PowerShell

Use the following powershell command

Get-ItemProperty HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\* | Select-Object DisplayName, DisplayVersion, Publisher, InstallDate | Sort-object -Property DisplayName | Format-Table –AutoSize | Out-File \temp\myinstalls.txt

How to find the last interactive logons in Windows using PowerShell

Use the following powershell script to find the last users to login to a box since a given date, in this case the 21st April 2022 at 12pm un...