@echo off :: AUTORUN.BAT created 20080206 by wmc, Iterate Pte Ltd :: This program launches two scripts. One is a fix for Flash Player :: security settings, and the other a fix for ActiveX Content to be :: viewed in the Internet Explorer browser. These are required to allow :: easy viewing of Flash and Windows Media content from CD, and will not :: compromise the security of your computer system. :: initialise preset for default web page set default_page=index_cd.htm :: use command line paramater for entry page, otherwise use default page if not "%1" == "" set default_page=%1 :: invoke separate procedure to fix Flash Security settings if /i exist installers\flash_fix.bat start /wait /b installers\flash_fix.bat :: invoke separate procedure to enable ActiveX for IE browser if /i exist installers\ie_fix.bat start /wait /b installers\ie_fix.bat :: launch the default web page start %default_page% :end set default_page= echo.