What's wrong with these PowerShell Commands. its doesn't write the file "test.txt"
PS> $stuff = @("AAA`n", "BBB`n")
PS> [System.IO.File]::WriteAllLines(".\test.txt", $stuff)
PS> dir
# Nothing here....
Is there anything misconfigured on my Computer that could cause this? Do I need to somehow reinstall .net?