I'm creating an error log file. This is my current code:
Add-Content -path $logpath $((get-date).tostring() + " Error " + $keyPath `
+ $value + " key " + $key +" expected: " + $policyValue `
+ "`n local value is: " +$localValue
When I Get-Content
on the log file, it displays correctly, with the new line before "local value."
However, when I open the log file in Notepad, it displays everything on a single line. How can I cause it to insert a new line into the text file as well?
question from:
https://stackoverflow.com/questions/17434151/writing-new-lines-to-a-text-file-in-powershell 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…