mirror of
https://github.com/reactos/reactos.git
synced 2025-01-06 06:20:13 +00:00
950c86fb4c
Based on https://stackoverflow.com/a/1511273 Also enforce CRLF for all *.xml files in our tree, because they are distributed with ReactOS.
28 lines
548 B
Text
28 lines
548 B
Text
@echo off
|
|
ECHO
|
|
ECHO Installing Programs...
|
|
ECHO
|
|
|
|
REM ECHO
|
|
REM ECHO Installing Abiword
|
|
REM ECHO
|
|
REM START /WAIT abiword.exe
|
|
REM start /WAIT dbgprint.exe SYSREG_CHECKPOINT:ABIWORD_INSTALL_COMPLETE
|
|
|
|
|
|
REM ECHO
|
|
REM ECHO Installing OpenOffice
|
|
REM ECHO
|
|
REM START /WAIT openoffice.msi /Q
|
|
REM start /WAIT dbgprint.exe SYSREG_CHECKPOINT:OPENOFFICE_INSTALL_COMPLETE
|
|
|
|
ECHO
|
|
ECHO Informing Sysreg that we are done
|
|
ECHO
|
|
START C:\ReactOS\bin\dbgprint.exe SYSREG_CHECKPOINT:THIRDBOOT_COMPLETE
|
|
|
|
ECHO
|
|
ECHO Shutting down ReactOS
|
|
ECHO
|
|
START shutdown.exe shutdown
|
|
|