windows:scripting:ps_new_line

Action disabled: index

New line in PowerShell string

Append “`n” to the end of the string. Or use the following function

|AppendNewLine
function AppendNewLine {
    $tmpData += $args[0] + $args[1]
    $tmpData += "`n"
    return $tmpData
}
$string += AppendNewLine "Parameter" "Value"
$string += AppendNewLine "Parameter1" "Value1"
Enter your comment:
117 -4 = 
 
  • windows/scripting/ps_new_line.txt
  • Last modified: 2019/10/31 09:06
  • by 127.0.0.1