I'm just reverting my 100+ users to the previous version of the OCX. They still have to reboot after unregistering. Here's my command script in case anyone is interested.
[code]
@echo off
echo.
echo Reverting to original MSCOMCTL.OCX file (thank you Bill Gates!). Please wait...
if exist %systemroot%\sysWOW64\mscomctl.ocx goto x64
if exist c:\temp\unreg.txt goto reg
%systemroot%\system32\regsvr32 /u %systemroot%\system32\mscomctl.ocx /s
if errorlevel 1 goto err
echo Unregistered! >c:\temp\unreg.txt
goto restart
:reg
ren %systemroot%\system32\mscomctl.ocx mscomctl.ocx.bad
if errorlevel 1 goto err
xcopy c:\temp\mscomctl.ocx %systemroot%\system32
if errorlevel 1 goto err
%systemroot%\system32\regsvr32 %systemroot%\system32\mscomctl.ocx /s
if errorlevel 1 goto err
goto Done
:x64
if exist c:\temp\unreg.txt goto reg64
%systemroot%\sysWOW64\regsvr32 /u %systemroot%\sysWOW64\mscomctl.ocx /s
if errorlevel 1 goto err
echo Unregistered! >c:\temp\unreg.txt
goto restart
:reg64
ren %systemroot%\sysWOW64\mscomctl.ocx mscomctl.ocx.bad
if errorlevel 1 goto err
xcopy c:\temp\mscomctl.ocx %systemroot%\sysWOW64
if errorlevel 1 goto err
%systemroot%\sysWOW64\regsvr32 %systemroot%\sysWOW64\mscomctl.ocx /s
if errorlevel 1 goto err
goto Done
:restart
echo.
echo Restart your system and re-run this script.
goto quit
:err
echo.
echo Error running script! Please contact support!
goto quit
:Done
echo.
echo Done! Please restart your system. The app should function normally now.
:quit
echo.
pause
exit
[/code]