There is a bug with the program going pro when a users date and time on the system has words in it, that is fixed.
Added the service to the repair windows updates, Wu.upgrade.ps.dll is already in the repair.
Updated the repair mdac with the two new files as well

Good call on adding the deleting of the thumbs.db
I actually have a bat file I use on my own system that will work with unicode paths as well, I will add this to the repair and have it set to do all fixed drives on the system.
@echo off
chcp 65001
@echo Looking for Thumbs.db files...
set "_dest=C:\"
cd /d %_dest%
for /f "delims=" %%i in ('dir /l /s /b /a:-d thumbs.db') do (
if /i "%%~nxi"=="thumbs.db" (
@echo "Removed - %%i"
ATTRIB -A -R -S -H "%%i"
del /f /q "%%i"
)
)
Shane