4 SET MOZILLA_FOLDER="%ProgramFiles%\Mozilla Firefox\Plugins"
6 ECHO This script will install the Native Client NPAPI browser plugin in %MOZILLA_FOLDER%
7 SET /P M=Press y to continue, n to terminate:
8 IF %M%==y GOTO :INSTALL
15 COPY sel_ldr.exe %MOZILLA_FOLDER%
16 IF %ERRORLEVEL% NEQ 0 GOTO :ERROR
18 COPY sdl.dll %MOZILLA_FOLDER%
19 IF %ERRORLEVEL% NEQ 0 GOTO :ERROR
21 COPY npGoogleNaClPlugin.dll %MOZILLA_FOLDER%
22 IF %ERRORLEVEL% NEQ 0 GOTO :ERROR
24 ECHO Installation completed successfully.
28 ECHO Installation failed.