How can I use redirection to prevent messages from printing to the screen when starting RTserver under Windows?

How can I use redirection to prevent messages from printing to the screen when starting RTserver under Windows?

book

Article ID: KB0085957

calendar_today

Updated On:

Products Versions
TIBCO SmartSockets -
Not Applicable -

Description

Resolution:
c:\rtserver > rtserver -no_daemon > NUL

Under Windows, you can redirect the stderr to a file. For instance, you can use the following command:

c:\rtserver &gtlog.txt 2>&1

This will redirect the stderr (code 2) to the file specified by the redirection character (">").
Please refer to Windows Command Reference Manual (command "Redirection") for more information on this topic.

Issue/Introduction

How can I use redirection to prevent messages from printing to the screen when starting RTserver under Windows?