@Echo off CLS Regedit /e "C:\Flash.txt" "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\ActiveX Compatibility\{D27CDB6E-AE6D-11CF-96B8-444553540000}" Type C:\Flash.txt |find "dword:00000400" /i >nul IF NOT ErrorLevel 1 Echo Flash Animation is currently Disabled IF ErrorLevel 1 Echo Flash Animation is currently Enabled GOTO START :RETRY CLS Echo 1, 2, or 3 was not entered. Try again. Echo. :START Echo. echo ÉÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ» echo º CHOOSE ONE OF THE FOLLOWING: º echo º º echo º 1 Turn Flash Animation OFF º echo º 2 Turn Flash Animation ON º echo º 3 Quit º echo ÈÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍͼ echo. echo. set /p choose=Type 1, 2, or 3 and hit the Enter Key. if /i [%choose%]==[1] GOTO Disable if /i [%choose%]==[2] GOTO Enable if /i [%choose%]==[3] GOTO QUIT endlocal CLS GOTO RETRY :Disable Echo REGEDIT4 >C:\Flash.txt Echo. >>C:\Flash.txt Echo [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\ActiveX Compatibility\{D27CDB6E-AE6D-11CF-96B8-444553540000}] >>C:\Flash.txt Echo "Compatibility Flags"=dword:00000400 >>C:\Flash.txt Echo. >>C:\Flash.txt regedit /s C:\Flash.txt CLS Echo Flash Animation has been Disabled @ping -n 3 127.0.0.1>nul GOTO QUIT :Enable Echo REGEDIT4 >C:\Flash.txt Echo. >>C:\Flash.txt Echo [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\ActiveX Compatibility\{D27CDB6E-AE6D-11CF-96B8-444553540000}] >>C:\Flash.txt Echo "Compatibility Flags"=dword:00000100 >>C:\Flash.txt Echo. >>C:\Flash.txt regedit /s C:\Flash.txt CLS Echo Flash Animation has been Enabled @ping -n 3 127.0.0.1>nul GOTO QUIT :QUIT Echo. Echo. Echo Exiting Batch File @ping -n 3 127.0.0.1>nul IF EXIST C:\Flash.txt DEL C:\Flash.txt