<tt><font size=2><br>
>       <install cmd='%COMSPEC% /C icacls C:\Users
/t /c /remove:d <br>
> Admin /grant Admin:r >NUL'/><br>
</font></tt>
<br><tt><font size=2>I've seen a naked >NUL fail quite often and did
a bit of trial and error and hat lots of pain with redirection. So I'll
recommend you to try the /Q Parameter and suppress most output.</font></tt>
<br>
<br><tt><font size=2>If that doesn't help, try forcing the redirection
to be interpreted by the called cmd (with quotes) and try to redirect stderr
as well:</font></tt>
<br>
<br><tt><font size=2>"%COMSPEC% /C "icacls C:\Users /t /c /remove:d
Admin /grant Admin:r >NUL 2>&1"</font></tt>
<br>
<br><tt><font size=2>Redirection is a nightmare in CMD and wpkg complicates
things a little. For example this is the combination you need for 7z to
unpack without stalling:</font></tt>
<br><tt><font size=2>"%COMSPEC%" /c ""%TOOLDIR%\7za.exe"
x -o"%targetdir%" "%target%" >nul"</font></tt>
<br>
<br><tt><font size=2>Best Regards</font></tt>
<br><tt><font size=2> Heiko</font></tt>