I expect this little powershell one liner to echo a full path to foo.txt, where the directory is my current directory.
[System.IO.Path]::GetFullPath(".\foo.txt")
But it's not. It prints...
C:\Documents and Settings\Administrator\foo.txt
I am not in the $home directory. Why is it resolving there?