Writing to log window or showing progress bar

hi
i'd like to know is it possible to write my own messages to log window
or to display progress bar window
or...
well it could be even cmd window where i'd like to write my messages

let's say there is a few commands to run ("ms-dos" and dopus)
some are @sync some are not
so it wont be just one cmd

any ideas?

(i tried to find it on this foum but with no luck)

If it's an MS-DOS batch-mode button then you can output to the cmd window using the Echo command.

Unortunately it wont work as cmd will be closed as there it should be a mix of msdos commands and opus commands :frowning:

What's the actual thing that's you're running?

what about smth like this

cd "folder"
@sync application stop

Delete "file" QUIET
Delete "folder" QUIET

cd "folder"
@sync application install

Copy "file" TO "file"

cd "folder"
application start
<<<

it cannot be pure batch file as it needs to sync

You could do it with a pure batch file, using "start /WAIT application install" etc. to make the batch wait for those parts.

well... it might be the solution i need
thanx v much

regards