>
>    <install cmd="cmd /C copy /y 
> "\\xx.xx.xx.xx\WPKG\apps\antivirus\ClamWin.conf" 
> "%PROGRAMFILES%\ClamWin\bin\ClamWin.conf""/>
>

The above line includes double double-quotes, which is violating the XML syntax.

You need to replace the outermost quotes with single-quotes, see blow.

In addition use %ComSpec% instead of CMD, since this will expand to CMD.exe or 
Command.com, depending on the windows version.

Corrected line (you need to change all lines containing the problem):

<install cmd='%ComSpec% /C copy /y 
"\\xx.xx.xx.xx\WPKG\apps\antivirus\ClamWin.conf" 
"%PROGRAMFILES%\ClamWin\bin\ClamWin.conf"'/>

---
Stefan
-------------------------------------------------------------------------
wpkg-users mailing list archives >> http://lists.wpkg.org/pipermail/wpkg-users/
_______________________________________________
wpkg-users mailing list
wpkg-users@lists.wpkg.org
http://lists.wpkg.org/mailman/listinfo/wpkg-users

Reply via email to