<tt><font size=2>> What about .exe? Does anyone have experience with
installing .exe from a<br>
> remote server? what is the "install cmd" to install a .exe
from a remote<br>
> server?<br>
> <br>
</font></tt>
<br><tt><font size=2>I'm doing this for quite some time - I'm using a local
installed version of curl to fetch the exe to a known location and run
it from there. You can't run an executable from a http-location like you
can from a SMB-Share.</font></tt>
<br>
<br><tt><font size=2>A</font></tt>
<br>
<br>
<br><tt><font size=2>see for example this snippet:</font></tt>
<br>
<br><tt><font size=2>        <variable name="URL"
value="</font></tt><a href=http://xxx/editor/notepadpp/npp.%version%.Installer.exe><tt><font size=2>http://xxx/editor/notepadpp/npp.%version%.Installer.exe</font></tt></a><tt><font size=2>"
/></font></tt>
<br><tt><font size=2>        <variable name="target"
value="%TEMP%\npp-install.exe" /></font></tt>
<br>
<br><tt><font size=2>        <install cmd='"%TOOLDIR%\curl.exe"
-f -s -o "%target%" "%url%"'/></font></tt>
<br><tt><font size=2>        <install cmd='TASKKILL
/F /IM "notepad++.exe"'></font></tt>
<br><tt><font size=2>           
    <exit code='128'/></font></tt>
<br><tt><font size=2>        </install></font></tt>
<br><tt><font size=2>        <install cmd='"%target%"
/S' /></font></tt>
<br><tt><font size=2>        </font></tt>
<br><tt><font size=2>        <install cmd='"%COMSPEC%"
/C del "%target%"'/></font></tt>
<br>
<br>
<br>
<br><tt><font size=2>also I think recent wpkg releases include an external
download script that you could use which includes checksumming the download.</font></tt>
<br>
<br><tt><font size=2>and there's the <download> tag but it's buggy
(no fault of WPKG - it's an awkward workaround around WSH deficiencies)</font></tt>