Connected and disabled the Windows firewall and ran "regsvr32 scrrun.dll" from the c:\Windows\Syswow64 folder from an administrative command prompt to register the 32 bit dll.


To automate, create a batch file with the following:

________________________


@echo off
c:
cd \Windows\Syswow64
regsvr32 /s scrrun.dll
exit

________________________