If your packages.xml file really contains only: > packages.xml > > <package > id="thunderbird" > name="Mozilla Thunderbird" > revision="%version%" > reboot="false" > priority="10"> > . > . > . > </package> then it's wrong. See http://wpkg.org/Packages.xml - you need a root <packages> element in your XML, i.e. <?xml version="1.0" encoding="UTF-8"?> <packages> <package id="foo">...</package> <package id="bar">...</package> </packages> Adam |