I'm trying to set up a PowerShell profile so all of my machines have a common profile. I'm making each machine's profile run a script in my dropbox so I can update all of them easier.
I thought the problem was I didn't know dot-source syntax well, but it turns out PowerShell really doesn't like that the path to my documents folder has an apostrophe. The full path is:
d:\Owen's Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1
If I delete that file, PowerShell starts up fine (of course, without the modifications I want.) If I create that file, I get an error when PowerShell starts up:
The string starting:
At line:1 char:75
+ . 'D:\Owen`'s Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1 <<<< '
is missing the terminator: '.
At line:1 char:76
+ . 'D:\Owen`'s Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1' <<<<
+ CategoryInfo : ParserError: (:String) [], ParentContainsErrorRecordException
+ FullyQualifiedErrorId : TerminatorExpectedAtEndOfString
It can't be my fault, because the script itself is empty. Deleting the empty file makes it go away, creating the new file makes the error come back. Surely Microsoft anticipated profile paths with apostrophes?
Update Crud. Looks like an old issue. Maybe there's not a workaround. :(
Update 2 I had a conversation with @Lee_Holmes on Twitter about this. Apparently it's been fixed in some super-awesome internal Microsoft version, but there's no hotfix available and no time table for fixes since PSH is now a Windows Component. That makes Roman Kuzmin's answer below the most appropriate answer (use one of the global profiles), or perhaps "rename your My Documents folder" which hasn't been mentioned yet.