Hello,
maybe i missed someting but i can not findout the reason for the following behavior.
When i write to the output from a Powershell, the output get cut after 2.04kb. Is this a limit from Visual Cron, or from Powershell? Is there a way to avoid that limit?
Here some example Code with i tested the behavior. The output get cut after line 36, but the script runs without any issus.
for($x=0; $x -le 1000; $x++) {
write-output ("$x abcdefghijklmnopqrstuvwxyz 1234567890 !§$%&/()=? END")
}
Thank you for your Help.