Terminal Output - Unicode UTF8 - How to change the character set
The terminal output in a log file is in Unicode UTF8 format and for further log processing Ansible is not able to read the format. What setting at IRIS terminal side to be changed to modify the format into normal plain text.
Comments
See "Customizing the Terminal Application":
How can set the characterset to windows at the prompt rather than go to edit menu and select. the chage should effect till the terminal window is open. Once terminal window closed the default UTF8 should come back.
The terminal output in a log file is in Unicode UTF8 format and for further log processing Ansible is not able to read the format.What error does Ansible give you?
I'm not familiar with Ansible, but it seems to me that it shouldn't have any problems reading UTF-8: https://github.com/NixOS/nixpkgs/issues/223151#issuecomment-1484053350
Thaks and i will try and revert.
get-content -path "C:\abc.log" | out-file "C:\abc-ansi.txt" -encoding ascii ---- solved the issue.