if I do with powershell that
[string]$text = "this `nis a `ntest"
$text > c:\test.txt
with notepad++ this is the result:
this
is a
test
but if I open it with notepad of windows it doesn't work:
this is a test
why that? how can I fix it?