@echo off rem Andrew Chance June 2005 cls echo Secure Site Re-Register DLL's echo TalkTalk Support 2nd Line echo TalkTalk 2006 :start ECHO. ECHO 1. Re-register DLL's ECHO 2. Quit set choice= set /p choice=Enter your choice (1 or 2) then press enter. if not '%choice%'=='' set choice=%choice:~0,1% if '%choice%'=='1' goto ONE if '%choice%'=='2' goto TWO ECHO "%choice%" is not valid please try again ECHO. goto start :ONE echo Please ensure all Internet Explorer windows are closed then press any key. PAUSE echo Registering softpub.dll regsvr32 softpub.dll echo Registering wintrust.dll regsvr32 wintrust.dll echo Registering initpki.dll (This may take a couple of minutes) regsvr32 initpki.dll echo Registering dssenh.dll regsvr32 dssenh.dll echo Registering rsaenh.dll regsvr32 rsaenh.dll echo Registering gpkcsp.dll regsvr32 gpkcsp.dll echo Registering sccbase.dll regsvr32 sccbase.dll echo Registering slbcsp.dll regsvr32 slbcsp.dll echo Registering cryptdlg.dll regsvr32 cryptdlg.dll echo All dll's have been re-registered. echo You will have to restart your computer then try the secure sites again. PAUSE EXIT :TWO echo You have quit this qithout re-registering any DLL's you may need to re-run this file if you are unable to view secure sites. PAUSE EXIT