hello,
I'm trying to install an application with a file that copies the basic configurations of the application.
I've done this:
step 1:
create a aplication by msi
step 2:
create the script copy defs
"if not exist "C:\Users\Default\AppData\Roaming\OpenOffice\4\user\registrymodifications.xcu" goto startdefault
goto verica_conf_user:startdefault
xcopy /d /y /e "\\server\REMINST\Source\OSD\Aplications\LibreOffice\4.2.4\Confs\Users\*.*" "c:\Users\"
:verica_conf_user
if not exist "%appdata%\LibreOffice\4\user\registrymodifications.xcu" goto startuser
exit
:startuser
xcopy /d /y "\\server\REMINST\Source\OSD\Aplications\LibreOffice\4.2.4\Confs\registrymodifications.xcu" "%appdata%\LibreOffice\4\user\"
"
step 3:
in aplication properties on the "deployment types" tab add the following:
step 4:
step 5
after deploy the aplication i get the error 0x87D00324(-2016410844)
can you please help'me?