For SDK developers: There is a test build of Enbase 2.7.4 for win32 that allows stdio port redirection and CGI handling. Goto http://www.rebol.net/builds/031/
To make this possible, we've re-enabled these runtime flags for encap created programs:
-w for no-window mode - use for redirection
-c for cgi mode - CGI envr flags, redirection
These even work for the encap app itself as well as your output builds.
Examples
Redirect to a file:
C:>more test.r
REBOL []
print "it works"
C:>enbase test.r
C:>test -w > out.txt
C:>more out.txt
it works