I want to take input in powershell but I want it to be multi-line, if I try to do this with read-host it doesn't work because when I press enter it submits. I tried this with `n as well as \n but nothing works
$test = read-host Enter Stuff
Enter stuff:
Test `n test \n test
$test
Test `n test \n test
Please help